Author: jtauber
Date: Thu Sep 18 19:18:29 2008
New Revision: 890
Added:
trunk/core_apps/
trunk/local_apps/
- copied from r885, /trunk/pinax/local_apps/
Removed:
trunk/pinax/local_apps/
Modified:
trunk/README
trunk/pinax/manage.py
Log:
moved local_apps up a level and created core_apps in prepartion to move
stuff there; also updated manage.py and README to reflect changes
Modified: trunk/README
==============================================================================
--- trunk/README (original)
+++ trunk/README Thu Sep 18 19:18:29 2008
@@ -19,8 +19,16 @@
DIRECTORY STRUCTURE
-pinax/ contains a django project and local django apps
-external_apps/ contains svn:externals to load all external django apps
+pinax/ contains a django project and templates
+external_apps/ contains external re-usable apps brought in via
svn:externals
+local_apps/ contains re-usable apps that aren't yet externalized
+core_apps/ contains non re-usable apps specific to pinax site
external_libs/ contains external libraries
The photologue app requires PIL which is not included in external_libs
+
+There is some path manipulation in manage.py to get this all to work.
You'll
+need to do something similar in your wsgi or mod_python configuration.
+
+Note that if you already have an external app or external lib on the path,
+you don't need to use the one we provide.
Modified: trunk/pinax/manage.py
==============================================================================
--- trunk/pinax/manage.py (original)
+++ trunk/pinax/manage.py Thu Sep 18 19:18:29 2008
@@ -5,7 +5,8 @@
path = addsitedir(abspath(join(dirname(__file__), '../external_libs')),
set())
if path: sys.path = list(path) + sys.path
sys.path.insert(0, abspath(join(dirname(__file__), '../external_apps')))
-sys.path.insert(0, abspath(join(dirname(__file__), 'local_apps')))
+sys.path.insert(0, abspath(join(dirname(__file__), '../local_apps')))
+sys.path.insert(0, abspath(join(dirname(__file__), '../core_apps')))
from django.core.management import execute_manager
try:
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---