Opened 16 years ago

Closed 16 years ago

Last modified 16 years ago

#6275 closed (wontfix)

An "official" place to put applications

Reported by: Marinho Brandão Owned by: nobody
Component: Contrib apps Version: dev
Severity: Keywords: apps, django.contrib
Cc: robillard.etienne@… Triage Stage: Unreviewed
Has patch: no Needs documentation: yes
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Some developers use the project path to put applications in, some others put in a 'apps' folder or something like this.

Would be nice once place to import from applications from, like the following example:

from django.apps import myapp

To turn this possible, I think will be necessary exists a way to 'register' the application with a simple name (or change INSTALLED_APPS to 2-tuples-style).

Change History (9)

comment:1 by Brian Rosner, 16 years ago

Resolution: invalid
Status: newclosed

This is out of scope for Django. You can accomplish this however you like with the use of PYTHONPATH and/or sys.path. Ask on django-users on some of the best practices others are doing to accomplish something similar.

comment:2 by Marinho Brandão, 16 years ago

Resolution: invalid
Status: closedreopened

I disagree.

I know the best practices but I wish this idea be availed better because we can gain cohesion and flexibility. An "application registration" would turn possible an applications repository, turning them more plugable than are today.

comment:3 by Etienne Robillard, 16 years ago

Cc: robillard.etienne@… added
Component: UncategorizedContrib apps
Keywords: apps django.contrib added
Needs documentation: set

I agree with the idea of picking a standard namespace for user-contributed django apps. Having such a scheme
documented more extensively in django could leads to things like marinho mentioned.

comment:4 by James Bennett, 16 years ago

Resolution: invalid
Status: reopenedclosed

This is out of scope for Django; aside from certain minimum necessities like the existence of a models module inside an application, Django does not and will not attempt to dictate where you put your code.

comment:5 by Etienne Robillard, 16 years ago

Resolution: invalid
Status: closedreopened

Sorry but I don't agree. If we want users to distribute third-party applications on top of django, then why not explaining how
to distribute them using setuptools ?

I dont think this has nothing to do with dictature (really).
It's only being nice to users (developers) wanting to adopt a common standard for sharing contributed apps.

Person who say it cannot be done should not interrupt person doing it. --Chinese Proverb

comment:6 by Marinho Brandão, 16 years ago

I agree to Erob and I think a common namespace or something kind of solution would be possible to developer put the applications WHEREVER wants. Today, the developer must put all of apps in once place, or create symlinks (Windows doesn't supports) or include miriads of paths to PYTHONPATH.

comment:7 by Adrian Holovaty, 16 years ago

Resolution: wontfix
Status: reopenedclosed

Hello there,

I don't understand what this is proposing, as it is currently written. For that reason, I'm marking this as "wontfix." If you want to provide a fuller explanation of your idea, please open a new ticket rather than reopening this one.

in reply to:  5 comment:8 by James Bennett, 16 years ago

Replying to erob:

Sorry but I don't agree. If we want users to distribute third-party applications on top of django, then why not explaining how
to distribute them using setuptools ?

Isn't it the job of setuptools to document how to use setuptools?

comment:9 by Marinho Brandão, 16 years ago

Adrian, ok (and I thank for your interest).

I wrote the following task: #6300

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