├── .babelrc ├── .codeclimate.yml ├── .dockerignore ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── COPYING.txt ├── Dockerfile ├── Gruntfile.js ├── MANIFEST.in ├── README.md ├── README_BACKBONE.md ├── TERMS.md ├── devops ├── dummy_api │ ├── diff │ │ └── 1005 │ │ │ └── 2012-12121 │ │ │ └── 2011-11111 │ ├── layer │ │ ├── analyses │ │ │ └── 1005 │ │ │ │ ├── 2011-11111 │ │ │ │ └── 2012-12121 │ │ ├── graphics │ │ │ └── 1005 │ │ │ │ ├── 2011-11111 │ │ │ │ └── 2012-12121 │ │ ├── internal-citations │ │ │ └── 1005 │ │ │ │ ├── 2011-11111 │ │ │ │ └── 2012-12121 │ │ ├── interpretations │ │ │ └── 1005 │ │ │ │ ├── 2011-11111 │ │ │ │ └── 2012-12121 │ │ ├── keyterms │ │ │ └── 1005 │ │ │ │ ├── 2011-11111 │ │ │ │ └── 2012-12121 │ │ ├── meta │ │ │ └── 1005 │ │ │ │ ├── 2011-11111 │ │ │ │ └── 2012-12121 │ │ ├── paragraph-markers │ │ │ └── 1005 │ │ │ │ ├── 2011-11111 │ │ │ │ └── 2012-12121 │ │ ├── terms │ │ │ └── 1005 │ │ │ │ ├── 2011-11111 │ │ │ │ └── 2012-12121 │ │ └── toc │ │ │ └── 1005 │ │ │ ├── 2011-11111 │ │ │ └── 2012-12121 │ ├── notice │ │ ├── 2011-11111 │ │ └── 2012-12121 │ └── regulation │ │ └── 1005 │ │ ├── 2011-11111 │ │ └── 2012-12121 ├── integration-tests.sh ├── integration-tests.yml └── local_settings.py ├── docs ├── Makefile ├── conf.py ├── django.rst ├── eregs-views.png ├── fr_notices.rst ├── fr_notices.tests.rst ├── index.rst ├── make.bat ├── notice_comment.management.commands.rst ├── notice_comment.management.rst ├── notice_comment.migrations.rst ├── notice_comment.rst ├── notice_comment.tests.rst ├── regulations.generator.layers.rst ├── regulations.generator.rst ├── regulations.generator.sidebar.rst ├── regulations.management.commands.rst ├── regulations.management.rst ├── regulations.migrations.rst ├── regulations.rst ├── regulations.settings.rst ├── regulations.templatetags.rst ├── regulations.tests.rst ├── regulations.uitests.rst └── regulations.views.rst ├── example-config.json ├── favicon.ico ├── fr_notices ├── README.md ├── __init__.py ├── navigation.py └── tests │ ├── __init__.py │ └── navigation_tests.py ├── frontendbuild.sh ├── manage.py ├── notice_comment ├── __init__.py ├── docket.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── setup_cors.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tasks.py ├── templates │ └── notice_comment │ │ ├── additional-info.html │ │ ├── comment.html │ │ ├── confirm-chrome.html │ │ ├── confirm-fail.html │ │ ├── confirm-invalid.html │ │ ├── confirm-success.html │ │ ├── disclaimer.html │ │ └── review-chrome.html ├── tests │ ├── __init__.py │ ├── docket_tests.py │ ├── tasks_tests.py │ └── views_tests.py ├── urls.py └── views.py ├── npm-shrinkwrap.json ├── package.json ├── regulations ├── __init__.py ├── all_urls.py ├── apps.py ├── context.py ├── generator │ ├── __init__.py │ ├── api_reader.py │ ├── generator.py │ ├── html_builder.py │ ├── label.py │ ├── layers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── defined.py │ │ ├── definitions.py │ │ ├── diff_applier.py │ │ ├── external_citation.py │ │ ├── footnotes.py │ │ ├── formatting.py │ │ ├── graphics.py │ │ ├── internal_citation.py │ │ ├── interpretations.py │ │ ├── key_terms.py │ │ ├── layers_applier.py │ │ ├── location_replace.py │ │ ├── meta.py │ │ ├── paragraph_markers.py │ │ ├── toc_applier.py │ │ ├── tree_builder.py │ │ └── utils.py │ ├── link_flattener.py │ ├── node_types.py │ ├── notices.py │ ├── section_url.py │ ├── sidebar │ │ ├── __init__.py │ │ ├── analyses.py │ │ ├── base.py │ │ ├── diff_help.py │ │ ├── help.py │ │ └── print_part.py │ ├── subterp.py │ ├── title_parsing.py │ ├── toc.py │ └── versions.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── cache_webpages.py │ │ ├── compile_frontend.py │ │ ├── eregs_cache.py │ │ └── fetch_wkhtmltox.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_remove_failedcommentsubmission_files.py │ ├── 0003_delete_failedcommentsubmission.py │ └── __init__.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── dev.py │ └── production.py ├── static │ ├── config │ │ ├── .babelrc │ │ ├── Gruntfile.js │ │ ├── npm-shrinkwrap.json │ │ └── package.json │ └── regulations │ │ ├── css │ │ ├── less2sass.sh │ │ └── scss │ │ │ ├── _base-variables.scss │ │ │ ├── _browser-warning.scss │ │ │ ├── _fonts.scss │ │ │ ├── _helper-classes.scss │ │ │ ├── _layout.scss │ │ │ ├── _mixins.scss │ │ │ ├── _normalize.scss │ │ │ ├── _print.scss │ │ │ ├── _typography.scss │ │ │ ├── _variables.scss │ │ │ ├── comment │ │ │ ├── _comment-confirm.scss │ │ │ ├── _comment-media-queries.scss │ │ │ ├── _comment-read.scss │ │ │ ├── _comment-review.scss │ │ │ ├── _comment-write.scss │ │ │ └── _comment.scss │ │ │ ├── icon_fonts │ │ │ ├── _cf-icons.scss │ │ │ └── _font-awesome.scss │ │ │ ├── main.scss │ │ │ ├── module │ │ │ ├── _about.scss │ │ │ ├── _custom.scss │ │ │ ├── _diffs.scss │ │ │ ├── _error.scss │ │ │ ├── _expandables.scss │ │ │ ├── _extract.scss │ │ │ ├── _forms.scss │ │ │ ├── _interpretations.scss │ │ │ ├── _no-js.scss │ │ │ ├── _note.scss │ │ │ ├── _paragraph-markers.scss │ │ │ ├── _reg-landing.scss │ │ │ ├── _search-results.scss │ │ │ ├── _sxs.scss │ │ │ └── _universal-landing.scss │ │ │ └── partials │ │ │ ├── _drawer-content.scss │ │ │ ├── _drawer.scss │ │ │ ├── _footer.scss │ │ │ ├── _full-footer.scss │ │ │ ├── _header.scss │ │ │ ├── _navigation.scss │ │ │ └── _sidebar.scss │ │ ├── font │ │ ├── Merriweather-Italic.ttf │ │ ├── Merriweather-Regular.ttf │ │ ├── SourceSansPro-Italic.ttf │ │ ├── SourceSansPro-Light.ttf │ │ ├── SourceSansPro-Regular.ttf │ │ ├── SourceSansPro-Semibold.ttf │ │ ├── SourceSansPro-SemiboldItalic.ttf │ │ ├── cf-icons.eot │ │ ├── cf-icons.svg │ │ ├── cf-icons.ttf │ │ ├── cf-icons.woff │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ │ ├── img │ │ ├── accordian-sprite.png │ │ ├── accordian-sprite@2x.png │ │ ├── accordion-sprite.png │ │ ├── bg.gif │ │ ├── blue_spinner.gif │ │ ├── blue_spinner@2x.gif │ │ ├── carrotdown.png │ │ ├── carrotdown@2x.png │ │ ├── carrotup.png │ │ ├── carrotup@2x.png │ │ ├── close-gray.png │ │ ├── close.png │ │ ├── close@2x.png │ │ ├── draft_watermark.png │ │ ├── easy-01.png │ │ ├── exclamation.png │ │ ├── exclamation@2x.png │ │ ├── external-link.png │ │ ├── external-link@2x.png │ │ ├── hamburger.png │ │ ├── hamburger@2x.png │ │ ├── hero.png │ │ ├── hero@2x.png │ │ ├── history.png │ │ ├── history@2x.png │ │ ├── interpretation.png │ │ ├── interpretation@2x.png │ │ ├── left-right-sprite.png │ │ ├── left-right-sprite@2x.png │ │ ├── left.png │ │ ├── left@2x.png │ │ ├── minus.png │ │ ├── minus@2x.png │ │ ├── nav-link.png │ │ ├── nav-link@2x.png │ │ ├── nav-sprite.png │ │ ├── nav-wayfinding.gif │ │ ├── open_close.png │ │ ├── open_close@2x.png │ │ ├── permalink.png │ │ ├── permalink@2x.png │ │ ├── plus.png │ │ ├── plus@2x.png │ │ ├── regtimeline-01.png │ │ ├── regtimeline-02.png │ │ ├── related-01.png │ │ ├── related-02.png │ │ ├── responsive.png │ │ ├── right-arrow.png │ │ ├── right.png │ │ ├── right@2x.png │ │ ├── search.png │ │ ├── search@2x.png │ │ ├── select-blue.png │ │ ├── select-blue@2x.png │ │ ├── select.png │ │ ├── select@2x.png │ │ ├── supplement-sample.png │ │ ├── supplement.png │ │ └── supplement@2x.png │ │ └── js │ │ ├── source │ │ ├── app-init.js │ │ ├── collections │ │ │ └── comment-collection.js │ │ ├── events │ │ │ ├── breakaway-events.js │ │ │ ├── comment-events.js │ │ │ ├── ga-events.js │ │ │ ├── header-events.js │ │ │ ├── main-events.js │ │ │ ├── scroll-stop.js │ │ │ └── sidebar-events.js │ │ ├── helpers.js │ │ ├── models │ │ │ ├── comment-model.js │ │ │ ├── definition-model.js │ │ │ ├── diff-model.js │ │ │ ├── meta-model.js │ │ │ ├── preamble-model.js │ │ │ ├── reg-model.js │ │ │ ├── search-model.js │ │ │ ├── sidebar-model.js │ │ │ └── sxs-model.js │ │ ├── otherlibs │ │ │ ├── jquery.min.js │ │ │ └── modernizr.js │ │ ├── redux │ │ │ ├── locationReduce.js │ │ │ ├── paneReduce.js │ │ │ ├── reducers.js │ │ │ └── storage.js │ │ ├── regulations.js │ │ ├── resources.js │ │ ├── router.js │ │ └── views │ │ │ ├── analytics-handler-view.js │ │ │ ├── breakaway │ │ │ ├── breakaway-view.js │ │ │ └── sxs-view.js │ │ │ ├── comment │ │ │ ├── attachment-view.js │ │ │ ├── comment-confirm-view.js │ │ │ ├── comment-index-view.js │ │ │ ├── comment-review-view.js │ │ │ └── comment-view.js │ │ │ ├── drawer │ │ │ ├── drawer-tabs-view.js │ │ │ ├── drawer-view.js │ │ │ ├── history-view.js │ │ │ ├── search-view.js │ │ │ └── toc-view.js │ │ │ ├── header │ │ │ ├── header-view.js │ │ │ ├── preamble-head-view.js │ │ │ └── sub-head-view.js │ │ │ ├── main │ │ │ ├── child-view.js │ │ │ ├── diff-view.js │ │ │ ├── main-view.js │ │ │ ├── preamble-view.js │ │ │ ├── reg-view.js │ │ │ ├── search-results-view.js │ │ │ ├── section-footer-view.js │ │ │ └── stars-helpers.js │ │ │ └── sidebar │ │ │ ├── definition-view.js │ │ │ ├── definitions.jsx │ │ │ ├── sidebar-view.js │ │ │ └── sxs-list-view.js │ │ └── unittests │ │ ├── runner.html │ │ └── specs │ │ ├── collections │ │ └── comment_collection.js │ │ ├── helpers-spec.js │ │ ├── models │ │ ├── definition-model-spec.js │ │ ├── diff-model-spec.js │ │ ├── meta-model-spec.js │ │ ├── search-model-spec.js │ │ ├── sidebar-model-spec.js │ │ └── sxs-model-spec.js │ │ ├── router-spec.js │ │ └── views │ │ ├── comment-confirm-view-spec.js │ │ ├── comment-view-spec.js │ │ ├── drawer-tabs-spec.js │ │ ├── search-results-view-spec.js │ │ └── stars-helpers-spec.js ├── templates │ └── regulations │ │ ├── about.html │ │ ├── appendix.html │ │ ├── base.html │ │ ├── breakaway-chrome.html │ │ ├── cfr_changes.html │ │ ├── chrome-preamble-search.html │ │ ├── chrome-search.html │ │ ├── chrome.html │ │ ├── dap_analytics.html │ │ ├── diff-chrome.html │ │ ├── favicon.html │ │ ├── footer.html │ │ ├── footnotes.html │ │ ├── full_footer.html │ │ ├── generic_404.html │ │ ├── generic_help.html │ │ ├── generic_landing.html │ │ ├── generic_universal.html │ │ ├── google_analytics.html │ │ ├── interp-tree.html │ │ ├── interpretations.html │ │ ├── landing-chrome.html │ │ ├── layers │ │ ├── code.html │ │ ├── dash.html │ │ ├── defining.html │ │ ├── definition_citation.html │ │ ├── external_citation.html │ │ ├── footnote.html │ │ ├── graphics.html │ │ ├── internal_citation.html │ │ ├── key_term.html │ │ ├── marker_hiding.html │ │ ├── note.html │ │ ├── paragraph_markers.html │ │ ├── subscript.html │ │ ├── superscript.html │ │ ├── sxs-footnotes.html │ │ └── table.html │ │ ├── logo-large.html │ │ ├── logo.html │ │ ├── macros │ │ ├── README.md │ │ ├── external_link.html │ │ └── search_for.html │ │ ├── main-header.html │ │ ├── missing_section_404.html │ │ ├── navigation.html │ │ ├── node.html │ │ ├── org-title.html │ │ ├── paragraph-sxs.html │ │ ├── partial-definition.html │ │ ├── preamble-base.html │ │ ├── preamble-chrome.html │ │ ├── preamble-header.html │ │ ├── preamble-partial.html │ │ ├── regulation-content.html │ │ ├── regulation_text.html │ │ ├── search-results.html │ │ ├── sidebar.html │ │ ├── sidebar │ │ ├── analyses.html │ │ ├── diff_help.html │ │ ├── help.html │ │ ├── help │ │ │ ├── README.md │ │ │ ├── internal.html │ │ │ ├── interp.html │ │ │ └── terms.html │ │ └── print_part.html │ │ ├── slide-down-interp.html │ │ ├── subpart.html │ │ ├── svgs │ │ ├── close-caret.svg │ │ ├── open-caret.svg │ │ ├── search.svg │ │ ├── table-of-contents.svg │ │ └── timeline.svg │ │ ├── toc-interps.html │ │ ├── toc-preamble.html │ │ ├── toc-section.html │ │ ├── toc-subjgrp.html │ │ ├── toc-subpart.html │ │ ├── toc.html │ │ └── tree │ │ ├── README.md │ │ ├── default.html │ │ ├── extract.html │ │ ├── note.html │ │ └── preamble_intro.html ├── templatetags │ ├── __init__.py │ ├── dash_to_underscore.py │ ├── macros.py │ ├── render_nested.py │ ├── to_list.py │ └── underscore_to_dash.py ├── tests │ ├── __init__.py │ ├── api_reader_tests.py │ ├── apps_tests.py │ ├── base_template_test.py │ ├── diff_applier_tests.py │ ├── generator_section_url_tests.py │ ├── generator_subterp_tests.py │ ├── generator_tests.py │ ├── generator_toc_tests.py │ ├── generator_versions_tests.py │ ├── html_builder_test.py │ ├── label_tests.py │ ├── layers_appliers_test.py │ ├── layers_definitions_tests.py │ ├── layers_footnotes_tests.py │ ├── layers_formatting_tests.py │ ├── layers_internal_citation_tests.py │ ├── layers_interpretations_tests.py │ ├── layers_location_replace_tests.py │ ├── layers_paragraph_markers_tests.py │ ├── layers_toc_applier_tests.py │ ├── layers_utils_tests.py │ ├── link_flattener_tests.py │ ├── node_types_tests.py │ ├── notices_tests.py │ ├── partial_view_tests.py │ ├── sidebar_analyses_tests.py │ ├── sidebar_help_tests.py │ ├── sidebar_print_part_tests.py │ ├── templatetags_macros_tests.py │ ├── title_parsing_tests.py │ ├── tree_builder_tests.py │ ├── url_cache_tests.py │ ├── urls_test.py │ ├── views_breakaway_tests.py │ ├── views_chrome_tests.py │ ├── views_diff_tests.py │ ├── views_error_tests.py │ ├── views_landing_tests.py │ ├── views_navigation_tests.py │ ├── views_partial_definitions_tests.py │ ├── views_partial_interp_tests.py │ ├── views_partial_search_tests.py │ ├── views_preamble_tests.py │ ├── views_redirect_tests.py │ ├── views_sidebar_tests.py │ ├── views_sxs_tests.py │ ├── views_universal_tests.py │ └── views_utils_test.py ├── uitests │ ├── __init__.py │ ├── base_test.py │ ├── comment_test.py │ ├── definition_test.py │ ├── diff_test.py │ ├── interp_test.py │ ├── navigation_test.py │ ├── scroll_test.py │ ├── subheader_test.py │ ├── toc_test.py │ └── utils.py ├── url_caches.py ├── urls.py └── views │ ├── __init__.py │ ├── about.py │ ├── chrome.py │ ├── chrome_breakaway.py │ ├── diff.py │ ├── error_handling.py │ ├── navigation.py │ ├── notice_home.py │ ├── partial.py │ ├── partial_interp.py │ ├── partial_search.py │ ├── partial_sxs.py │ ├── preamble.py │ ├── redirect.py │ ├── reg_landing.py │ ├── sidebar.py │ ├── universal_landing.py │ └── utils.py ├── setup.py ├── tox.ini └── unit-tests.sh /.babelrc: -------------------------------------------------------------------------------- 1 | regulations/static/config/.babelrc -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/COPYING.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | regulations/static/config/Gruntfile.js -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/README.md -------------------------------------------------------------------------------- /README_BACKBONE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/README_BACKBONE.md -------------------------------------------------------------------------------- /TERMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/TERMS.md -------------------------------------------------------------------------------- /devops/dummy_api/diff/1005/2012-12121/2011-11111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/diff/1005/2012-12121/2011-11111 -------------------------------------------------------------------------------- /devops/dummy_api/layer/analyses/1005/2011-11111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/analyses/1005/2011-11111 -------------------------------------------------------------------------------- /devops/dummy_api/layer/analyses/1005/2012-12121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/analyses/1005/2012-12121 -------------------------------------------------------------------------------- /devops/dummy_api/layer/graphics/1005/2011-11111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/graphics/1005/2011-11111 -------------------------------------------------------------------------------- /devops/dummy_api/layer/graphics/1005/2012-12121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/graphics/1005/2012-12121 -------------------------------------------------------------------------------- /devops/dummy_api/layer/internal-citations/1005/2011-11111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/internal-citations/1005/2011-11111 -------------------------------------------------------------------------------- /devops/dummy_api/layer/internal-citations/1005/2012-12121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/internal-citations/1005/2012-12121 -------------------------------------------------------------------------------- /devops/dummy_api/layer/interpretations/1005/2011-11111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/interpretations/1005/2011-11111 -------------------------------------------------------------------------------- /devops/dummy_api/layer/interpretations/1005/2012-12121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/interpretations/1005/2012-12121 -------------------------------------------------------------------------------- /devops/dummy_api/layer/keyterms/1005/2011-11111: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /devops/dummy_api/layer/keyterms/1005/2012-12121: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /devops/dummy_api/layer/meta/1005/2011-11111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/meta/1005/2011-11111 -------------------------------------------------------------------------------- /devops/dummy_api/layer/meta/1005/2012-12121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/meta/1005/2012-12121 -------------------------------------------------------------------------------- /devops/dummy_api/layer/paragraph-markers/1005/2011-11111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/paragraph-markers/1005/2011-11111 -------------------------------------------------------------------------------- /devops/dummy_api/layer/paragraph-markers/1005/2012-12121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/paragraph-markers/1005/2012-12121 -------------------------------------------------------------------------------- /devops/dummy_api/layer/terms/1005/2011-11111: -------------------------------------------------------------------------------- 1 | { 2 | "referenced": {} 3 | } -------------------------------------------------------------------------------- /devops/dummy_api/layer/terms/1005/2012-12121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/terms/1005/2012-12121 -------------------------------------------------------------------------------- /devops/dummy_api/layer/toc/1005/2011-11111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/toc/1005/2011-11111 -------------------------------------------------------------------------------- /devops/dummy_api/layer/toc/1005/2012-12121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/layer/toc/1005/2012-12121 -------------------------------------------------------------------------------- /devops/dummy_api/notice/2011-11111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/notice/2011-11111 -------------------------------------------------------------------------------- /devops/dummy_api/notice/2012-12121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/notice/2012-12121 -------------------------------------------------------------------------------- /devops/dummy_api/regulation/1005/2011-11111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/regulation/1005/2011-11111 -------------------------------------------------------------------------------- /devops/dummy_api/regulation/1005/2012-12121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/dummy_api/regulation/1005/2012-12121 -------------------------------------------------------------------------------- /devops/integration-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/integration-tests.sh -------------------------------------------------------------------------------- /devops/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/integration-tests.yml -------------------------------------------------------------------------------- /devops/local_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/devops/local_settings.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/django.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/django.rst -------------------------------------------------------------------------------- /docs/eregs-views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/eregs-views.png -------------------------------------------------------------------------------- /docs/fr_notices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/fr_notices.rst -------------------------------------------------------------------------------- /docs/fr_notices.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/fr_notices.tests.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/notice_comment.management.commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/notice_comment.management.commands.rst -------------------------------------------------------------------------------- /docs/notice_comment.management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/notice_comment.management.rst -------------------------------------------------------------------------------- /docs/notice_comment.migrations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/notice_comment.migrations.rst -------------------------------------------------------------------------------- /docs/notice_comment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/notice_comment.rst -------------------------------------------------------------------------------- /docs/notice_comment.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/notice_comment.tests.rst -------------------------------------------------------------------------------- /docs/regulations.generator.layers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/regulations.generator.layers.rst -------------------------------------------------------------------------------- /docs/regulations.generator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/regulations.generator.rst -------------------------------------------------------------------------------- /docs/regulations.generator.sidebar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/regulations.generator.sidebar.rst -------------------------------------------------------------------------------- /docs/regulations.management.commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/regulations.management.commands.rst -------------------------------------------------------------------------------- /docs/regulations.management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/regulations.management.rst -------------------------------------------------------------------------------- /docs/regulations.migrations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/regulations.migrations.rst -------------------------------------------------------------------------------- /docs/regulations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/regulations.rst -------------------------------------------------------------------------------- /docs/regulations.settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/regulations.settings.rst -------------------------------------------------------------------------------- /docs/regulations.templatetags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/regulations.templatetags.rst -------------------------------------------------------------------------------- /docs/regulations.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/regulations.tests.rst -------------------------------------------------------------------------------- /docs/regulations.uitests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/regulations.uitests.rst -------------------------------------------------------------------------------- /docs/regulations.views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/docs/regulations.views.rst -------------------------------------------------------------------------------- /example-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/example-config.json -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fr_notices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/fr_notices/README.md -------------------------------------------------------------------------------- /fr_notices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fr_notices/navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/fr_notices/navigation.py -------------------------------------------------------------------------------- /fr_notices/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fr_notices/tests/navigation_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/fr_notices/tests/navigation_tests.py -------------------------------------------------------------------------------- /frontendbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/frontendbuild.sh -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/manage.py -------------------------------------------------------------------------------- /notice_comment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notice_comment/docket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/docket.py -------------------------------------------------------------------------------- /notice_comment/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notice_comment/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notice_comment/management/commands/setup_cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/management/commands/setup_cors.py -------------------------------------------------------------------------------- /notice_comment/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/migrations/0001_initial.py -------------------------------------------------------------------------------- /notice_comment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notice_comment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/models.py -------------------------------------------------------------------------------- /notice_comment/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/tasks.py -------------------------------------------------------------------------------- /notice_comment/templates/notice_comment/additional-info.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notice_comment/templates/notice_comment/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/templates/notice_comment/comment.html -------------------------------------------------------------------------------- /notice_comment/templates/notice_comment/confirm-chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/templates/notice_comment/confirm-chrome.html -------------------------------------------------------------------------------- /notice_comment/templates/notice_comment/confirm-fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/templates/notice_comment/confirm-fail.html -------------------------------------------------------------------------------- /notice_comment/templates/notice_comment/confirm-invalid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/templates/notice_comment/confirm-invalid.html -------------------------------------------------------------------------------- /notice_comment/templates/notice_comment/confirm-success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/templates/notice_comment/confirm-success.html -------------------------------------------------------------------------------- /notice_comment/templates/notice_comment/disclaimer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notice_comment/templates/notice_comment/review-chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/templates/notice_comment/review-chrome.html -------------------------------------------------------------------------------- /notice_comment/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notice_comment/tests/docket_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/tests/docket_tests.py -------------------------------------------------------------------------------- /notice_comment/tests/tasks_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/tests/tasks_tests.py -------------------------------------------------------------------------------- /notice_comment/tests/views_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/tests/views_tests.py -------------------------------------------------------------------------------- /notice_comment/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/urls.py -------------------------------------------------------------------------------- /notice_comment/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/notice_comment/views.py -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- 1 | regulations/static/config/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | regulations/static/config/package.json -------------------------------------------------------------------------------- /regulations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regulations/all_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/all_urls.py -------------------------------------------------------------------------------- /regulations/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/apps.py -------------------------------------------------------------------------------- /regulations/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/context.py -------------------------------------------------------------------------------- /regulations/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regulations/generator/api_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/api_reader.py -------------------------------------------------------------------------------- /regulations/generator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/generator.py -------------------------------------------------------------------------------- /regulations/generator/html_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/html_builder.py -------------------------------------------------------------------------------- /regulations/generator/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/label.py -------------------------------------------------------------------------------- /regulations/generator/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regulations/generator/layers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/base.py -------------------------------------------------------------------------------- /regulations/generator/layers/defined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/defined.py -------------------------------------------------------------------------------- /regulations/generator/layers/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/definitions.py -------------------------------------------------------------------------------- /regulations/generator/layers/diff_applier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/diff_applier.py -------------------------------------------------------------------------------- /regulations/generator/layers/external_citation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/external_citation.py -------------------------------------------------------------------------------- /regulations/generator/layers/footnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/footnotes.py -------------------------------------------------------------------------------- /regulations/generator/layers/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/formatting.py -------------------------------------------------------------------------------- /regulations/generator/layers/graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/graphics.py -------------------------------------------------------------------------------- /regulations/generator/layers/internal_citation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/internal_citation.py -------------------------------------------------------------------------------- /regulations/generator/layers/interpretations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/interpretations.py -------------------------------------------------------------------------------- /regulations/generator/layers/key_terms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/key_terms.py -------------------------------------------------------------------------------- /regulations/generator/layers/layers_applier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/layers_applier.py -------------------------------------------------------------------------------- /regulations/generator/layers/location_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/location_replace.py -------------------------------------------------------------------------------- /regulations/generator/layers/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/meta.py -------------------------------------------------------------------------------- /regulations/generator/layers/paragraph_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/paragraph_markers.py -------------------------------------------------------------------------------- /regulations/generator/layers/toc_applier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/toc_applier.py -------------------------------------------------------------------------------- /regulations/generator/layers/tree_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/tree_builder.py -------------------------------------------------------------------------------- /regulations/generator/layers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/layers/utils.py -------------------------------------------------------------------------------- /regulations/generator/link_flattener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/link_flattener.py -------------------------------------------------------------------------------- /regulations/generator/node_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/node_types.py -------------------------------------------------------------------------------- /regulations/generator/notices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/notices.py -------------------------------------------------------------------------------- /regulations/generator/section_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/section_url.py -------------------------------------------------------------------------------- /regulations/generator/sidebar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regulations/generator/sidebar/analyses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/sidebar/analyses.py -------------------------------------------------------------------------------- /regulations/generator/sidebar/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/sidebar/base.py -------------------------------------------------------------------------------- /regulations/generator/sidebar/diff_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/sidebar/diff_help.py -------------------------------------------------------------------------------- /regulations/generator/sidebar/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/sidebar/help.py -------------------------------------------------------------------------------- /regulations/generator/sidebar/print_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/sidebar/print_part.py -------------------------------------------------------------------------------- /regulations/generator/subterp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/subterp.py -------------------------------------------------------------------------------- /regulations/generator/title_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/title_parsing.py -------------------------------------------------------------------------------- /regulations/generator/toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/toc.py -------------------------------------------------------------------------------- /regulations/generator/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/generator/versions.py -------------------------------------------------------------------------------- /regulations/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regulations/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regulations/management/commands/cache_webpages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/management/commands/cache_webpages.py -------------------------------------------------------------------------------- /regulations/management/commands/compile_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/management/commands/compile_frontend.py -------------------------------------------------------------------------------- /regulations/management/commands/eregs_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/management/commands/eregs_cache.py -------------------------------------------------------------------------------- /regulations/management/commands/fetch_wkhtmltox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/management/commands/fetch_wkhtmltox.py -------------------------------------------------------------------------------- /regulations/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/migrations/0001_initial.py -------------------------------------------------------------------------------- /regulations/migrations/0002_remove_failedcommentsubmission_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/migrations/0002_remove_failedcommentsubmission_files.py -------------------------------------------------------------------------------- /regulations/migrations/0003_delete_failedcommentsubmission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/migrations/0003_delete_failedcommentsubmission.py -------------------------------------------------------------------------------- /regulations/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regulations/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regulations/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/settings/base.py -------------------------------------------------------------------------------- /regulations/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/settings/dev.py -------------------------------------------------------------------------------- /regulations/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/settings/production.py -------------------------------------------------------------------------------- /regulations/static/config/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/config/.babelrc -------------------------------------------------------------------------------- /regulations/static/config/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/config/Gruntfile.js -------------------------------------------------------------------------------- /regulations/static/config/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/config/npm-shrinkwrap.json -------------------------------------------------------------------------------- /regulations/static/config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/config/package.json -------------------------------------------------------------------------------- /regulations/static/regulations/css/less2sass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/less2sass.sh -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/_base-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/_base-variables.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/_browser-warning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/_browser-warning.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/_fonts.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/_helper-classes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/_helper-classes.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/_layout.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/_mixins.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/_normalize.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/_print.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/_typography.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/comment/_comment-confirm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/comment/_comment-confirm.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/comment/_comment-media-queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/comment/_comment-media-queries.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/comment/_comment-read.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/comment/_comment-read.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/comment/_comment-review.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/comment/_comment-review.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/comment/_comment-write.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/comment/_comment-write.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/comment/_comment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/comment/_comment.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/icon_fonts/_cf-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/icon_fonts/_cf-icons.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/icon_fonts/_font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/icon_fonts/_font-awesome.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/main.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_about.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_custom.scss: -------------------------------------------------------------------------------- 1 | /* Placeholder for agency-specific modules (i.e. features) */ 2 | -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_diffs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_diffs.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_error.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_expandables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_expandables.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_extract.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_extract.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_forms.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_interpretations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_interpretations.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_no-js.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_no-js.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_note.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_note.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_paragraph-markers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_paragraph-markers.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_reg-landing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_reg-landing.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_search-results.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_search-results.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_sxs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_sxs.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/module/_universal-landing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/module/_universal-landing.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/partials/_drawer-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/partials/_drawer-content.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/partials/_drawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/partials/_drawer.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/partials/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/partials/_footer.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/partials/_full-footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/partials/_full-footer.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/partials/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/partials/_header.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/partials/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/partials/_navigation.scss -------------------------------------------------------------------------------- /regulations/static/regulations/css/scss/partials/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/css/scss/partials/_sidebar.scss -------------------------------------------------------------------------------- /regulations/static/regulations/font/Merriweather-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/Merriweather-Italic.ttf -------------------------------------------------------------------------------- /regulations/static/regulations/font/Merriweather-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/Merriweather-Regular.ttf -------------------------------------------------------------------------------- /regulations/static/regulations/font/SourceSansPro-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/SourceSansPro-Italic.ttf -------------------------------------------------------------------------------- /regulations/static/regulations/font/SourceSansPro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/SourceSansPro-Light.ttf -------------------------------------------------------------------------------- /regulations/static/regulations/font/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /regulations/static/regulations/font/SourceSansPro-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/SourceSansPro-Semibold.ttf -------------------------------------------------------------------------------- /regulations/static/regulations/font/SourceSansPro-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/SourceSansPro-SemiboldItalic.ttf -------------------------------------------------------------------------------- /regulations/static/regulations/font/cf-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/cf-icons.eot -------------------------------------------------------------------------------- /regulations/static/regulations/font/cf-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/cf-icons.svg -------------------------------------------------------------------------------- /regulations/static/regulations/font/cf-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/cf-icons.ttf -------------------------------------------------------------------------------- /regulations/static/regulations/font/cf-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/cf-icons.woff -------------------------------------------------------------------------------- /regulations/static/regulations/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /regulations/static/regulations/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /regulations/static/regulations/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /regulations/static/regulations/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /regulations/static/regulations/font/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/font/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /regulations/static/regulations/img/accordian-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/accordian-sprite.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/accordian-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/accordian-sprite@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/accordion-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/accordion-sprite.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/bg.gif -------------------------------------------------------------------------------- /regulations/static/regulations/img/blue_spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/blue_spinner.gif -------------------------------------------------------------------------------- /regulations/static/regulations/img/blue_spinner@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/blue_spinner@2x.gif -------------------------------------------------------------------------------- /regulations/static/regulations/img/carrotdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/carrotdown.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/carrotdown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/carrotdown@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/carrotup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/carrotup.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/carrotup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/carrotup@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/close-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/close-gray.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/close.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/close@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/draft_watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/draft_watermark.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/easy-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/easy-01.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/exclamation.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/exclamation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/exclamation@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/external-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/external-link.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/external-link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/external-link@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/hamburger.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/hamburger@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/hamburger@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/hero.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/hero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/hero@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/history.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/history@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/history@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/interpretation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/interpretation.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/interpretation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/interpretation@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/left-right-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/left-right-sprite.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/left-right-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/left-right-sprite@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/left.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/left@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/minus.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/minus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/minus@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/nav-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/nav-link.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/nav-link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/nav-link@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/nav-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/nav-sprite.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/nav-wayfinding.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/nav-wayfinding.gif -------------------------------------------------------------------------------- /regulations/static/regulations/img/open_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/open_close.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/open_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/open_close@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/permalink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/permalink.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/permalink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/permalink@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/plus.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/plus@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/regtimeline-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/regtimeline-01.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/regtimeline-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/regtimeline-02.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/related-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/related-01.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/related-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/related-02.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/responsive.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/right-arrow.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/right.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/right@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/search.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/search@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/select-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/select-blue.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/select-blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/select-blue@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/select.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/select@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/supplement-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/supplement-sample.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/supplement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/supplement.png -------------------------------------------------------------------------------- /regulations/static/regulations/img/supplement@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/img/supplement@2x.png -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/app-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/app-init.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/collections/comment-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/collections/comment-collection.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/events/breakaway-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/events/breakaway-events.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/events/comment-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/events/comment-events.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/events/ga-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/events/ga-events.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/events/header-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/events/header-events.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/events/main-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/events/main-events.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/events/scroll-stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/events/scroll-stop.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/events/sidebar-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/events/sidebar-events.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/helpers.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/models/comment-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/models/comment-model.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/models/definition-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/models/definition-model.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/models/diff-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/models/diff-model.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/models/meta-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/models/meta-model.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/models/preamble-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/models/preamble-model.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/models/reg-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/models/reg-model.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/models/search-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/models/search-model.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/models/sidebar-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/models/sidebar-model.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/models/sxs-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/models/sxs-model.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/otherlibs/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/otherlibs/jquery.min.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/otherlibs/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/otherlibs/modernizr.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/redux/locationReduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/redux/locationReduce.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/redux/paneReduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/redux/paneReduce.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/redux/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/redux/reducers.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/redux/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/redux/storage.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/regulations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/regulations.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/resources.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/router.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/analytics-handler-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/analytics-handler-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/breakaway/breakaway-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/breakaway/breakaway-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/breakaway/sxs-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/breakaway/sxs-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/comment/attachment-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/comment/attachment-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/comment/comment-confirm-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/comment/comment-confirm-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/comment/comment-index-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/comment/comment-index-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/comment/comment-review-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/comment/comment-review-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/comment/comment-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/comment/comment-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/drawer/drawer-tabs-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/drawer/drawer-tabs-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/drawer/drawer-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/drawer/drawer-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/drawer/history-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/drawer/history-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/drawer/search-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/drawer/search-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/drawer/toc-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/drawer/toc-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/header/header-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/header/header-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/header/preamble-head-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/header/preamble-head-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/header/sub-head-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/header/sub-head-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/main/child-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/main/child-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/main/diff-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/main/diff-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/main/main-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/main/main-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/main/preamble-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/main/preamble-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/main/reg-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/main/reg-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/main/search-results-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/main/search-results-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/main/section-footer-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/main/section-footer-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/main/stars-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/main/stars-helpers.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/sidebar/definition-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/sidebar/definition-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/sidebar/definitions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/sidebar/definitions.jsx -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/sidebar/sidebar-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/sidebar/sidebar-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/source/views/sidebar/sxs-list-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/source/views/sidebar/sxs-list-view.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/runner.html -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/collections/comment_collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/collections/comment_collection.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/helpers-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/helpers-spec.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/models/definition-model-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/models/definition-model-spec.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/models/diff-model-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/models/diff-model-spec.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/models/meta-model-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/models/meta-model-spec.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/models/search-model-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/models/search-model-spec.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/models/sidebar-model-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/models/sidebar-model-spec.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/models/sxs-model-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/models/sxs-model-spec.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/router-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/router-spec.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/views/comment-confirm-view-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/views/comment-confirm-view-spec.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/views/comment-view-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/views/comment-view-spec.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/views/drawer-tabs-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/views/drawer-tabs-spec.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/views/search-results-view-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/views/search-results-view-spec.js -------------------------------------------------------------------------------- /regulations/static/regulations/js/unittests/specs/views/stars-helpers-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/static/regulations/js/unittests/specs/views/stars-helpers-spec.js -------------------------------------------------------------------------------- /regulations/templates/regulations/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/about.html -------------------------------------------------------------------------------- /regulations/templates/regulations/appendix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/appendix.html -------------------------------------------------------------------------------- /regulations/templates/regulations/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/base.html -------------------------------------------------------------------------------- /regulations/templates/regulations/breakaway-chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/breakaway-chrome.html -------------------------------------------------------------------------------- /regulations/templates/regulations/cfr_changes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/cfr_changes.html -------------------------------------------------------------------------------- /regulations/templates/regulations/chrome-preamble-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/chrome-preamble-search.html -------------------------------------------------------------------------------- /regulations/templates/regulations/chrome-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/chrome-search.html -------------------------------------------------------------------------------- /regulations/templates/regulations/chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/chrome.html -------------------------------------------------------------------------------- /regulations/templates/regulations/dap_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/dap_analytics.html -------------------------------------------------------------------------------- /regulations/templates/regulations/diff-chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/diff-chrome.html -------------------------------------------------------------------------------- /regulations/templates/regulations/favicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/favicon.html -------------------------------------------------------------------------------- /regulations/templates/regulations/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/footer.html -------------------------------------------------------------------------------- /regulations/templates/regulations/footnotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/footnotes.html -------------------------------------------------------------------------------- /regulations/templates/regulations/full_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/full_footer.html -------------------------------------------------------------------------------- /regulations/templates/regulations/generic_404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/generic_404.html -------------------------------------------------------------------------------- /regulations/templates/regulations/generic_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/generic_help.html -------------------------------------------------------------------------------- /regulations/templates/regulations/generic_landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/generic_landing.html -------------------------------------------------------------------------------- /regulations/templates/regulations/generic_universal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/generic_universal.html -------------------------------------------------------------------------------- /regulations/templates/regulations/google_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/google_analytics.html -------------------------------------------------------------------------------- /regulations/templates/regulations/interp-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/interp-tree.html -------------------------------------------------------------------------------- /regulations/templates/regulations/interpretations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/interpretations.html -------------------------------------------------------------------------------- /regulations/templates/regulations/landing-chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/landing-chrome.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/code.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/dash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/dash.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/defining.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/defining.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/definition_citation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/definition_citation.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/external_citation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/external_citation.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/footnote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/footnote.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/graphics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/graphics.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/internal_citation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/internal_citation.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/key_term.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/key_term.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/marker_hiding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/marker_hiding.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/note.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/paragraph_markers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/paragraph_markers.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/subscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/subscript.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/superscript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/superscript.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/sxs-footnotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/sxs-footnotes.html -------------------------------------------------------------------------------- /regulations/templates/regulations/layers/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/layers/table.html -------------------------------------------------------------------------------- /regulations/templates/regulations/logo-large.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/logo-large.html -------------------------------------------------------------------------------- /regulations/templates/regulations/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/logo.html -------------------------------------------------------------------------------- /regulations/templates/regulations/macros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/macros/README.md -------------------------------------------------------------------------------- /regulations/templates/regulations/macros/external_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/macros/external_link.html -------------------------------------------------------------------------------- /regulations/templates/regulations/macros/search_for.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/macros/search_for.html -------------------------------------------------------------------------------- /regulations/templates/regulations/main-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/main-header.html -------------------------------------------------------------------------------- /regulations/templates/regulations/missing_section_404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/missing_section_404.html -------------------------------------------------------------------------------- /regulations/templates/regulations/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/navigation.html -------------------------------------------------------------------------------- /regulations/templates/regulations/node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/node.html -------------------------------------------------------------------------------- /regulations/templates/regulations/org-title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/org-title.html -------------------------------------------------------------------------------- /regulations/templates/regulations/paragraph-sxs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/paragraph-sxs.html -------------------------------------------------------------------------------- /regulations/templates/regulations/partial-definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/partial-definition.html -------------------------------------------------------------------------------- /regulations/templates/regulations/preamble-base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/preamble-base.html -------------------------------------------------------------------------------- /regulations/templates/regulations/preamble-chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/preamble-chrome.html -------------------------------------------------------------------------------- /regulations/templates/regulations/preamble-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/preamble-header.html -------------------------------------------------------------------------------- /regulations/templates/regulations/preamble-partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/preamble-partial.html -------------------------------------------------------------------------------- /regulations/templates/regulations/regulation-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/regulation-content.html -------------------------------------------------------------------------------- /regulations/templates/regulations/regulation_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/regulation_text.html -------------------------------------------------------------------------------- /regulations/templates/regulations/search-results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/search-results.html -------------------------------------------------------------------------------- /regulations/templates/regulations/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/sidebar.html -------------------------------------------------------------------------------- /regulations/templates/regulations/sidebar/analyses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/sidebar/analyses.html -------------------------------------------------------------------------------- /regulations/templates/regulations/sidebar/diff_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/sidebar/diff_help.html -------------------------------------------------------------------------------- /regulations/templates/regulations/sidebar/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/sidebar/help.html -------------------------------------------------------------------------------- /regulations/templates/regulations/sidebar/help/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/sidebar/help/README.md -------------------------------------------------------------------------------- /regulations/templates/regulations/sidebar/help/internal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/sidebar/help/internal.html -------------------------------------------------------------------------------- /regulations/templates/regulations/sidebar/help/interp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/sidebar/help/interp.html -------------------------------------------------------------------------------- /regulations/templates/regulations/sidebar/help/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/sidebar/help/terms.html -------------------------------------------------------------------------------- /regulations/templates/regulations/sidebar/print_part.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/sidebar/print_part.html -------------------------------------------------------------------------------- /regulations/templates/regulations/slide-down-interp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/slide-down-interp.html -------------------------------------------------------------------------------- /regulations/templates/regulations/subpart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/subpart.html -------------------------------------------------------------------------------- /regulations/templates/regulations/svgs/close-caret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/svgs/close-caret.svg -------------------------------------------------------------------------------- /regulations/templates/regulations/svgs/open-caret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/svgs/open-caret.svg -------------------------------------------------------------------------------- /regulations/templates/regulations/svgs/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/svgs/search.svg -------------------------------------------------------------------------------- /regulations/templates/regulations/svgs/table-of-contents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/svgs/table-of-contents.svg -------------------------------------------------------------------------------- /regulations/templates/regulations/svgs/timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/svgs/timeline.svg -------------------------------------------------------------------------------- /regulations/templates/regulations/toc-interps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/toc-interps.html -------------------------------------------------------------------------------- /regulations/templates/regulations/toc-preamble.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/toc-preamble.html -------------------------------------------------------------------------------- /regulations/templates/regulations/toc-section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/toc-section.html -------------------------------------------------------------------------------- /regulations/templates/regulations/toc-subjgrp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/toc-subjgrp.html -------------------------------------------------------------------------------- /regulations/templates/regulations/toc-subpart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/toc-subpart.html -------------------------------------------------------------------------------- /regulations/templates/regulations/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/toc.html -------------------------------------------------------------------------------- /regulations/templates/regulations/tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/tree/README.md -------------------------------------------------------------------------------- /regulations/templates/regulations/tree/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/tree/default.html -------------------------------------------------------------------------------- /regulations/templates/regulations/tree/extract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/tree/extract.html -------------------------------------------------------------------------------- /regulations/templates/regulations/tree/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/tree/note.html -------------------------------------------------------------------------------- /regulations/templates/regulations/tree/preamble_intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templates/regulations/tree/preamble_intro.html -------------------------------------------------------------------------------- /regulations/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regulations/templatetags/dash_to_underscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templatetags/dash_to_underscore.py -------------------------------------------------------------------------------- /regulations/templatetags/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templatetags/macros.py -------------------------------------------------------------------------------- /regulations/templatetags/render_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templatetags/render_nested.py -------------------------------------------------------------------------------- /regulations/templatetags/to_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templatetags/to_list.py -------------------------------------------------------------------------------- /regulations/templatetags/underscore_to_dash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/templatetags/underscore_to_dash.py -------------------------------------------------------------------------------- /regulations/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regulations/tests/api_reader_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/api_reader_tests.py -------------------------------------------------------------------------------- /regulations/tests/apps_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/apps_tests.py -------------------------------------------------------------------------------- /regulations/tests/base_template_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/base_template_test.py -------------------------------------------------------------------------------- /regulations/tests/diff_applier_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/diff_applier_tests.py -------------------------------------------------------------------------------- /regulations/tests/generator_section_url_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/generator_section_url_tests.py -------------------------------------------------------------------------------- /regulations/tests/generator_subterp_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/generator_subterp_tests.py -------------------------------------------------------------------------------- /regulations/tests/generator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/generator_tests.py -------------------------------------------------------------------------------- /regulations/tests/generator_toc_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/generator_toc_tests.py -------------------------------------------------------------------------------- /regulations/tests/generator_versions_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/generator_versions_tests.py -------------------------------------------------------------------------------- /regulations/tests/html_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/html_builder_test.py -------------------------------------------------------------------------------- /regulations/tests/label_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/label_tests.py -------------------------------------------------------------------------------- /regulations/tests/layers_appliers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/layers_appliers_test.py -------------------------------------------------------------------------------- /regulations/tests/layers_definitions_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/layers_definitions_tests.py -------------------------------------------------------------------------------- /regulations/tests/layers_footnotes_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/layers_footnotes_tests.py -------------------------------------------------------------------------------- /regulations/tests/layers_formatting_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/layers_formatting_tests.py -------------------------------------------------------------------------------- /regulations/tests/layers_internal_citation_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/layers_internal_citation_tests.py -------------------------------------------------------------------------------- /regulations/tests/layers_interpretations_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/layers_interpretations_tests.py -------------------------------------------------------------------------------- /regulations/tests/layers_location_replace_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/layers_location_replace_tests.py -------------------------------------------------------------------------------- /regulations/tests/layers_paragraph_markers_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/layers_paragraph_markers_tests.py -------------------------------------------------------------------------------- /regulations/tests/layers_toc_applier_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/layers_toc_applier_tests.py -------------------------------------------------------------------------------- /regulations/tests/layers_utils_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/layers_utils_tests.py -------------------------------------------------------------------------------- /regulations/tests/link_flattener_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/link_flattener_tests.py -------------------------------------------------------------------------------- /regulations/tests/node_types_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/node_types_tests.py -------------------------------------------------------------------------------- /regulations/tests/notices_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/notices_tests.py -------------------------------------------------------------------------------- /regulations/tests/partial_view_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/partial_view_tests.py -------------------------------------------------------------------------------- /regulations/tests/sidebar_analyses_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/sidebar_analyses_tests.py -------------------------------------------------------------------------------- /regulations/tests/sidebar_help_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/sidebar_help_tests.py -------------------------------------------------------------------------------- /regulations/tests/sidebar_print_part_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/sidebar_print_part_tests.py -------------------------------------------------------------------------------- /regulations/tests/templatetags_macros_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/templatetags_macros_tests.py -------------------------------------------------------------------------------- /regulations/tests/title_parsing_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/title_parsing_tests.py -------------------------------------------------------------------------------- /regulations/tests/tree_builder_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/tree_builder_tests.py -------------------------------------------------------------------------------- /regulations/tests/url_cache_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/url_cache_tests.py -------------------------------------------------------------------------------- /regulations/tests/urls_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/urls_test.py -------------------------------------------------------------------------------- /regulations/tests/views_breakaway_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_breakaway_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_chrome_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_chrome_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_diff_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_diff_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_error_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_error_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_landing_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_landing_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_navigation_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_navigation_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_partial_definitions_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_partial_definitions_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_partial_interp_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_partial_interp_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_partial_search_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_partial_search_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_preamble_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_preamble_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_redirect_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_redirect_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_sidebar_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_sidebar_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_sxs_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_sxs_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_universal_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_universal_tests.py -------------------------------------------------------------------------------- /regulations/tests/views_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/tests/views_utils_test.py -------------------------------------------------------------------------------- /regulations/uitests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regulations/uitests/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/uitests/base_test.py -------------------------------------------------------------------------------- /regulations/uitests/comment_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/uitests/comment_test.py -------------------------------------------------------------------------------- /regulations/uitests/definition_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/uitests/definition_test.py -------------------------------------------------------------------------------- /regulations/uitests/diff_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/uitests/diff_test.py -------------------------------------------------------------------------------- /regulations/uitests/interp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/uitests/interp_test.py -------------------------------------------------------------------------------- /regulations/uitests/navigation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/uitests/navigation_test.py -------------------------------------------------------------------------------- /regulations/uitests/scroll_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/uitests/scroll_test.py -------------------------------------------------------------------------------- /regulations/uitests/subheader_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/uitests/subheader_test.py -------------------------------------------------------------------------------- /regulations/uitests/toc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/uitests/toc_test.py -------------------------------------------------------------------------------- /regulations/uitests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/uitests/utils.py -------------------------------------------------------------------------------- /regulations/url_caches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/url_caches.py -------------------------------------------------------------------------------- /regulations/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/urls.py -------------------------------------------------------------------------------- /regulations/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regulations/views/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/about.py -------------------------------------------------------------------------------- /regulations/views/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/chrome.py -------------------------------------------------------------------------------- /regulations/views/chrome_breakaway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/chrome_breakaway.py -------------------------------------------------------------------------------- /regulations/views/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/diff.py -------------------------------------------------------------------------------- /regulations/views/error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/error_handling.py -------------------------------------------------------------------------------- /regulations/views/navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/navigation.py -------------------------------------------------------------------------------- /regulations/views/notice_home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/notice_home.py -------------------------------------------------------------------------------- /regulations/views/partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/partial.py -------------------------------------------------------------------------------- /regulations/views/partial_interp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/partial_interp.py -------------------------------------------------------------------------------- /regulations/views/partial_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/partial_search.py -------------------------------------------------------------------------------- /regulations/views/partial_sxs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/partial_sxs.py -------------------------------------------------------------------------------- /regulations/views/preamble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/preamble.py -------------------------------------------------------------------------------- /regulations/views/redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/redirect.py -------------------------------------------------------------------------------- /regulations/views/reg_landing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/reg_landing.py -------------------------------------------------------------------------------- /regulations/views/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/sidebar.py -------------------------------------------------------------------------------- /regulations/views/universal_landing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/universal_landing.py -------------------------------------------------------------------------------- /regulations/views/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/regulations/views/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/tox.ini -------------------------------------------------------------------------------- /unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eregs/regulations-site/HEAD/unit-tests.sh --------------------------------------------------------------------------------