├── .gitignore ├── DEPENDENCY_LICENSES.md ├── INSTALL.md ├── LICENSE.txt ├── NOTICE.md ├── README.md ├── apache_conf ├── ideaworks_api.conf └── ideaworks_web.conf ├── backend └── ideaworks │ ├── __init__.py │ ├── api │ ├── __init__.py │ └── tools.py │ ├── auth_addin_app │ ├── __init__.py │ ├── forms.py │ ├── models.py │ ├── static │ │ └── auth_addin_app │ │ │ ├── css │ │ │ ├── global.css │ │ │ ├── normalize.css │ │ │ └── smoothness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ └── jquery-ui-1.9.2.min.css │ │ │ └── js │ │ │ ├── authForm.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-ui-1.9.2.min.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.json.min.js │ │ │ ├── modernizr-2.6.2.min.js │ │ │ └── registration.js │ ├── templatetags │ │ ├── __init__.py │ │ └── auth_tags.py │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── config │ ├── __init__.py │ └── dev_rb.py │ ├── config_app │ ├── __init__.py │ ├── api.py │ ├── blah.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ └── views.py │ ├── contentapp │ ├── __init__.py │ ├── api.py │ ├── api_functions.py │ ├── authentication.py │ ├── authorization.py │ ├── documents.py │ ├── models.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── feedback_tests.py │ │ └── site_content_tests.py │ └── views.py │ ├── ideasapp │ ├── __init__.py │ ├── api.py │ ├── api_functions.py │ ├── authentication.py │ ├── authorization.py │ ├── documents.py │ ├── models.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── idea_tests.py │ │ ├── resource_nouns.txt │ │ └── rss_tests.py │ └── views.py │ ├── ideaworks │ ├── __init__.py │ ├── admin.py │ ├── auth_settings.py │ ├── email_settings_placeholder.py │ ├── generic_resources.py │ ├── settings.py │ ├── tastypie_settings.py │ ├── urls.py │ └── wsgi.py │ ├── logs │ └── .gitignore │ ├── manage.py │ ├── projectsapp │ ├── __init__.py │ ├── api.py │ ├── api_functions.py │ ├── authentication.py │ ├── authorization.py │ ├── documents.py │ ├── models.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── project_tests.py │ │ ├── resource_nouns.txt │ │ └── rss_tests.py │ └── views.py │ ├── protective_marking_app │ ├── __init__.py │ ├── api.py │ ├── data │ │ ├── __init__.py │ │ ├── _insert_data.py │ │ ├── classifications.json │ │ ├── codewords.json │ │ ├── descriptors.json │ │ └── national_caveats.json │ ├── documents.py │ ├── models.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ └── pm_tests.py │ └── views.py │ ├── static │ ├── css │ │ ├── global.css │ │ ├── normalize.css │ │ ├── smoothness │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-1.9.2.min.css │ │ └── tastytools │ │ │ ├── api.doc.css │ │ │ ├── api.howto.css │ │ │ └── style.css │ ├── img │ │ └── bootstrap │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ └── js │ │ ├── registration.js │ │ └── tastytools │ │ ├── api.doc.coffee │ │ └── api.doc.js │ ├── templates │ ├── base.html │ └── registration │ │ ├── activate.html │ │ ├── activation_email.txt │ │ ├── activation_email_hmtl.txt │ │ ├── activation_email_subject.txt │ │ ├── description_snippet.html │ │ ├── homepage_placeholder.html │ │ ├── login.html │ │ ├── logout.html │ │ ├── need_an_account.html │ │ ├── password_change_done_custom.html │ │ ├── password_change_form_custom.html │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ ├── password_reset_email.html │ │ ├── password_reset_email_as_html.html │ │ ├── password_reset_form.html │ │ ├── password_reset_subject.txt │ │ ├── prototype_snippet.html │ │ ├── registration_auto_complete.html │ │ ├── registration_complete.html │ │ ├── registration_form.html │ │ ├── registration_include.html │ │ └── terms_of_service.html │ └── user_db │ └── .placeholder_file ├── dependencies_cache └── .placeholder ├── frontend ├── .placeholder └── istarter-web │ ├── README.md │ ├── bootstrap │ └── 232 │ │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap-select.min.css │ │ ├── bootstrap-sortable.css │ │ ├── bootstrap.css │ │ ├── bootstrap.icon-large.css │ │ └── bootstrap.min.css │ │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ └── glyphicons.png │ │ └── js │ │ ├── bootstrap-select.min.js │ │ ├── bootstrap-sortable.js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── css │ ├── animations.css │ ├── app.css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ ├── national_caveats.json │ └── ng-grid.css │ ├── data │ ├── ideas │ │ ├── idea-1.json │ │ ├── idea-2.json │ │ ├── idea-3.json │ │ ├── idea-4.json │ │ ├── ideas.json │ │ ├── ideas_all.json │ │ ├── ideas_latest - Copy.json │ │ └── ideas_latest.json │ ├── protective_marking │ │ ├── classifications.json │ │ ├── codewords.json │ │ ├── descriptors.json │ │ └── national_caveats.json │ ├── site_content │ │ └── types.json │ └── tags │ │ └── tags.json │ ├── images │ ├── iStarter Logo greyscale.png │ ├── iStarter Logo long tagline.png │ ├── iStarter Logo long.png │ ├── iStarter Logo tranparent.png │ ├── iStarter Logo.png │ ├── istarter-large.png │ ├── istarter-logo.png │ └── mongoDB-logo-40.png │ ├── index.html │ ├── js │ ├── animations.js │ ├── app.js │ ├── controllers.js │ ├── directives.js │ ├── filters.js │ ├── lib │ │ ├── angular │ │ │ ├── angular-animate.min.js │ │ │ ├── angular-bootstrap-select.js │ │ │ ├── angular-cookies.min.js │ │ │ ├── angular-loader.min.js │ │ │ ├── angular-mocks.js │ │ │ ├── angular-resource.min.js │ │ │ ├── angular-route.min.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular-touch.min.js │ │ │ ├── angular-ui-bootstrap.min.js │ │ │ ├── angular.min.js │ │ │ ├── ng-grid.min.js │ │ │ ├── textAngular.js │ │ │ └── textAngular.min.js │ │ ├── html5shiv.js │ │ ├── jquery │ │ │ ├── jquery-1.10.2.min.js │ │ │ └── jquery.cookie.js │ │ └── respond.min.js │ └── services.js │ └── templates │ ├── docs │ ├── about.html │ └── description-of-service.html │ ├── feedback │ ├── create.html │ ├── read.html │ ├── view-sidebar.html │ └── view.html │ ├── ideas │ ├── create.html │ ├── likes-bar.html │ ├── popups.html │ ├── read.html │ └── view │ │ ├── all.html │ │ ├── grid.html │ │ ├── list.html │ │ ├── sidebar.html │ │ ├── summary.html │ │ └── switch-layout.html │ ├── logged-out.html │ ├── modals │ ├── backing.html │ ├── comment.html │ ├── dislike.html │ ├── edit-comment.html │ └── like.html │ ├── not-found.html │ ├── projects │ ├── create.html │ ├── read.html │ └── view │ │ ├── sidebar.html │ │ ├── summary.html │ │ └── switch-layout.html │ ├── site-content │ ├── create.html │ ├── index.html │ ├── read.html │ └── view.html │ ├── tags.html │ └── top-menu.html ├── readme_images ├── add_a_comment.png ├── create_an_idea.png ├── view_an_idea_details.png └── view_ideas_summary.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/.gitignore -------------------------------------------------------------------------------- /DEPENDENCY_LICENSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/DEPENDENCY_LICENSES.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/README.md -------------------------------------------------------------------------------- /apache_conf/ideaworks_api.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/apache_conf/ideaworks_api.conf -------------------------------------------------------------------------------- /apache_conf/ideaworks_web.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/apache_conf/ideaworks_web.conf -------------------------------------------------------------------------------- /backend/ideaworks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/api/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/api/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/api/tools.py -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/forms.py -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/models.py -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/global.css -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/normalize.css -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/jquery-ui-1.9.2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/css/smoothness/jquery-ui-1.9.2.min.css -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/js/authForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/js/authForm.js -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/js/jquery-ui-1.9.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/js/jquery-ui-1.9.2.min.js -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/js/jquery.cookie.js -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/js/jquery.json.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/js/jquery.json.min.js -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/js/modernizr-2.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/static/auth_addin_app/js/modernizr-2.6.2.min.js -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/static/auth_addin_app/js/registration.js: -------------------------------------------------------------------------------- 1 | /* Removed and renamed - see authForm.js */ -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/templatetags/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/templatetags/auth_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/templatetags/auth_tags.py -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/tests.py -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/urls.py -------------------------------------------------------------------------------- /backend/ideaworks/auth_addin_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/auth_addin_app/views.py -------------------------------------------------------------------------------- /backend/ideaworks/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/config/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/config/dev_rb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/config/dev_rb.py -------------------------------------------------------------------------------- /backend/ideaworks/config_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/ideaworks/config_app/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/config_app/api.py -------------------------------------------------------------------------------- /backend/ideaworks/config_app/blah.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/ideaworks/config_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/config_app/models.py -------------------------------------------------------------------------------- /backend/ideaworks/config_app/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/config_app/serializers.py -------------------------------------------------------------------------------- /backend/ideaworks/config_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/config_app/tests.py -------------------------------------------------------------------------------- /backend/ideaworks/config_app/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /backend/ideaworks/contentapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/ideaworks/contentapp/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/contentapp/api.py -------------------------------------------------------------------------------- /backend/ideaworks/contentapp/api_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/contentapp/api_functions.py -------------------------------------------------------------------------------- /backend/ideaworks/contentapp/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/contentapp/authentication.py -------------------------------------------------------------------------------- /backend/ideaworks/contentapp/authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/contentapp/authorization.py -------------------------------------------------------------------------------- /backend/ideaworks/contentapp/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/contentapp/documents.py -------------------------------------------------------------------------------- /backend/ideaworks/contentapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/contentapp/models.py -------------------------------------------------------------------------------- /backend/ideaworks/contentapp/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/contentapp/serializers.py -------------------------------------------------------------------------------- /backend/ideaworks/contentapp/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/contentapp/tests/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/contentapp/tests/feedback_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/contentapp/tests/feedback_tests.py -------------------------------------------------------------------------------- /backend/ideaworks/contentapp/tests/site_content_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/contentapp/tests/site_content_tests.py -------------------------------------------------------------------------------- /backend/ideaworks/contentapp/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /backend/ideaworks/ideasapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideasapp/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/ideasapp/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideasapp/api.py -------------------------------------------------------------------------------- /backend/ideaworks/ideasapp/api_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideasapp/api_functions.py -------------------------------------------------------------------------------- /backend/ideaworks/ideasapp/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideasapp/authentication.py -------------------------------------------------------------------------------- /backend/ideaworks/ideasapp/authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideasapp/authorization.py -------------------------------------------------------------------------------- /backend/ideaworks/ideasapp/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideasapp/documents.py -------------------------------------------------------------------------------- /backend/ideaworks/ideasapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideasapp/models.py -------------------------------------------------------------------------------- /backend/ideaworks/ideasapp/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideasapp/serializers.py -------------------------------------------------------------------------------- /backend/ideaworks/ideasapp/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideasapp/tests/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/ideasapp/tests/idea_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideasapp/tests/idea_tests.py -------------------------------------------------------------------------------- /backend/ideaworks/ideasapp/tests/resource_nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideasapp/tests/resource_nouns.txt -------------------------------------------------------------------------------- /backend/ideaworks/ideasapp/tests/rss_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideasapp/tests/rss_tests.py -------------------------------------------------------------------------------- /backend/ideaworks/ideasapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideasapp/views.py -------------------------------------------------------------------------------- /backend/ideaworks/ideaworks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideaworks/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/ideaworks/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideaworks/admin.py -------------------------------------------------------------------------------- /backend/ideaworks/ideaworks/auth_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideaworks/auth_settings.py -------------------------------------------------------------------------------- /backend/ideaworks/ideaworks/email_settings_placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideaworks/email_settings_placeholder.py -------------------------------------------------------------------------------- /backend/ideaworks/ideaworks/generic_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideaworks/generic_resources.py -------------------------------------------------------------------------------- /backend/ideaworks/ideaworks/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideaworks/settings.py -------------------------------------------------------------------------------- /backend/ideaworks/ideaworks/tastypie_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideaworks/tastypie_settings.py -------------------------------------------------------------------------------- /backend/ideaworks/ideaworks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideaworks/urls.py -------------------------------------------------------------------------------- /backend/ideaworks/ideaworks/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/ideaworks/wsgi.py -------------------------------------------------------------------------------- /backend/ideaworks/logs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/ideaworks/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/manage.py -------------------------------------------------------------------------------- /backend/ideaworks/projectsapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/projectsapp/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/projectsapp/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/projectsapp/api.py -------------------------------------------------------------------------------- /backend/ideaworks/projectsapp/api_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/projectsapp/api_functions.py -------------------------------------------------------------------------------- /backend/ideaworks/projectsapp/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/projectsapp/authentication.py -------------------------------------------------------------------------------- /backend/ideaworks/projectsapp/authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/projectsapp/authorization.py -------------------------------------------------------------------------------- /backend/ideaworks/projectsapp/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/projectsapp/documents.py -------------------------------------------------------------------------------- /backend/ideaworks/projectsapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/projectsapp/models.py -------------------------------------------------------------------------------- /backend/ideaworks/projectsapp/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/projectsapp/serializers.py -------------------------------------------------------------------------------- /backend/ideaworks/projectsapp/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/projectsapp/tests/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/projectsapp/tests/project_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/projectsapp/tests/project_tests.py -------------------------------------------------------------------------------- /backend/ideaworks/projectsapp/tests/resource_nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/projectsapp/tests/resource_nouns.txt -------------------------------------------------------------------------------- /backend/ideaworks/projectsapp/tests/rss_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/projectsapp/tests/rss_tests.py -------------------------------------------------------------------------------- /backend/ideaworks/projectsapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/projectsapp/views.py -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/api.py -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/data/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/data/_insert_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/data/_insert_data.py -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/data/classifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/data/classifications.json -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/data/codewords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/data/codewords.json -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/data/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/data/descriptors.json -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/data/national_caveats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/data/national_caveats.json -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/documents.py -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/models.py -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/serializers.py -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/tests/__init__.py -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/tests/pm_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/tests/pm_tests.py -------------------------------------------------------------------------------- /backend/ideaworks/protective_marking_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/protective_marking_app/views.py -------------------------------------------------------------------------------- /backend/ideaworks/static/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/global.css -------------------------------------------------------------------------------- /backend/ideaworks/static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/normalize.css -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /backend/ideaworks/static/css/smoothness/jquery-ui-1.9.2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/smoothness/jquery-ui-1.9.2.min.css -------------------------------------------------------------------------------- /backend/ideaworks/static/css/tastytools/api.doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/tastytools/api.doc.css -------------------------------------------------------------------------------- /backend/ideaworks/static/css/tastytools/api.howto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/tastytools/api.howto.css -------------------------------------------------------------------------------- /backend/ideaworks/static/css/tastytools/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/css/tastytools/style.css -------------------------------------------------------------------------------- /backend/ideaworks/static/img/bootstrap/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/img/bootstrap/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /backend/ideaworks/static/img/bootstrap/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/img/bootstrap/glyphicons-halflings.png -------------------------------------------------------------------------------- /backend/ideaworks/static/js/registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/js/registration.js -------------------------------------------------------------------------------- /backend/ideaworks/static/js/tastytools/api.doc.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/js/tastytools/api.doc.coffee -------------------------------------------------------------------------------- /backend/ideaworks/static/js/tastytools/api.doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/static/js/tastytools/api.doc.js -------------------------------------------------------------------------------- /backend/ideaworks/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/base.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/activate.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/activation_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/activation_email.txt -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/activation_email_hmtl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/activation_email_hmtl.txt -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/activation_email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/activation_email_subject.txt -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/description_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/description_snippet.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/homepage_placeholder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/homepage_placeholder.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/login.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/logout.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/need_an_account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/need_an_account.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/password_change_done_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/password_change_done_custom.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/password_change_form_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/password_change_form_custom.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/password_reset_email.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/password_reset_email_as_html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/password_reset_email_as_html.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/password_reset_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/password_reset_subject.txt -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/prototype_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/prototype_snippet.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/registration_auto_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/registration_auto_complete.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/registration_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/registration_complete.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/registration_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/registration_form.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/registration_include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/registration_include.html -------------------------------------------------------------------------------- /backend/ideaworks/templates/registration/terms_of_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/backend/ideaworks/templates/registration/terms_of_service.html -------------------------------------------------------------------------------- /backend/ideaworks/user_db/.placeholder_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies_cache/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/istarter-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/README.md -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/css/bootstrap-select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/css/bootstrap-select.min.css -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/css/bootstrap-sortable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/css/bootstrap-sortable.css -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/css/bootstrap.css -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/css/bootstrap.icon-large.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/css/bootstrap.icon-large.css -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/css/bootstrap.min.css -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/img/glyphicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/img/glyphicons.png -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/js/bootstrap-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/js/bootstrap-select.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/js/bootstrap-sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/js/bootstrap-sortable.js -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/js/bootstrap.js -------------------------------------------------------------------------------- /frontend/istarter-web/bootstrap/232/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/bootstrap/232/js/bootstrap.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/animations.css -------------------------------------------------------------------------------- /frontend/istarter-web/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/app.css -------------------------------------------------------------------------------- /frontend/istarter-web/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /frontend/istarter-web/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /frontend/istarter-web/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/bootstrap.css -------------------------------------------------------------------------------- /frontend/istarter-web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/bootstrap.min.css -------------------------------------------------------------------------------- /frontend/istarter-web/css/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /frontend/istarter-web/css/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /frontend/istarter-web/css/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /frontend/istarter-web/css/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /frontend/istarter-web/css/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /frontend/istarter-web/css/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /frontend/istarter-web/css/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /frontend/istarter-web/css/national_caveats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/national_caveats.json -------------------------------------------------------------------------------- /frontend/istarter-web/css/ng-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/css/ng-grid.css -------------------------------------------------------------------------------- /frontend/istarter-web/data/ideas/idea-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/ideas/idea-1.json -------------------------------------------------------------------------------- /frontend/istarter-web/data/ideas/idea-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/ideas/idea-2.json -------------------------------------------------------------------------------- /frontend/istarter-web/data/ideas/idea-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/ideas/idea-3.json -------------------------------------------------------------------------------- /frontend/istarter-web/data/ideas/idea-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/ideas/idea-4.json -------------------------------------------------------------------------------- /frontend/istarter-web/data/ideas/ideas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/ideas/ideas.json -------------------------------------------------------------------------------- /frontend/istarter-web/data/ideas/ideas_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/ideas/ideas_all.json -------------------------------------------------------------------------------- /frontend/istarter-web/data/ideas/ideas_latest - Copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/ideas/ideas_latest - Copy.json -------------------------------------------------------------------------------- /frontend/istarter-web/data/ideas/ideas_latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/ideas/ideas_latest.json -------------------------------------------------------------------------------- /frontend/istarter-web/data/protective_marking/classifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/protective_marking/classifications.json -------------------------------------------------------------------------------- /frontend/istarter-web/data/protective_marking/codewords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/protective_marking/codewords.json -------------------------------------------------------------------------------- /frontend/istarter-web/data/protective_marking/descriptors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/protective_marking/descriptors.json -------------------------------------------------------------------------------- /frontend/istarter-web/data/protective_marking/national_caveats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/protective_marking/national_caveats.json -------------------------------------------------------------------------------- /frontend/istarter-web/data/site_content/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/site_content/types.json -------------------------------------------------------------------------------- /frontend/istarter-web/data/tags/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/data/tags/tags.json -------------------------------------------------------------------------------- /frontend/istarter-web/images/iStarter Logo greyscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/images/iStarter Logo greyscale.png -------------------------------------------------------------------------------- /frontend/istarter-web/images/iStarter Logo long tagline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/images/iStarter Logo long tagline.png -------------------------------------------------------------------------------- /frontend/istarter-web/images/iStarter Logo long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/images/iStarter Logo long.png -------------------------------------------------------------------------------- /frontend/istarter-web/images/iStarter Logo tranparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/images/iStarter Logo tranparent.png -------------------------------------------------------------------------------- /frontend/istarter-web/images/iStarter Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/images/iStarter Logo.png -------------------------------------------------------------------------------- /frontend/istarter-web/images/istarter-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/images/istarter-large.png -------------------------------------------------------------------------------- /frontend/istarter-web/images/istarter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/images/istarter-logo.png -------------------------------------------------------------------------------- /frontend/istarter-web/images/mongoDB-logo-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/images/mongoDB-logo-40.png -------------------------------------------------------------------------------- /frontend/istarter-web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/index.html -------------------------------------------------------------------------------- /frontend/istarter-web/js/animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/animations.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/app.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/controllers.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/directives.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/filters.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/angular-animate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/angular-animate.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/angular-bootstrap-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/angular-bootstrap-select.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/angular-cookies.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/angular-cookies.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/angular-loader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/angular-loader.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/angular-mocks.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/angular-resource.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/angular-resource.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/angular-route.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/angular-sanitize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/angular-sanitize.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/angular-touch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/angular-touch.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/angular-ui-bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/angular-ui-bootstrap.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/angular.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/ng-grid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/ng-grid.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/textAngular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/textAngular.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/angular/textAngular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/angular/textAngular.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/html5shiv.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/jquery/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/jquery/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/jquery/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/jquery/jquery.cookie.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/lib/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/lib/respond.min.js -------------------------------------------------------------------------------- /frontend/istarter-web/js/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/js/services.js -------------------------------------------------------------------------------- /frontend/istarter-web/templates/docs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/docs/about.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/docs/description-of-service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/docs/description-of-service.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/feedback/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/feedback/create.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/feedback/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/feedback/read.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/feedback/view-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/feedback/view-sidebar.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/feedback/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/feedback/view.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/ideas/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/ideas/create.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/ideas/likes-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/ideas/likes-bar.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/ideas/popups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/ideas/popups.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/ideas/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/ideas/read.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/ideas/view/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/ideas/view/all.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/ideas/view/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/ideas/view/grid.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/ideas/view/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/ideas/view/list.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/ideas/view/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/ideas/view/sidebar.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/ideas/view/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/ideas/view/summary.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/ideas/view/switch-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/ideas/view/switch-layout.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/logged-out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/logged-out.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/modals/backing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/modals/backing.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/modals/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/modals/comment.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/modals/dislike.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/modals/dislike.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/modals/edit-comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/modals/edit-comment.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/modals/like.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/modals/like.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/not-found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/not-found.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/projects/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/projects/create.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/projects/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/projects/read.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/projects/view/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/projects/view/sidebar.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/projects/view/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/projects/view/summary.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/projects/view/switch-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/projects/view/switch-layout.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/site-content/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/site-content/create.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/site-content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/site-content/index.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/site-content/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/site-content/read.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/site-content/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/site-content/view.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/tags.html -------------------------------------------------------------------------------- /frontend/istarter-web/templates/top-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/frontend/istarter-web/templates/top-menu.html -------------------------------------------------------------------------------- /readme_images/add_a_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/readme_images/add_a_comment.png -------------------------------------------------------------------------------- /readme_images/create_an_idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/readme_images/create_an_idea.png -------------------------------------------------------------------------------- /readme_images/view_an_idea_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/readme_images/view_an_idea_details.png -------------------------------------------------------------------------------- /readme_images/view_ideas_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/readme_images/view_ideas_summary.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstl/ideaworks/HEAD/requirements.txt --------------------------------------------------------------------------------