Author: jtauber
Date: Thu Sep 18 19:01:45 2008
New Revision: 887

Added:
    trunk/external_apps/
       - copied from r885, /trunk/apps/
    trunk/external_libs/
       - copied from r885, /trunk/site-packages/
Removed:
    trunk/apps/
    trunk/site-packages/
Modified:
    trunk/README
    trunk/pinax/manage.py

Log:
moved site-packages to external_libs and apps to external_apps

Modified: trunk/README
==============================================================================
--- trunk/README        (original)
+++ trunk/README        Thu Sep 18 19:01:45 2008
@@ -20,7 +20,7 @@
  DIRECTORY STRUCTURE

  pinax/          contains a django project and local django apps
-apps/           contains svn:externals to load all external django apps
-site-packages/  contains external libraries
+external_apps/  contains svn:externals to load all external django apps
+external_libs/  contains external libraries

-The photologue app requires PIL which is not included in site-packages
+The photologue app requires PIL which is not included in external_libs

Modified: trunk/pinax/manage.py
==============================================================================
--- trunk/pinax/manage.py       (original)
+++ trunk/pinax/manage.py       Thu Sep 18 19:01:45 2008
@@ -2,9 +2,9 @@
  from os.path import abspath, dirname, join
  from site import addsitedir
  import sys
-path = addsitedir(abspath(join(dirname(__file__), '../site-packages')),  
set())
+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__), '../apps')))
+sys.path.insert(0, abspath(join(dirname(__file__), '../external_apps')))
  sys.path.insert(0, abspath(join(dirname(__file__), 'local_apps')))

  from django.core.management import execute_manager

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to