Changeset 1449 for trunk/pylucid/PyLucid/settings_example.py
- Timestamp:
- 02/27/08 16:21:32 (2 years ago)
- Files:
-
- 1 modified
-
trunk/pylucid/PyLucid/settings_example.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/PyLucid/settings_example.py
r1388 r1449 169 169 MEDIA_ROOT = "./media/" 170 170 171 172 171 # URL that handles the media served from MEDIA_ROOT. 173 172 # Example-1: "/media/" (default) … … 175 174 # Example-3: "http://media.your_domain.net/" 176 175 MEDIA_URL = "/media/" 177 178 179 # URL for the PyLucid media files.180 # Example-1: "/media/PyLucid/" (default)181 # Examlpe-2: "http://other_domain.net/media/PyLucid/"182 # Example-3: "http://pylucid.media.your_domain.net/"183 PYLUCID_MEDIA_URL = "/media/PyLucid/"184 185 176 186 177 # URL prefix for admin media -- CSS, JavaScript and images. … … 321 312 # PYLUCID BASE SETTINGS 322 313 # basic adjustments, witch don't have to be changed. 314 315 # All PyLucid media files stored in a sub directory under the django media 316 # path. Used for building filesystem path and URLs. 317 # filesystem path: MEDIA_ROOT + PYLUCID_MEDIA_SUBDIR 318 # URLs: MEDIA_URL + PYLUCID_MEDIA_SUBDIR 319 PYLUCID_MEDIA_DIR = "PyLucid" 320 321 # Sub directory name for all default internal pages. It would be used to build 322 # the filesystem path and the URL! 323 # filesystem path: MEDIA_ROOT + PYLUCID_MEDIA_SUBDIR + INTERNAL_PAGE_PATH 324 # URLs: MEDIA_URL + PYLUCID_MEDIA_SUBDIR + INTERNAL_PAGE_PATH 325 INTERNAL_PAGE_DIR = "internal_page" 326 327 # If you will change a internal page, you must copy a file from 328 # INTERNAL_PAGE_PATH into this directory. (Same subdirectory!) 329 # (default: "custom") 330 # filesystem path: MEDIA_ROOT + PYLUCID_MEDIA_SUBDIR + CUSTOM_INTERNAL_PAGE_PATH 331 # URLs: MEDIA_URL + PYLUCID_MEDIA_SUBDIR + CUSTOM_INTERNAL_PAGE_PATH 332 CUSTOM_INTERNAL_PAGE_DIR = "custom" 333 323 334 324 335 # Path to the Plugins