Skip to content

Commit

Permalink
move static files to static/ (like upstream)
Browse files Browse the repository at this point in the history
  • Loading branch information
wardi committed May 14, 2012
1 parent f555195 commit b6b1107
Show file tree
Hide file tree
Showing 118 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions filebrowser/settings.py
Expand Up @@ -29,8 +29,8 @@
DIRECTORY = getattr(settings, "FILEBROWSER_DIRECTORY", 'uploads/')

# The URL/PATH to your filebrowser media-files.
URL_FILEBROWSER_MEDIA = getattr(settings, "FILEBROWSER_URL_FILEBROWSER_MEDIA", "/media/filebrowser/")
PATH_FILEBROWSER_MEDIA = getattr(settings, "FILEBROWSER_PATH_FILEBROWSER_MEDIA", os.path.join(settings.MEDIA_ROOT, 'filebrowser/'))
URL_FILEBROWSER_MEDIA = getattr(settings, "FILEBROWSER_URL_FILEBROWSER_MEDIA", os.path.join(settings.STATIC_URL, 'filebrowser/'))
PATH_FILEBROWSER_MEDIA = getattr(settings, "FILEBROWSER_PATH_FILEBROWSER_MEDIA", os.path.join(settings.STATIC_ROOT, 'filebrowser/'))

# The URL/PATH to your TinyMCE Installation.
URL_TINYMCE = getattr(settings, "FILEBROWSER_URL_TINYMCE", DEFAULT_URL_TINYMCE)
Expand Down

0 comments on commit b6b1107

Please sign in to comment.