├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── conf.py ├── detail.rst ├── images │ ├── browse.png │ ├── insert.png │ └── overlay_upload.png ├── index.rst ├── make.bat ├── motivation.rst ├── picker_config.rst ├── releases.rst ├── sample.rst ├── screenshots.rst ├── setup.rst ├── uploads.rst └── wymeditor.rst ├── file_picker ├── __init__.py ├── apps.py ├── forms.py ├── models.py ├── sites.py ├── static │ ├── css │ │ └── filepicker.overlay.css │ ├── img │ │ ├── attach.png │ │ ├── close.png │ │ └── white.png │ ├── js │ │ ├── ajaxupload.js │ │ ├── jquery.filepicker.js │ │ └── jquery.filepicker.simple.js │ ├── plupload.flash.swf │ └── wymeditor │ │ ├── iframe │ │ └── default │ │ │ ├── lbl-blockquote.png │ │ │ ├── lbl-h1.png │ │ │ ├── lbl-h2.png │ │ │ ├── lbl-h3.png │ │ │ ├── lbl-h4.png │ │ │ ├── lbl-h5.png │ │ │ ├── lbl-h6.png │ │ │ ├── lbl-p.png │ │ │ ├── lbl-pre.png │ │ │ ├── wymiframe.css │ │ │ └── wymiframe.html │ │ ├── jquery.wymeditor.js │ │ ├── jquery.wymeditor.min.js │ │ ├── jquery.wymeditor.pack.js │ │ ├── lang │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── de.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── nn.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sv.js │ │ ├── tr.js │ │ └── zh_cn.js │ │ ├── plugins │ │ ├── embed │ │ │ └── jquery.wymeditor.embed.js │ │ ├── fullscreen │ │ │ ├── icon_fullscreen.gif │ │ │ └── jquery.wymeditor.fullscreen.js │ │ ├── hovertools │ │ │ └── jquery.wymeditor.hovertools.js │ │ ├── resizable │ │ │ ├── jquery.wymeditor.resizable.js │ │ │ └── readme.txt │ │ └── tidy │ │ │ ├── README │ │ │ ├── jquery.wymeditor.tidy.js │ │ │ ├── tidy.php │ │ │ └── wand.png │ │ └── skins │ │ ├── compact │ │ ├── icons.png │ │ ├── skin.css │ │ └── skin.js │ │ ├── default │ │ ├── icons.png │ │ ├── skin.css │ │ └── skin.js │ │ ├── minimal │ │ ├── images │ │ │ ├── bg.header.gif │ │ │ ├── bg.selector.silver.gif │ │ │ ├── bg.wymeditor.png │ │ │ └── icons.silver.gif │ │ ├── skin.css │ │ └── skin.js │ │ ├── silver │ │ ├── COPYING │ │ ├── README │ │ ├── images │ │ │ ├── bg.header.gif │ │ │ ├── bg.selector.silver.gif │ │ │ ├── bg.wymeditor.png │ │ │ └── icons.silver.gif │ │ ├── skin.css │ │ └── skin.js │ │ ├── twopanels │ │ ├── icons.png │ │ ├── skin.css │ │ └── skin.js │ │ └── wymeditor_icon.png ├── tests.py ├── uploads │ ├── __init__.py │ ├── admin.py │ ├── file_pickers.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ └── models.py ├── views.py ├── widgets.py └── wymeditor │ ├── __init__.py │ ├── models.py │ ├── static │ └── js │ │ └── jquery.wymeditor.filepicker.js │ └── widgets.py ├── sample_project ├── manage.py └── sample_project │ ├── __init__.py │ ├── article │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ └── models.py │ ├── runner.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── setup.cfg ├── setup.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = file_picker 3 | omit = */tests*,*/migrations/* 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/detail.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/detail.rst -------------------------------------------------------------------------------- /docs/images/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/images/browse.png -------------------------------------------------------------------------------- /docs/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/images/insert.png -------------------------------------------------------------------------------- /docs/images/overlay_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/images/overlay_upload.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/motivation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/motivation.rst -------------------------------------------------------------------------------- /docs/picker_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/picker_config.rst -------------------------------------------------------------------------------- /docs/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/releases.rst -------------------------------------------------------------------------------- /docs/sample.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/sample.rst -------------------------------------------------------------------------------- /docs/screenshots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/screenshots.rst -------------------------------------------------------------------------------- /docs/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/setup.rst -------------------------------------------------------------------------------- /docs/uploads.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/uploads.rst -------------------------------------------------------------------------------- /docs/wymeditor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/docs/wymeditor.rst -------------------------------------------------------------------------------- /file_picker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/__init__.py -------------------------------------------------------------------------------- /file_picker/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/apps.py -------------------------------------------------------------------------------- /file_picker/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/forms.py -------------------------------------------------------------------------------- /file_picker/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /file_picker/sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/sites.py -------------------------------------------------------------------------------- /file_picker/static/css/filepicker.overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/css/filepicker.overlay.css -------------------------------------------------------------------------------- /file_picker/static/img/attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/img/attach.png -------------------------------------------------------------------------------- /file_picker/static/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/img/close.png -------------------------------------------------------------------------------- /file_picker/static/img/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/img/white.png -------------------------------------------------------------------------------- /file_picker/static/js/ajaxupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/js/ajaxupload.js -------------------------------------------------------------------------------- /file_picker/static/js/jquery.filepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/js/jquery.filepicker.js -------------------------------------------------------------------------------- /file_picker/static/js/jquery.filepicker.simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/js/jquery.filepicker.simple.js -------------------------------------------------------------------------------- /file_picker/static/plupload.flash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/plupload.flash.swf -------------------------------------------------------------------------------- /file_picker/static/wymeditor/iframe/default/lbl-blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/iframe/default/lbl-blockquote.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/iframe/default/lbl-h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/iframe/default/lbl-h1.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/iframe/default/lbl-h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/iframe/default/lbl-h2.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/iframe/default/lbl-h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/iframe/default/lbl-h3.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/iframe/default/lbl-h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/iframe/default/lbl-h4.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/iframe/default/lbl-h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/iframe/default/lbl-h5.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/iframe/default/lbl-h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/iframe/default/lbl-h6.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/iframe/default/lbl-p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/iframe/default/lbl-p.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/iframe/default/lbl-pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/iframe/default/lbl-pre.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/iframe/default/wymiframe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/iframe/default/wymiframe.css -------------------------------------------------------------------------------- /file_picker/static/wymeditor/iframe/default/wymiframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/iframe/default/wymiframe.html -------------------------------------------------------------------------------- /file_picker/static/wymeditor/jquery.wymeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/jquery.wymeditor.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/jquery.wymeditor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/jquery.wymeditor.min.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/jquery.wymeditor.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/jquery.wymeditor.pack.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/bg.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/ca.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/cs.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/de.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/en.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/es.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/fa.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/fi.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/fr.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/he.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/hr.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/hu.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/it.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/nb.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/nl.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/nn.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/pl.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/pt-br.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/pt.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/ru.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/sv.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/tr.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/lang/zh_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/lang/zh_cn.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/plugins/embed/jquery.wymeditor.embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/plugins/embed/jquery.wymeditor.embed.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/plugins/fullscreen/icon_fullscreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/plugins/fullscreen/icon_fullscreen.gif -------------------------------------------------------------------------------- /file_picker/static/wymeditor/plugins/fullscreen/jquery.wymeditor.fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/plugins/fullscreen/jquery.wymeditor.fullscreen.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/plugins/hovertools/jquery.wymeditor.hovertools.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/plugins/resizable/jquery.wymeditor.resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/plugins/resizable/jquery.wymeditor.resizable.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/plugins/resizable/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/plugins/resizable/readme.txt -------------------------------------------------------------------------------- /file_picker/static/wymeditor/plugins/tidy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/plugins/tidy/README -------------------------------------------------------------------------------- /file_picker/static/wymeditor/plugins/tidy/jquery.wymeditor.tidy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/plugins/tidy/jquery.wymeditor.tidy.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/plugins/tidy/tidy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/plugins/tidy/tidy.php -------------------------------------------------------------------------------- /file_picker/static/wymeditor/plugins/tidy/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/plugins/tidy/wand.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/compact/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/compact/icons.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/compact/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/compact/skin.css -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/compact/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/compact/skin.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/default/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/default/icons.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/default/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/default/skin.css -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/default/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/default/skin.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/minimal/images/bg.header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/minimal/images/bg.header.gif -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/minimal/images/bg.selector.silver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/minimal/images/bg.selector.silver.gif -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/minimal/images/bg.wymeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/minimal/images/bg.wymeditor.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/minimal/images/icons.silver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/minimal/images/icons.silver.gif -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/minimal/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/minimal/skin.css -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/minimal/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/minimal/skin.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/silver/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/silver/COPYING -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/silver/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/silver/README -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/silver/images/bg.header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/silver/images/bg.header.gif -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/silver/images/bg.selector.silver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/silver/images/bg.selector.silver.gif -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/silver/images/bg.wymeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/silver/images/bg.wymeditor.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/silver/images/icons.silver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/silver/images/icons.silver.gif -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/silver/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/silver/skin.css -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/silver/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/silver/skin.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/twopanels/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/twopanels/icons.png -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/twopanels/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/twopanels/skin.css -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/twopanels/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/twopanels/skin.js -------------------------------------------------------------------------------- /file_picker/static/wymeditor/skins/wymeditor_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/static/wymeditor/skins/wymeditor_icon.png -------------------------------------------------------------------------------- /file_picker/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/tests.py -------------------------------------------------------------------------------- /file_picker/uploads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /file_picker/uploads/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/uploads/admin.py -------------------------------------------------------------------------------- /file_picker/uploads/file_pickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/uploads/file_pickers.py -------------------------------------------------------------------------------- /file_picker/uploads/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /file_picker/uploads/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/uploads/migrations/0001_initial.py -------------------------------------------------------------------------------- /file_picker/uploads/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /file_picker/uploads/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/uploads/models.py -------------------------------------------------------------------------------- /file_picker/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/views.py -------------------------------------------------------------------------------- /file_picker/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/widgets.py -------------------------------------------------------------------------------- /file_picker/wymeditor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /file_picker/wymeditor/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /file_picker/wymeditor/static/js/jquery.wymeditor.filepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/wymeditor/static/js/jquery.wymeditor.filepicker.js -------------------------------------------------------------------------------- /file_picker/wymeditor/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/file_picker/wymeditor/widgets.py -------------------------------------------------------------------------------- /sample_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/sample_project/manage.py -------------------------------------------------------------------------------- /sample_project/sample_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_project/sample_project/article/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_project/sample_project/article/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/sample_project/sample_project/article/admin.py -------------------------------------------------------------------------------- /sample_project/sample_project/article/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/sample_project/sample_project/article/migrations/0001_initial.py -------------------------------------------------------------------------------- /sample_project/sample_project/article/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample_project/sample_project/article/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/sample_project/sample_project/article/models.py -------------------------------------------------------------------------------- /sample_project/sample_project/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/sample_project/sample_project/runner.py -------------------------------------------------------------------------------- /sample_project/sample_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/sample_project/sample_project/settings.py -------------------------------------------------------------------------------- /sample_project/sample_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/sample_project/sample_project/urls.py -------------------------------------------------------------------------------- /sample_project/sample_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/sample_project/sample_project/wsgi.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = migrations,docs,env,.tox 3 | max-line-length = 120 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caktus/django-file-picker/HEAD/tox.ini --------------------------------------------------------------------------------