Changeset 1449 for trunk/pylucid/PyLucid/install/BaseInstall.py
- Timestamp:
- 02/27/08 16:21:32 (2 years ago)
- Files:
-
- 1 modified
-
trunk/pylucid/PyLucid/install/BaseInstall.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/PyLucid/install/BaseInstall.py
r1343 r1449 4 4 """ 5 5 6 import sys, os 6 import sys, os, posixpath 7 7 8 8 from PyLucid import PYLUCID_VERSION_STRING … … 107 107 108 108 self.request = request 109 110 media_url = posixpath.join( 111 settings.MEDIA_URL, settings.PYLUCID_MEDIA_DIR, "" 112 ) # With appended slash, for backward compatible 109 113 self.context = { 110 114 "output": "", 111 115 "request": request, 112 "PyLucid_media_url": settings.PYLUCID_MEDIA_URL,116 "PyLucid_media_url": media_url, 113 117 "version": PYLUCID_VERSION_STRING, 114 118 "current_working_dir": os.getcwd(),