├── .gitignore ├── README.md ├── requirements.txt ├── setup.py ├── test_project ├── __init__.py ├── manage.py ├── requirements.txt ├── settings.py ├── static │ └── ace │ │ ├── LICENSE │ │ ├── ace-uncompressed.js │ │ ├── ace.js │ │ ├── keybinding-emacs.js │ │ ├── keybinding-vim.js │ │ ├── mode-c_cpp.js │ │ ├── mode-clojure.js │ │ ├── mode-coffee.js │ │ ├── mode-csharp.js │ │ ├── mode-css.js │ │ ├── mode-groovy.js │ │ ├── mode-html.js │ │ ├── mode-java.js │ │ ├── mode-javascript.js │ │ ├── mode-json.js │ │ ├── mode-lua.js │ │ ├── mode-markdown.js │ │ ├── mode-ocaml.js │ │ ├── mode-perl.js │ │ ├── mode-php.js │ │ ├── mode-python.js │ │ ├── mode-ruby.js │ │ ├── mode-scad.js │ │ ├── mode-scala.js │ │ ├── mode-scss.js │ │ ├── mode-svg.js │ │ ├── mode-textile.js │ │ ├── mode-xml.js │ │ ├── theme-clouds.js │ │ ├── theme-clouds_midnight.js │ │ ├── theme-cobalt.js │ │ ├── theme-crimson_editor.js │ │ ├── theme-dawn.js │ │ ├── theme-eclipse.js │ │ ├── theme-idle_fingers.js │ │ ├── theme-kr_theme.js │ │ ├── theme-merbivore.js │ │ ├── theme-merbivore_soft.js │ │ ├── theme-mono_industrial.js │ │ ├── theme-monokai.js │ │ ├── theme-pastel_on_dark.js │ │ ├── theme-solarized_dark.js │ │ ├── theme-solarized_light.js │ │ ├── theme-textmate.js │ │ ├── theme-twilight.js │ │ ├── theme-vibrant_ink.js │ │ ├── worker-coffee.js │ │ ├── worker-css.js │ │ └── worker-javascript.js ├── templates │ └── base.html ├── urls.py └── views.py └── themes ├── __init__.py ├── admin.py ├── app_settings.py ├── engines.py ├── exceptions.py ├── loaders.py ├── middleware.py ├── models.py ├── packaging.py ├── registration.py ├── templates └── themes │ ├── base.html │ ├── home.html │ ├── theme.html │ └── theme_up_file.html ├── templatetags ├── __init__.py └── themes_tags.py ├── tests ├── 01.basic.txt ├── 02-models.txt ├── 03-template-loader.txt ├── 04-template-tags.txt ├── 05-django-engine.txt ├── 06-jinja2-engine.txt-disabled ├── 07-middleware.txt ├── 08-packaging.txt ├── 09-security.txt └── middleware_funcs.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | env 2 | *.pyc 3 | .DS_Store 4 | .*.swp 5 | .coverage 6 | data.db 7 | local_settings.py 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django==1.3 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/requirements.txt -------------------------------------------------------------------------------- /test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/settings.py -------------------------------------------------------------------------------- /test_project/static/ace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/LICENSE -------------------------------------------------------------------------------- /test_project/static/ace/ace-uncompressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/ace-uncompressed.js -------------------------------------------------------------------------------- /test_project/static/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/ace.js -------------------------------------------------------------------------------- /test_project/static/ace/keybinding-emacs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/keybinding-emacs.js -------------------------------------------------------------------------------- /test_project/static/ace/keybinding-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/keybinding-vim.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-c_cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-c_cpp.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-clojure.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-coffee.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-csharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-csharp.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-css.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-groovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-groovy.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-html.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-java.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-javascript.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-json.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-lua.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-markdown.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-ocaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-ocaml.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-perl.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-php.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-python.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-ruby.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-scad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-scad.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-scala.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-scss.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-svg.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-textile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-textile.js -------------------------------------------------------------------------------- /test_project/static/ace/mode-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/mode-xml.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-clouds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-clouds.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-clouds_midnight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-clouds_midnight.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-cobalt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-cobalt.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-crimson_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-crimson_editor.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-dawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-dawn.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-eclipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-eclipse.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-idle_fingers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-idle_fingers.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-kr_theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-kr_theme.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-merbivore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-merbivore.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-merbivore_soft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-merbivore_soft.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-mono_industrial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-mono_industrial.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-monokai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-monokai.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-pastel_on_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-pastel_on_dark.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-solarized_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-solarized_dark.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-solarized_light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-solarized_light.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-textmate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-textmate.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-twilight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-twilight.js -------------------------------------------------------------------------------- /test_project/static/ace/theme-vibrant_ink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/theme-vibrant_ink.js -------------------------------------------------------------------------------- /test_project/static/ace/worker-coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/worker-coffee.js -------------------------------------------------------------------------------- /test_project/static/ace/worker-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/worker-css.js -------------------------------------------------------------------------------- /test_project/static/ace/worker-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/static/ace/worker-javascript.js -------------------------------------------------------------------------------- /test_project/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/templates/base.html -------------------------------------------------------------------------------- /test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/urls.py -------------------------------------------------------------------------------- /test_project/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/test_project/views.py -------------------------------------------------------------------------------- /themes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/__init__.py -------------------------------------------------------------------------------- /themes/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/admin.py -------------------------------------------------------------------------------- /themes/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/app_settings.py -------------------------------------------------------------------------------- /themes/engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/engines.py -------------------------------------------------------------------------------- /themes/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/exceptions.py -------------------------------------------------------------------------------- /themes/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/loaders.py -------------------------------------------------------------------------------- /themes/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/middleware.py -------------------------------------------------------------------------------- /themes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/models.py -------------------------------------------------------------------------------- /themes/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/packaging.py -------------------------------------------------------------------------------- /themes/registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/registration.py -------------------------------------------------------------------------------- /themes/templates/themes/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/templates/themes/base.html -------------------------------------------------------------------------------- /themes/templates/themes/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/templates/themes/home.html -------------------------------------------------------------------------------- /themes/templates/themes/theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/templates/themes/theme.html -------------------------------------------------------------------------------- /themes/templates/themes/theme_up_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/templates/themes/theme_up_file.html -------------------------------------------------------------------------------- /themes/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/templatetags/themes_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/templatetags/themes_tags.py -------------------------------------------------------------------------------- /themes/tests/01.basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/tests/01.basic.txt -------------------------------------------------------------------------------- /themes/tests/02-models.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/tests/02-models.txt -------------------------------------------------------------------------------- /themes/tests/03-template-loader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/tests/03-template-loader.txt -------------------------------------------------------------------------------- /themes/tests/04-template-tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/tests/04-template-tags.txt -------------------------------------------------------------------------------- /themes/tests/05-django-engine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/tests/05-django-engine.txt -------------------------------------------------------------------------------- /themes/tests/06-jinja2-engine.txt-disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/tests/06-jinja2-engine.txt-disabled -------------------------------------------------------------------------------- /themes/tests/07-middleware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/tests/07-middleware.txt -------------------------------------------------------------------------------- /themes/tests/08-packaging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/tests/08-packaging.txt -------------------------------------------------------------------------------- /themes/tests/09-security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/tests/09-security.txt -------------------------------------------------------------------------------- /themes/tests/middleware_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/tests/middleware_funcs.py -------------------------------------------------------------------------------- /themes/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/urls.py -------------------------------------------------------------------------------- /themes/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marinho/django-themes/HEAD/themes/views.py --------------------------------------------------------------------------------