1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Namespace proposal
==================
:synopsis: Namespace Proposal
Introduction
------------
Please change / write your proposal for splitting django_extensions into
namespaces here.
Proposal of a Namespace
-----------------------
Rough proposal for splitting into functional parts:
* django_extensions.commands (20% that everbody uses / production)
* django_extensions.commands.development (everything development)
* django_extensions.commands.extra (not fitting about category's?)
* django_extensions.db
* django_extensions.templates
* django_extensions.jobs
The db part should be okey where it is right now. Cause it's only used when
somebody explicitly imports::
from django_extensions.db.models import something
|