├── .editorconfig ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .readthedocs.yaml ├── .tx └── config ├── AUTHORS ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── admin.rst ├── api.rst ├── changelog.rst ├── conf.py ├── faq.rst ├── fieldswidgets.rst ├── filelisting.rst ├── fileobject.rst ├── help.rst ├── index.rst ├── quickstart.rst ├── releasenotes.rst ├── settings.rst ├── testing.rst ├── translation.rst ├── troubleshooting.rst └── versions.rst ├── filebrowser ├── __init__.py ├── actions.py ├── base.py ├── decorators.py ├── fields.py ├── forms.py ├── locale │ ├── az │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_CO │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── is │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── mn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl_PL │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sl_SI │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── tr_TR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── vi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── fb_version_generate.py │ │ └── fb_version_remove.py ├── models.py ├── namers.py ├── settings.py ├── signals.py ├── sites.py ├── static │ └── filebrowser │ │ ├── css │ │ ├── filebrowser.css │ │ └── uploadfield.css │ │ ├── img │ │ ├── TEST_IMAGE_000.jpg │ │ ├── cancel.png │ │ ├── cancel_hover.png │ │ ├── completed.png │ │ ├── fb-upload-spinner.gif │ │ ├── fb-upload.png │ │ ├── fb-upload_hover.png │ │ ├── icon-pulldown-versions-active.png │ │ ├── icon-pulldown-versions-hover.png │ │ ├── icon-pulldown-versions.png │ │ ├── progress-bar-content.png │ │ └── testimage.jpg │ │ └── js │ │ ├── AddFileBrowser.js │ │ ├── FB_CKEditor.js │ │ ├── FB_FileBrowseField.js │ │ ├── FB_TinyMCE.js │ │ ├── FB_TinyMCEv4.js │ │ ├── FB_TinyMCEv5.js │ │ ├── TinyMCEAdmin.js │ │ ├── TinyMCEv5Admin.js │ │ └── fileuploader.js ├── storage.py ├── templates │ └── filebrowser │ │ ├── createdir.html │ │ ├── custom_field.html │ │ ├── custom_upload_field.html │ │ ├── delete_confirm.html │ │ ├── detail.html │ │ ├── include │ │ ├── _response.html │ │ ├── breadcrumbs.html │ │ ├── filelisting.html │ │ ├── filter.html │ │ ├── paginator.html │ │ ├── tableheader.html │ │ └── toolbar.html │ │ ├── index.html │ │ ├── upload.html │ │ └── version.html ├── templatetags │ ├── __init__.py │ ├── fb_csrf.py │ ├── fb_pagination.py │ ├── fb_tags.py │ └── fb_versions.py └── utils.py ├── requirements.txt ├── runtests.py ├── setup.py ├── tests ├── __init__.py ├── requirements.txt ├── settings.py ├── test_base.py ├── test_commands.py ├── test_decorators.py ├── test_namers.py ├── test_settings.py ├── test_sites.py ├── test_templatetags.py ├── test_versions.py └── urls.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/admin.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/fieldswidgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/fieldswidgets.rst -------------------------------------------------------------------------------- /docs/filelisting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/filelisting.rst -------------------------------------------------------------------------------- /docs/fileobject.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/fileobject.rst -------------------------------------------------------------------------------- /docs/help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/help.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/releasenotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/releasenotes.rst -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /docs/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/testing.rst -------------------------------------------------------------------------------- /docs/translation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/translation.rst -------------------------------------------------------------------------------- /docs/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/troubleshooting.rst -------------------------------------------------------------------------------- /docs/versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/docs/versions.rst -------------------------------------------------------------------------------- /filebrowser/__init__.py: -------------------------------------------------------------------------------- 1 | VERSION = '4.0.3' 2 | -------------------------------------------------------------------------------- /filebrowser/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/actions.py -------------------------------------------------------------------------------- /filebrowser/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/base.py -------------------------------------------------------------------------------- /filebrowser/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/decorators.py -------------------------------------------------------------------------------- /filebrowser/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/fields.py -------------------------------------------------------------------------------- /filebrowser/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/forms.py -------------------------------------------------------------------------------- /filebrowser/locale/az/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/az/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/az/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/az/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/bg_BG/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/bg_BG/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/bg_BG/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/bg_BG/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/ca/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/ca/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/es_CO/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/es_CO/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/es_CO/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/es_CO/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/fa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/fa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/is/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/is/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/is/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/is/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/ja_JP/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/ja_JP/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/ja_JP/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/ja_JP/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/mn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/mn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/mn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/mn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/nb/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/nb/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/pl_PL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/pl_PL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/pl_PL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/pl_PL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/ru_RU/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/ru_RU/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/ru_RU/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/ru_RU/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/sl_SI/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/sl_SI/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/sl_SI/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/sl_SI/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/tr_TR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/tr_TR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/tr_TR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/tr_TR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/vi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/vi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/locale/zh_CN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/zh_CN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /filebrowser/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /filebrowser/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filebrowser/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filebrowser/management/commands/fb_version_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/management/commands/fb_version_generate.py -------------------------------------------------------------------------------- /filebrowser/management/commands/fb_version_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/management/commands/fb_version_remove.py -------------------------------------------------------------------------------- /filebrowser/models.py: -------------------------------------------------------------------------------- 1 | # This file is only necessary for the tests to work -------------------------------------------------------------------------------- /filebrowser/namers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/namers.py -------------------------------------------------------------------------------- /filebrowser/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/settings.py -------------------------------------------------------------------------------- /filebrowser/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/signals.py -------------------------------------------------------------------------------- /filebrowser/sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/sites.py -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/css/filebrowser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/css/filebrowser.css -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/css/uploadfield.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/css/uploadfield.css -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/img/TEST_IMAGE_000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/img/TEST_IMAGE_000.jpg -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/img/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/img/cancel.png -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/img/cancel_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/img/cancel_hover.png -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/img/completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/img/completed.png -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/img/fb-upload-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/img/fb-upload-spinner.gif -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/img/fb-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/img/fb-upload.png -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/img/fb-upload_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/img/fb-upload_hover.png -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/img/icon-pulldown-versions-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/img/icon-pulldown-versions-active.png -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/img/icon-pulldown-versions-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/img/icon-pulldown-versions-hover.png -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/img/icon-pulldown-versions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/img/icon-pulldown-versions.png -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/img/progress-bar-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/img/progress-bar-content.png -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/img/testimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/img/testimage.jpg -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/js/AddFileBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/js/AddFileBrowser.js -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/js/FB_CKEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/js/FB_CKEditor.js -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/js/FB_FileBrowseField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/js/FB_FileBrowseField.js -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/js/FB_TinyMCE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/js/FB_TinyMCE.js -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/js/FB_TinyMCEv4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/js/FB_TinyMCEv4.js -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/js/FB_TinyMCEv5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/js/FB_TinyMCEv5.js -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/js/TinyMCEAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/js/TinyMCEAdmin.js -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/js/TinyMCEv5Admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/js/TinyMCEv5Admin.js -------------------------------------------------------------------------------- /filebrowser/static/filebrowser/js/fileuploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/static/filebrowser/js/fileuploader.js -------------------------------------------------------------------------------- /filebrowser/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/storage.py -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/createdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/createdir.html -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/custom_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/custom_field.html -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/custom_upload_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/custom_upload_field.html -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/delete_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/delete_confirm.html -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/detail.html -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/include/_response.html: -------------------------------------------------------------------------------- 1 | {{ response }} -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/include/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/include/breadcrumbs.html -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/include/filelisting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/include/filelisting.html -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/include/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/include/filter.html -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/include/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/include/paginator.html -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/include/tableheader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/include/tableheader.html -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/include/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/include/toolbar.html -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/index.html -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/upload.html -------------------------------------------------------------------------------- /filebrowser/templates/filebrowser/version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templates/filebrowser/version.html -------------------------------------------------------------------------------- /filebrowser/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filebrowser/templatetags/fb_csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templatetags/fb_csrf.py -------------------------------------------------------------------------------- /filebrowser/templatetags/fb_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templatetags/fb_pagination.py -------------------------------------------------------------------------------- /filebrowser/templatetags/fb_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templatetags/fb_tags.py -------------------------------------------------------------------------------- /filebrowser/templatetags/fb_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/templatetags/fb_versions.py -------------------------------------------------------------------------------- /filebrowser/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/filebrowser/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django-grappelli>=3.0,<3.1 2 | pillow 3 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/tests/test_commands.py -------------------------------------------------------------------------------- /tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/tests/test_decorators.py -------------------------------------------------------------------------------- /tests/test_namers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/tests/test_namers.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/test_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/tests/test_sites.py -------------------------------------------------------------------------------- /tests/test_templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/tests/test_templatetags.py -------------------------------------------------------------------------------- /tests/test_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/tests/test_versions.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehmaschine/django-filebrowser/HEAD/tox.ini --------------------------------------------------------------------------------