Opened 16 years ago

Closed 16 years ago

#7035 closed (wontfix)

poposal: namespace for community contributed apps

Reported by: Bülent Owned by: nobody
Component: Contrib apps Version:
Severity: Keywords: Proposal
Cc: b.aldemir@… Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The popularity of django has resulted in a growing number of community driven add-ons:

  • django-registration
  • django-voting, etc..

It would be great, if all community driven add-ons would use a convention to hook into the django namespace:

  • django.addons.registration,
  • django.addons.voting, etc.

to streamline what is django related and where to put these things (in concrete: in the python library), could you please provide a folder with a init.py named eg "addons" where to put all the django related add-on modules? And of course: propagating it in the documentation, as a good practice for add-on writers?

Thank you very much!

Change History (1)

comment:1 by Russell Keith-Magee, 16 years ago

Resolution: wontfix
Status: newclosed

While I appreciate what you're trying to contribute here, the namespace suggestion doesn't really improve reusability in any way. You can already put applications into their own namespace, and forcing developers to use a common namespace (django.addons) only serves to introduce a new point at which name clashes to occur.

There are many issues associated with making applications easily reusable - providing module names and a common install point isn't one of them. There is a whole Google Group (django-hotclub) which is focussing on determining what constitues best practice for reusable app design. As soon as there is consensus on what those best practices are, we'll be happy to include them in official documentation. In the meantime, there are lots of blogs that make suggestions on how to maximize potential for reuse - for starters, have a read of
The B-List.

Note: See TracTickets for help on using tickets.
Back to Top