Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxpoletaev/django-roxyfileman
Integrate Django with Roxy Fileman
https://github.com/maxpoletaev/django-roxyfileman
Last synced: 2 months ago
JSON representation
Integrate Django with Roxy Fileman
- Host: GitHub
- URL: https://github.com/maxpoletaev/django-roxyfileman
- Owner: maxpoletaev
- License: gpl-3.0
- Created: 2014-12-12T15:54:03.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-22T15:55:22.000Z (almost 8 years ago)
- Last Synced: 2024-09-15T08:50:09.704Z (3 months ago)
- Language: JavaScript
- Homepage: http://www.roxyfileman.com/
- Size: 540 KB
- Stars: 7
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# 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](screenshot.png)
* http://www.roxyfileman.com/
* Used version: 1.4.2## Installation
1. Run the command:
```
$ pip install django-roxyfileman
```2. Add application into your `INSTALLED_APPS` config:
```py
INSTALLED_APPS = [
...,
'roxyfileman',
]
```3. Bind url to application in `urls.py`:
```py
urlpatterns = patterns('',
...,
url(r'^roxyfileman/', include('roxyfileman.urls')),
)
```## Integrate with CKEditor
If you use [django-ckeditor][1], you can integrate Roxy Fileman with
your editor. Add this in your config file:```py
CKEDITOR_CONFIGS = {
'default': {
'filebrowserBrowseUrl': '/roxyfileman/',
}
}ROXY_INTEGRATION = 'ckeditor'
```[1]: https://github.com/django-ckeditor/django-ckeditor