├── .arcconfig ├── .gitignore ├── CHANGES ├── LICENSE ├── MANIFEST.in ├── README.rst ├── example_module ├── __init__.py ├── models.py ├── nexus_modules.py └── templates │ └── nexus │ └── example │ ├── dashboard.html │ └── index.html ├── example_project ├── .gitignore ├── __init__.py ├── manage.py ├── settings.py ├── templates │ ├── 404.html │ └── 500.html └── urls.py ├── nexus ├── __init__.py ├── conf.py ├── media │ ├── css │ │ ├── admin.css │ │ ├── facebox.css │ │ └── nexus.css │ ├── img │ │ ├── admin │ │ │ ├── icon_add.gif │ │ │ ├── icon_change.gif │ │ │ ├── icon_delete.gif │ │ │ └── nav-bg.gif │ │ ├── breadcrumb.png │ │ ├── facebox │ │ │ ├── closelabel.png │ │ │ └── loading.gif │ │ ├── loading.gif │ │ └── nexus_logo.png │ └── js │ │ ├── lib │ │ ├── facebox │ │ │ └── facebox.js │ │ ├── jquery.js │ │ └── jquery.tmpl.js │ │ └── nexus.js ├── models.py ├── modules.py ├── nexus_modules.py ├── sites.py ├── templates │ └── nexus │ │ ├── admin │ │ ├── app_index.html │ │ ├── base.html │ │ ├── base_site.html │ │ ├── change_form.html │ │ ├── change_list.html │ │ ├── dashboard │ │ │ └── index.html │ │ ├── delete_confirmation.html │ │ ├── delete_selected_confirmation.html │ │ ├── index.html │ │ ├── object_history.html │ │ ├── password_change_done.html │ │ ├── password_change_form.html │ │ └── submit_line.html │ │ ├── base.html │ │ ├── dashboard.html │ │ ├── login.html │ │ ├── module.html │ │ └── navigation.html └── templatetags │ ├── __init__.py │ ├── nexus_admin.py │ └── nexus_helpers.py ├── runtests.py ├── setup.cfg └── setup.py /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/.arcconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info/ 3 | .DS_Store 4 | dist/ 5 | build 6 | -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/README.rst -------------------------------------------------------------------------------- /example_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_module/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_module/nexus_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/example_module/nexus_modules.py -------------------------------------------------------------------------------- /example_module/templates/nexus/example/dashboard.html: -------------------------------------------------------------------------------- 1 |
This is an example Nexus module!
-------------------------------------------------------------------------------- /example_module/templates/nexus/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/example_module/templates/nexus/example/index.html -------------------------------------------------------------------------------- /example_project/.gitignore: -------------------------------------------------------------------------------- 1 | sentry_index/ -------------------------------------------------------------------------------- /example_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/example_project/manage.py -------------------------------------------------------------------------------- /example_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/example_project/settings.py -------------------------------------------------------------------------------- /example_project/templates/404.html: -------------------------------------------------------------------------------- 1 | 404 error -------------------------------------------------------------------------------- /example_project/templates/500.html: -------------------------------------------------------------------------------- 1 | 500 error -------------------------------------------------------------------------------- /example_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/example_project/urls.py -------------------------------------------------------------------------------- /nexus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/__init__.py -------------------------------------------------------------------------------- /nexus/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/conf.py -------------------------------------------------------------------------------- /nexus/media/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/css/admin.css -------------------------------------------------------------------------------- /nexus/media/css/facebox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/css/facebox.css -------------------------------------------------------------------------------- /nexus/media/css/nexus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/css/nexus.css -------------------------------------------------------------------------------- /nexus/media/img/admin/icon_add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/img/admin/icon_add.gif -------------------------------------------------------------------------------- /nexus/media/img/admin/icon_change.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/img/admin/icon_change.gif -------------------------------------------------------------------------------- /nexus/media/img/admin/icon_delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/img/admin/icon_delete.gif -------------------------------------------------------------------------------- /nexus/media/img/admin/nav-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/img/admin/nav-bg.gif -------------------------------------------------------------------------------- /nexus/media/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/img/breadcrumb.png -------------------------------------------------------------------------------- /nexus/media/img/facebox/closelabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/img/facebox/closelabel.png -------------------------------------------------------------------------------- /nexus/media/img/facebox/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/img/facebox/loading.gif -------------------------------------------------------------------------------- /nexus/media/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/img/loading.gif -------------------------------------------------------------------------------- /nexus/media/img/nexus_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/img/nexus_logo.png -------------------------------------------------------------------------------- /nexus/media/js/lib/facebox/facebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/js/lib/facebox/facebox.js -------------------------------------------------------------------------------- /nexus/media/js/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/js/lib/jquery.js -------------------------------------------------------------------------------- /nexus/media/js/lib/jquery.tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/js/lib/jquery.tmpl.js -------------------------------------------------------------------------------- /nexus/media/js/nexus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/media/js/nexus.js -------------------------------------------------------------------------------- /nexus/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/models.py -------------------------------------------------------------------------------- /nexus/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/modules.py -------------------------------------------------------------------------------- /nexus/nexus_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/nexus_modules.py -------------------------------------------------------------------------------- /nexus/sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/sites.py -------------------------------------------------------------------------------- /nexus/templates/nexus/admin/app_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/admin/app_index.html -------------------------------------------------------------------------------- /nexus/templates/nexus/admin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/admin/base.html -------------------------------------------------------------------------------- /nexus/templates/nexus/admin/base_site.html: -------------------------------------------------------------------------------- 1 | {% extends "nexus/admin/base.html" %} 2 | -------------------------------------------------------------------------------- /nexus/templates/nexus/admin/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/admin/change_form.html -------------------------------------------------------------------------------- /nexus/templates/nexus/admin/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/admin/change_list.html -------------------------------------------------------------------------------- /nexus/templates/nexus/admin/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/admin/dashboard/index.html -------------------------------------------------------------------------------- /nexus/templates/nexus/admin/delete_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/admin/delete_confirmation.html -------------------------------------------------------------------------------- /nexus/templates/nexus/admin/delete_selected_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/admin/delete_selected_confirmation.html -------------------------------------------------------------------------------- /nexus/templates/nexus/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/admin/index.html -------------------------------------------------------------------------------- /nexus/templates/nexus/admin/object_history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/admin/object_history.html -------------------------------------------------------------------------------- /nexus/templates/nexus/admin/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/admin/password_change_done.html -------------------------------------------------------------------------------- /nexus/templates/nexus/admin/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/admin/password_change_form.html -------------------------------------------------------------------------------- /nexus/templates/nexus/admin/submit_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/admin/submit_line.html -------------------------------------------------------------------------------- /nexus/templates/nexus/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/base.html -------------------------------------------------------------------------------- /nexus/templates/nexus/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/dashboard.html -------------------------------------------------------------------------------- /nexus/templates/nexus/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/login.html -------------------------------------------------------------------------------- /nexus/templates/nexus/module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/module.html -------------------------------------------------------------------------------- /nexus/templates/nexus/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templates/nexus/navigation.html -------------------------------------------------------------------------------- /nexus/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nexus/templatetags/nexus_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templatetags/nexus_admin.py -------------------------------------------------------------------------------- /nexus/templatetags/nexus_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/nexus/templatetags/nexus_helpers.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/disqus/nexus/HEAD/setup.py --------------------------------------------------------------------------------