This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Thu Feb 26 15:23:24 -0800 2009 | |
| |
MANIFEST | Thu Feb 26 15:23:24 -0800 2009 | |
| |
MANIFEST.in | Thu Feb 26 15:23:24 -0800 2009 | |
| |
README.rst | Sun Mar 01 07:27:25 -0800 2009 | |
| |
docs/ | Mon Sep 01 13:33:12 -0700 2008 | |
| |
mediafiles/ | Sun Mar 01 07:51:07 -0800 2009 | |
| |
setup.py | Thu Feb 26 15:23:24 -0800 2009 |
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.







