playpauseandstop / django-mediafiles
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
MANIFEST | ||
| |
MANIFEST.in | ||
| |
README.rst | ||
| |
docs/ | ||
| |
mediafiles/ | ||
| |
setup.py |
README.rst
django-mediafiles
Introduction
django-mediafiles is Django reusable application to manage media files in your Django project. Now django-mediafiles supports:
- Directories creating +, editing (chmod, chown, rename +), deleting +
- Files creating, uploading +, editing (chmod, chown), deleting +
- Recycle bin
- Thumbnail creation for images
- Text files editing in browser +
NOTE: Possibilities that supported current version of django-mediafiles labeled by +.
Requirements
- django.contrib.auth and django.contrib.humanize must be added to your project's INSTALLED_APPS setting;
- django.contrib.auth.middleware.AuthMiddleware must exists in your project's MIDDLEWARE_CLASSES setting;
- Pygments >= 1.0 needed for source code highlight.
Basic installation
Install django-mediafiles via:
# python setup.py install
or add mediafiles directory to your PYTHONPATH.
Add mediafiles to your project INSTALLED_APPS and set up serving of mediafiles media directory.
Add (r'^mediafiles/', include('mediafiles.urls')) to your project URLConf.
That's all :) Now login into Django admin CRUD and click on Media Files (or localized value) link. (Not worked yet, go to mediafiles url to get access to it).
More
Check django-mediafiles Screenshots @ Google Code.

