django-mediafiles
django-mediafiles copied to clipboard
Django media files manager
================= django-mediafiles
- Introduction_
- Requirements_
-
Basic installation
_ - More_
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 +.
.. _Django: http://www.djangoproject.com/
Requirements
-
django.contrib.auth
_ anddjango.contrib.humanize
_ must be added to your project'sINSTALLED_APPS
setting; -
django.contrib.auth.middleware.AuthMiddleware
_ must exists in your project'sMIDDLEWARE_CLASSES
setting; - Pygments_ >= 1.0 needed for source code highlight.
.. _django.contrib.auth
: http://docs.djangoproject.com/en/dev/topics/auth/
.. _django.contrib.humanize
: http://docs.djangoproject.com/en/dev/ref/contrib/humanize/
.. _django.contrib.auth.middleware.AuthMiddleware
: http://docs.djangoproject.com/en/dev/ref/middleware/#module-django.contrib.auth.middleware
.. _Pygments: http://www.pygments.org/
Basic installation
-
Install
django-mediafiles
via::python setup.py install
or add
mediafiles
directory to yourPYTHONPATH
. -
Add
mediafiles
to your projectINSTALLED_APPS
and set up serving ofmediafiles
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.
.. _Screenshots: http://code.google.com/p/django-mediafiles/wiki/Screenshots