elFinder is an open-source file manager for web, written in JavaScript using jQuery UI.
Creation is inspired by simplicity and convenience of Finder program used in Mac OS X
operating system.
django-elfinderfs is a 3rd party connector for elFinder 2.x and Django.
It's a simple local file system driver which does not uses any databases.
Read-only:
bzr branch bzr://django-elfinderfs.bzr.sourceforge.net/bzrroot/django-elfinderfs/
Read/Write:
bzr branch bzr+ssh://username@django-elfinderfs.bzr.sourceforge.net/bzrroot/django-elfinderfs/
:::python
INSTALLED_APPS = (
...
'django.contrib.sites',
...
'rest_framework',
...
'elfinderfs',
...
)
ELFINDERFS = {
'roots': {
'Media': {
'url': MEDIA_URL,
'root': MEDIA_ROOT,
'thumbnails_prefix': '.thumbnails',
},
'TMP': {
'url': '/tmp/',
'root': '/tmp/',
'thumbnails_prefix': '.thumbnails',
},
},
'default_root': 'Media',
}
Most of this commands are not used in default configuration of the elFinder.