maxpoletaev / django-roxyfileman

Integrate Django with Roxy Fileman

Home Page:http://www.roxyfileman.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Roxy Fileman for Django

Roxy Fileman is free open source file browser for .NET and PHP, ready for use with CKEditor and TinyMCE WYSIWYG html editors. It could be easily integrated into a CMS or any other web application. Supported browsersFileman is based on JQuery and JQueryUI libraries and it's compatible with all modern browsers — Internet Explorer, Firefox, Google Chrome, Safary and Opera.

Roxy Fileman

Installation

  1. Run the command:

    $ pip install django-roxyfileman
    
  2. Add application into your INSTALLED_APPS config:

    INSTALLED_APPS = [
        ...,
        'roxyfileman',
    ]
  3. Bind url to application in urls.py:

    urlpatterns = patterns('',
        ...,
        url(r'^roxyfileman/', include('roxyfileman.urls')),
    )

Integrate with CKEditor

If you use django-ckeditor, you can integrate Roxy Fileman with your editor. Add this in your config file:

CKEDITOR_CONFIGS = {
    'default': {
        'filebrowserBrowseUrl': '/roxyfileman/',
    }
}

ROXY_INTEGRATION = 'ckeditor'

About

Integrate Django with Roxy Fileman

http://www.roxyfileman.com/

License:GNU General Public License v3.0


Languages

Language:JavaScript 68.5%Language:Python 11.2%Language:CSS 11.0%Language:HTML 9.3%