Changeset 700
- Timestamp:
- 09/26/05 08:38:49 (3 years ago)
- Files:
-
- django/trunk/django/views/static.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/views/static.py
r683 r700 14 14 To use, put a URL pattern like:: 15 15 16 (r'^(?P<path> ).*)$', 'django.views.static.serve', {'document_root' : '/path/to/my/files/'})16 (r'^(?P<path>.*)$', 'django.views.static.serve', {'document_root' : '/path/to/my/files/'}) 17 17 18 18 in your URL conf; you must provide the ``document_root`` param. You may
