Metadata-Version: 1.1
Name: django-elfinderfs
Version: 0.0.1
Summary: 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.
Home-page: http://packages.python.org/django-elfinderfs
Author: Okami
Author-email: okami@fuzetsu.info
License: GPLv3
Description: django-elfinderfs
        =================
        
        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.
        
        
        Requirements
        ------------
        
        * Python >= 3.0
        * Django >= 1.6
        * Django REST Framework >= 2.3
        * PIL or Pillow
        
        
        Installation
        ------------
        
        * Add elfinderfs django app to your project. (no setup.py atm).
        * Modify your project's settings.py: add 'rest_framework' and 'elfinderfs' to INSTALLED_APPS.
        * Add elfinderfs configuration to your project's settings.py:
        
        For example:
        ```python
        ELFINDERFS = {
            'roots': {
                'Media': {
                    'url': MEDIA_URL,
                    'root': MEDIA_ROOT,
                    'thumbnails_prefix': '.thumbnails',
                },
                'TMP': {
                    'url': '/tmp/',
                    'root': '/tmp/',
                    'thumbnails_prefix': '.thumbnails',
                },
            },
            'default_root': 'Media',
        }
        ```
        
        * File management is available in your django admin at the url /admin/elfinderfs/sitefiles/.
        Files are the same for each domain.
        
        
        Not implemented commands
        ------------------------
        
        * ls
        * tmb
        * size
        * dim
        * archive
        * extract
        * info
        * netmount
        
        Most of the commands are not used in default configuration of the elFinder.
        
        
        Not implemented features
        ------------------------
        
        * Archive management (packing, unpacking).
        * Symlinks (symlinks are hidden to prevent data corruption).
        
        
        Screenshots
        -----------
        
        * Default Django Admin
        
        ![Default Django Admin](/defaultadmin.png)
        
        * Django Suit
        
        ![Django Suit](/suitadmin.png)
        
Keywords: django elfinder file manager
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Framework :: Django
