├── .editorconfig ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── collect-garbage.yml │ ├── deploy-experimental.yml │ ├── deploy-to-env.yml │ ├── deploy.yml │ ├── lint-and-test-parsers.yml │ ├── lint-js-ts.yml │ ├── lint-python.yml │ ├── remove-experimental.yml │ ├── run-gitleaks.yaml │ ├── schedule-jira-sync.yml │ ├── snyk-test.yml │ ├── test-django.yml │ ├── test-javascript.yml │ ├── test-text-extractor.yml │ ├── update-cdk-bootstrap.yml │ └── update-code-json.yml ├── .gitignore ├── .gitleaks.toml ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECRETSCANNING.md ├── SECURITY.md ├── SnykReadMe.md ├── cdk-eregs ├── .gitignore ├── .npmignore ├── README.md ├── bin │ ├── docker-lambdas.ts │ ├── static-assets.ts │ ├── text-extractor.ts │ └── zip-lambdas.ts ├── bootstrap │ ├── .gitignore │ ├── README.md │ ├── requirements.txt │ ├── roles.json │ └── update_template.py ├── cdk.json ├── config │ ├── environment-config.ts │ ├── environments.ts │ └── stage-config.ts ├── lib │ ├── aspects │ │ ├── iam-path.ts │ │ ├── iam-permissions-boundary-aspect.ts │ │ └── removal-policy-aspect.ts │ ├── constructs │ │ ├── api-construct.ts │ │ ├── database-construct.ts │ │ └── waf-construct.ts │ └── stacks │ │ ├── api-stack.ts │ │ ├── ecfr-parser-stack.ts │ │ ├── fr-parser-stack.ts │ │ ├── maintainance-stack.ts │ │ ├── parser-launcher-stack.ts │ │ ├── redirect-stack.ts │ │ ├── static-assets-stack.ts │ │ └── text-extract-stack.ts ├── package-lock.json ├── package.json ├── tsconfig.json └── utils │ └── parameter-store.ts ├── code.json ├── eslint.config.mjs ├── package.json ├── scripts ├── backup_db.sh ├── delete_resources.py ├── delete_stacks.py ├── restore_local_db.sh └── restore_remote_db.sh └── solution ├── .flake8 ├── Dockerfile.template ├── LINTING.md ├── Makefile ├── _templates └── scripts │ └── delete_orphandbs.sql ├── backend ├── authorizer.Dockerfile ├── authorizer.py ├── aws_resources │ └── waf.yml ├── cmcs_regulations │ ├── __init__.py │ ├── asgi.py │ ├── context_processors.py │ ├── settings │ │ ├── __init__.py │ │ ├── base.py │ │ ├── deploy.py │ │ ├── euasettings.py │ │ ├── local.py │ │ └── test_settings.py │ ├── templates │ │ └── admin │ │ │ ├── base_site.html │ │ │ └── login.html │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ ├── api_exceptions.py │ │ └── pagination.py │ └── wsgi.py ├── common │ ├── admin.py │ ├── api.py │ ├── auth.py │ ├── constants.py │ ├── fields.py │ ├── filters.py │ ├── functions.py │ ├── mixins.py │ ├── patterns.py │ ├── test_functions │ │ └── common_functions.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_fields.py │ │ └── test_filters.py │ └── utils.py ├── content_search │ ├── __init__.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_to_0012_squashed.py │ │ ├── 0002_alter_contentindex_options.py │ │ ├── 0003_copy_regtext_indices.py │ │ ├── 0004_copy_synonyms.py │ │ ├── 0005_contentindex_date.py │ │ ├── 0006_populate_date_field.py │ │ ├── 0007_enable_pgvector.py │ │ ├── 0008_contentindex_embedding.py │ │ ├── 0009_indexedregulationtext_subpart_id_and_more.py │ │ ├── 0010_remove_empty_subpart_info.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── disabled_test_post.py │ │ ├── fixtures │ │ │ ├── fr_docs.json │ │ │ ├── internal_files.json │ │ │ ├── part.json │ │ │ └── public_links.json │ │ ├── test_post_save.py │ │ └── test_search.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── createdb.Dockerfile ├── createdb.py ├── createsu.Dockerfile ├── createsu.py ├── dropdb.Dockerfile ├── dropdb.py ├── empty_bucket.Dockerfile ├── empty_bucket.py ├── handler.py ├── maintenance_lambda.py ├── manage.py ├── migrate.Dockerfile ├── migrate.py ├── nginx │ └── config │ │ └── static-assets │ │ └── nginx_fonts.conf ├── pyproject.toml ├── redirect_lambda.py ├── regcore │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── context_processors.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_parserconfiguration_titleconfiguration.py │ │ ├── 0003_auto_20220307_1510.py │ │ ├── 0004_part_depth.py │ │ ├── 0005_abstractparserresult_ecfrparserresult.py │ │ ├── 0006_auto_20220826_1708.py │ │ ├── 0007_part_depth_stack.py │ │ ├── 0008_auto_20220912_1859.py │ │ ├── 0009_auto_20220913_1138.py │ │ ├── 0010_auto_20220913_1805.py │ │ ├── 0011_parserconfiguration_retries.py │ │ ├── 0012_auto_20220923_1156.py │ │ ├── 0013_alter_part_options.py │ │ ├── 0014_auto_20230322_2234.py │ │ └── __init__.py │ ├── models.py │ ├── search │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_remove_searchindex_search_vector.py │ │ │ ├── 0003_synonym.py │ │ │ ├── 0004_searchindexv2.py │ │ │ ├── 0005_searchiindexv2vector.py │ │ │ ├── 0006_delete_searchindex.py │ │ │ ├── 0007_populate_index.py │ │ │ ├── 0008_alter_searchquery.py │ │ │ ├── 0009_alter_synonym_synonyms.py │ │ │ └── __init__.py │ │ ├── models.py │ │ └── readme.md │ ├── serializers │ │ ├── contents.py │ │ ├── history.py │ │ ├── metadata.py │ │ ├── parser.py │ │ └── toc.py │ ├── templates │ │ └── response.html │ ├── tests │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── depth.json │ │ │ └── part.json │ │ ├── test_api_view.py │ │ ├── test_models.py │ │ └── test_views.py │ ├── urls.py │ └── views │ │ ├── contents.py │ │ ├── history.py │ │ ├── metadata.py │ │ ├── mixins.py │ │ ├── parser.py │ │ ├── part.py │ │ ├── title.py │ │ └── utils.py ├── regsite.Dockerfile ├── regulations │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── context_processors.py │ ├── converters.py │ ├── logout.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_rename_resources.py │ │ ├── 0003_siteconfiguration.py │ │ ├── 0004_statutelinkconverter.py │ │ ├── 0005_auto_20230523_1533.py │ │ ├── 0006_statutelinkconverter_statute_title_new.py │ │ ├── 0007_statutelinkconverter_usc_sort.py │ │ ├── 0008_statutelinkconfiguration.py │ │ ├── 0009_auto_20230714_1506.py │ │ ├── 0010_auto_20230719_1157.py │ │ ├── 0011_create_statutelinkconfig.py │ │ ├── 0012_auto_20230725_1630.py │ │ ├── 0013_regulationlinkconfiguration.py │ │ ├── 0014_auto_20230912_1211.py │ │ ├── 0015_customuser.py │ │ ├── 0016_delete_customuser.py │ │ ├── 0017_alter_siteconfiguration_ssa_gov_compilation_date_and_more.py │ │ ├── 0018_siteconfiguration_flash_banner_text_and_more.py │ │ ├── 0019_siteconfiguration_default_title.py │ │ ├── 0020_statutelinkconverter_section_sort.py │ │ └── __init__.py │ ├── models.py │ ├── sitemap.py │ ├── templates │ │ ├── 400.html │ │ ├── 404.html │ │ ├── 500.html │ │ ├── admin │ │ │ ├── conversions_imported.html │ │ │ ├── import_conversions.html │ │ │ ├── import_conversions_button.html │ │ │ └── registration │ │ │ │ └── logged_out.html │ │ ├── error_base.html │ │ ├── regulations │ │ │ ├── about.html │ │ │ ├── base.html │ │ │ ├── get_account_access.html │ │ │ ├── homepage.html │ │ │ ├── homepage │ │ │ │ ├── child.html │ │ │ │ ├── part.html │ │ │ │ └── subchapter.html │ │ │ ├── login.html │ │ │ ├── manual.html │ │ │ ├── obbba.html │ │ │ ├── partials │ │ │ │ ├── expanded_toc │ │ │ │ │ ├── appendix.html │ │ │ │ │ ├── orphan_section.html │ │ │ │ │ ├── section.html │ │ │ │ │ ├── subject_group.html │ │ │ │ │ └── subpart.html │ │ │ │ ├── favicon.html │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── jump_to.html │ │ │ │ ├── landing_default.html │ │ │ │ ├── login_sidebar_banner.html │ │ │ │ ├── logout_form.html │ │ │ │ ├── navigation.html │ │ │ │ ├── node_types │ │ │ │ │ ├── APPENDIX.html │ │ │ │ │ ├── Citation.html │ │ │ │ │ ├── Division.html │ │ │ │ │ ├── EffectiveDateNote.html │ │ │ │ │ ├── FlushParagraph.html │ │ │ │ │ ├── FootNote.html │ │ │ │ │ ├── Heading.html │ │ │ │ │ ├── Image.html │ │ │ │ │ ├── PART.html │ │ │ │ │ ├── Paragraph.html │ │ │ │ │ ├── SECTION.html │ │ │ │ │ ├── SUBJGRP.html │ │ │ │ │ ├── SUBPART.html │ │ │ │ │ ├── Source.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── node.html │ │ │ │ │ └── orphan.html │ │ │ │ ├── recent_changes.html │ │ │ │ ├── sidebar_left │ │ │ │ │ ├── base.html │ │ │ │ │ ├── subpart.html │ │ │ │ │ ├── subpart │ │ │ │ │ │ ├── appendix.html │ │ │ │ │ │ ├── orphan_appendix.html │ │ │ │ │ │ ├── orphan_section.html │ │ │ │ │ │ ├── section.html │ │ │ │ │ │ ├── sub_toc.html │ │ │ │ │ │ ├── subgrp_toc.html │ │ │ │ │ │ ├── subjgrp.html │ │ │ │ │ │ └── subpart.html │ │ │ │ │ └── title.html │ │ │ │ ├── sidebar_right.html │ │ │ │ └── view-and-compare.html │ │ │ ├── reader.html │ │ │ ├── regulation_landing.html │ │ │ ├── search.html │ │ │ ├── spa_base.html │ │ │ ├── statute.html │ │ │ ├── subjects.html │ │ │ └── supplemental_content.html │ │ └── robots.txt │ ├── templatetags │ │ ├── __init__.py │ │ ├── citation.py │ │ ├── get_item.py │ │ ├── get_subject_id.py │ │ ├── link_reg_refs.py │ │ ├── link_statutes.py │ │ ├── paragraphs.py │ │ ├── render_nested.py │ │ ├── site_statistics.py │ │ ├── string_formatters.py │ │ ├── url_formatters.py │ │ └── version_date.py │ ├── tests │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── acts_viewset_golden.json │ │ │ ├── part_of_this_link_tests.json │ │ │ ├── redirect_tests.json │ │ │ ├── reg_ref_config_tests.json │ │ │ ├── reg_ref_link_tests.json │ │ │ ├── sample_part.json │ │ │ ├── section_label_ref_link_tests.json │ │ │ ├── section_link_tests.json │ │ │ ├── statute_config_tests.json │ │ │ ├── statute_link_api_test.json │ │ │ ├── statute_link_data.xml │ │ │ ├── statute_link_data_aca.xml │ │ │ ├── statute_link_golden.json │ │ │ └── statute_link_golden_aca.json │ │ ├── test_admin.py │ │ ├── test_link_statutes.py │ │ ├── test_reader.py │ │ ├── test_reg_ref_links.py │ │ ├── test_site_configuration.py │ │ ├── test_statute_links.py │ │ ├── test_subjects_view.py │ │ └── test_urls.py │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ └── link_statutes.py │ └── views │ │ ├── __init__.py │ │ ├── about.py │ │ ├── errors.py │ │ ├── get_account_access.py │ │ ├── goto.py │ │ ├── homepage.py │ │ ├── login.py │ │ ├── manual.py │ │ ├── mixins.py │ │ ├── obbba.py │ │ ├── policy_repository.py │ │ ├── reader.py │ │ ├── redirect.py │ │ ├── regulation_landing.py │ │ ├── resources.py │ │ ├── search.py │ │ ├── statute.py │ │ ├── statutes.py │ │ ├── subjects.py │ │ └── utils.py ├── requirements.txt ├── resources │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── categories.py │ │ ├── citations.py │ │ ├── config.py │ │ ├── groups.py │ │ ├── internal_resources.py │ │ ├── public_resources.py │ │ ├── resources.py │ │ ├── subjects.py │ │ └── widgets.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_to_0052_squashed.py │ │ ├── 0002_populate_config.py │ │ ├── 0003_remove_internalcategory_name_and_more.py │ │ ├── 0004_resourcesconfiguration_auto_extract_and_more.py │ │ ├── 0005_reset_extract_url.py │ │ ├── 0006_recompute_groups.py │ │ ├── 0007_create_citation_sort_field.py │ │ ├── 0008_update_ref_field_sort.py │ │ ├── 0009_resourcesconfiguration_robots_txt_allow_list.py │ │ ├── 0010_resourcesconfiguration_state_medicaid_manual_category.py │ │ ├── 0011_resourcesconfiguration_extraction_delay_time.py │ │ ├── 0012_resourcesconfiguration_default_user_agent_override_and_more.py │ │ ├── 0013_remove_internalfile_file_type_and_more.py │ │ └── __init__.py │ ├── models │ │ ├── __init__.py │ │ ├── categories.py │ │ ├── citations.py │ │ ├── config.py │ │ ├── groups.py │ │ ├── internal_resources.py │ │ ├── public_resources.py │ │ ├── resources.py │ │ └── subjects.py │ ├── serializers │ │ ├── __init__.py │ │ ├── categories.py │ │ ├── citations.py │ │ ├── groups.py │ │ ├── polymorphic.py │ │ ├── resources.py │ │ ├── subjects.py │ │ └── text_extraction.py │ ├── templates │ │ └── input_filter.html │ ├── tests │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── gov_info_failure.json │ │ │ ├── gov_info_success.json │ │ │ ├── gov_info_zero.json │ │ │ ├── test_resource.csv │ │ │ ├── url_snippet_dict.json │ │ │ └── url_snippet_dict_page.json │ │ ├── test_admin_actions.py │ │ ├── test_fr_link_admin.py │ │ ├── test_models.py │ │ ├── test_resource_grouping.py │ │ ├── test_resources_endpoints.py │ │ ├── test_robots_txt.py │ │ └── test_subjects_endpoint.py │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ ├── aws_utils.py │ │ └── general_purpose.py │ └── views │ │ ├── __init__.py │ │ ├── categories.py │ │ ├── citations.py │ │ ├── groups.py │ │ ├── redirects.py │ │ ├── resources.py │ │ ├── subjects.py │ │ └── text_extraction.py ├── secret_manager.py ├── serverless_functions │ ├── dev_functions.yml │ ├── experimental_functions.yml │ ├── prod_functions.yml │ ├── readme.md │ └── val_functions.yml └── user │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_profile_department.py │ ├── 0003_create_profiles_for_existing_users.py │ ├── 0004_departmentdivision_departmentgroup_and_more.py │ ├── 0005_populate_division_and_group.py │ └── __init__.py │ ├── models.py │ ├── tests │ ├── conftest.py │ └── test_user.py │ └── views.py ├── docker-compose.e2e.yml ├── docker-compose.fr-parser.yml ├── docker-compose.parser.yml ├── docker-compose.yml ├── lambda-proxy ├── lambda_proxy.py ├── pyproject.toml ├── requirements.txt └── startup.sh ├── parser ├── ecfr-parser │ ├── .gitignore │ ├── Dockerfile │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── fr-parser │ ├── Dockerfile │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── launcher │ ├── Dockerfile │ ├── parser_launcher.py │ └── requirements.txt └── lib │ ├── ecfr │ ├── ecfr.go │ ├── ecfr_test.go │ ├── go.mod │ ├── go.sum │ ├── sections.go │ ├── sections_test.go │ ├── structure.go │ ├── structure_test.go │ ├── versions.go │ └── versions_test.go │ ├── eregs │ ├── config.go │ ├── config_test.go │ ├── eregs.go │ ├── eregs_test.go │ ├── go.mod │ ├── go.sum │ ├── regcore.go │ ├── regcore_test.go │ ├── resources.go │ └── resources_test.go │ ├── fedreg │ ├── fedreg.go │ ├── fedreg_test.go │ ├── go.mod │ └── go.sum │ ├── network │ ├── go.mod │ ├── go.sum │ ├── network.go │ └── network_test.go │ └── parsexml │ ├── go.mod │ ├── go.sum │ ├── parsexml.go │ ├── parsexml_test.go │ ├── postprocessing.go │ └── postprocessing_test.go ├── static-assets └── regulations │ ├── fonts │ ├── Merriweather-Bold.ttf │ ├── Merriweather-Italic.ttf │ ├── Merriweather-Regular.ttf │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.ttf │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-BoldItalic.ttf │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.ttf │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Light-webfont.ttf │ ├── OpenSans-LightItalic.ttf │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.ttf │ ├── OpenSans-Regular-webfont.woff │ ├── OpenSans-SemiBold-webfont.ttf │ ├── OpenSans-SemiBoldItalic.ttf │ ├── OpenSans-Semibold-webfont.eot │ ├── OpenSans-Semibold-webfont.woff │ ├── bitter-bold.woff2 │ ├── bitter-italic.woff2 │ ├── bitter-regular.woff2 │ ├── opensans-bold-webfont.woff2 │ ├── opensans-italic-webfont.woff2 │ ├── opensans-regular-webfont.woff2 │ ├── opensans-semibold-webfont.woff2 │ └── webfonts │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.woff2 │ │ └── fa-v4compatibility.woff2 │ └── images │ ├── about_additional_resources.svg │ ├── about_automated_updates.svg │ ├── about_fr_rules.svg │ ├── arrow-both.svg │ ├── browser.svg │ ├── calendar-light.svg │ ├── calendar.svg │ ├── chrome.svg │ ├── close--primary-darker.svg │ ├── close--primary.svg │ ├── close.svg │ ├── down-arrow.svg │ ├── edge.svg │ ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── safari-pinned-tab.svg │ └── site.webmanifest │ ├── firefox.svg │ ├── hero-graphic-updated-mobile.svg │ ├── hero-graphic-updated.svg │ ├── hero-graphic.svg │ ├── home_icon_contact.svg │ ├── home_icon_testing.svg │ ├── home_video.png │ ├── medicaid.png │ ├── next.svg │ ├── previous.svg │ ├── sidebar-collapse.svg │ └── sidebar-expand.svg ├── text-extractor ├── Dockerfile ├── Dockerfile.local ├── README.md ├── backends │ ├── __init__.py │ ├── backend.py │ ├── exceptions.py │ ├── s3.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_backend.py │ │ ├── test_s3.py │ │ └── test_web.py │ └── web.py ├── extractors │ ├── __init__.py │ ├── binary.py │ ├── email.py │ ├── excel.py │ ├── exceptions.py │ ├── extractor.py │ ├── image.py │ ├── markup.py │ ├── old_excel.py │ ├── outlook.py │ ├── pdf.py │ ├── powerpoint.py │ ├── rtf.py │ ├── tests │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── doc │ │ │ │ ├── expected.txt │ │ │ │ └── sample.doc │ │ │ ├── docx │ │ │ │ ├── expected.txt │ │ │ │ └── sample.docx │ │ │ ├── eml │ │ │ │ ├── expected.txt │ │ │ │ └── sample.eml │ │ │ ├── htm │ │ │ │ ├── expected.txt │ │ │ │ └── sample.htm │ │ │ ├── html │ │ │ │ ├── article_section_tag_test_expected.txt │ │ │ │ ├── article_section_tag_test_sample.html │ │ │ │ ├── cms.gov_expected.txt │ │ │ │ ├── cms.gov_sample.html │ │ │ │ ├── cmsgov.github.io_expected.txt │ │ │ │ ├── cmsgov.github.io_sample.html │ │ │ │ ├── expected.txt │ │ │ │ ├── gao.gov_expected.txt │ │ │ │ ├── gao.gov_sample.html │ │ │ │ ├── low-confidence_expected.txt │ │ │ │ ├── low-confidence_sample.html │ │ │ │ ├── main_tag_test_expected.txt │ │ │ │ ├── main_tag_test_sample.html │ │ │ │ ├── sample.html │ │ │ │ ├── uscode.house.gov_expected.txt │ │ │ │ └── uscode.house.gov_sample.html │ │ │ ├── images │ │ │ │ ├── expected.txt │ │ │ │ ├── sample.bmp │ │ │ │ ├── sample.gif │ │ │ │ ├── sample.jpeg │ │ │ │ ├── sample.jpg │ │ │ │ ├── sample.png │ │ │ │ ├── sample.tga │ │ │ │ ├── sample.tiff │ │ │ │ └── sample.webp │ │ │ ├── msg │ │ │ │ ├── expected.txt │ │ │ │ └── sample.msg │ │ │ ├── pptx │ │ │ │ ├── expected.txt │ │ │ │ └── sample.pptx │ │ │ ├── rtf │ │ │ │ ├── corrupt_expected.txt │ │ │ │ ├── corrupt_sample.rtf │ │ │ │ ├── expected.txt │ │ │ │ └── sample.rtf │ │ │ ├── txt │ │ │ │ ├── iso8859-1_expected.txt │ │ │ │ ├── iso8859-1_sample.txt │ │ │ │ ├── utf16_expected.txt │ │ │ │ ├── utf16_sample.txt │ │ │ │ ├── utf8_expected.txt │ │ │ │ ├── utf8_sample.txt │ │ │ │ ├── w1252_expected.txt │ │ │ │ └── w1252_sample.txt │ │ │ ├── xhtml │ │ │ │ ├── expected.txt │ │ │ │ └── sample.xhtml │ │ │ ├── xls │ │ │ │ ├── expected.txt │ │ │ │ └── sample.xls │ │ │ ├── xlsm │ │ │ │ ├── expected.txt │ │ │ │ └── sample.xlsm │ │ │ ├── xlsx │ │ │ │ ├── expected.txt │ │ │ │ └── sample.xlsx │ │ │ ├── xml │ │ │ │ ├── expected.txt │ │ │ │ └── sample.xml │ │ │ └── zip │ │ │ │ ├── expected.json │ │ │ │ └── sample.zip │ │ ├── test_binary.py │ │ ├── test_email.py │ │ ├── test_excel.py │ │ ├── test_extractor.py │ │ ├── test_image.py │ │ ├── test_markup.py │ │ ├── test_old_excel.py │ │ ├── test_outlook.py │ │ ├── test_pdf.py │ │ ├── test_powerpoint.py │ │ ├── test_rtf.py │ │ ├── test_text.py │ │ ├── test_word.py │ │ └── test_zip.py │ ├── text.py │ ├── word.py │ └── zip.py ├── pyproject.toml ├── requirements.txt ├── test_utils.py ├── text_extractor.py └── utils.py └── ui ├── e2e ├── cypress.config.js ├── cypress.env.json.template ├── cypress │ ├── .gitignore │ ├── e2e │ │ ├── about-page.spec.cy.js │ │ ├── analytics.spec.cy.js │ │ ├── api.spec.cy.js │ │ ├── custom-headers.cy.js │ │ ├── custom-login-page.cy.js │ │ ├── error-page.cy.js │ │ ├── get-access-page.cy.js │ │ ├── homepage.spec.cy.js │ │ ├── left-sidebar.spec.cy.js │ │ ├── manual.spec.cy.js │ │ ├── obbba.spec.cy.js │ │ ├── part.spec.cy.js │ │ ├── print.spec.cy.js │ │ ├── search.spec.cy.js │ │ ├── sign-in-out.spec.cy.js │ │ ├── statutes.spec.cy.js │ │ ├── subjects.spec.cy.js │ │ ├── swagger.spec.cy.js │ │ └── title-tags.spec.cy.js │ ├── fixtures │ │ ├── 42-existing.json │ │ ├── 42.431.E.sections-list.json │ │ ├── 42.431.E.toc.parts.json │ │ ├── 42.431.internal-formatted.js │ │ ├── 42.431.internal.json │ │ ├── 42.433.10.public-formatted.js │ │ ├── 42.433.10.public.json │ │ ├── 42.433.10.resources.json │ │ ├── 42.433.A.internal.json │ │ ├── 42.433.A.resources.json │ │ ├── 42.433.history.json │ │ ├── 42.433.sections.json │ │ ├── acts.json │ │ ├── categories-internal.json │ │ ├── categories-smm.json │ │ ├── categories.json │ │ ├── content-search-not-enough.json │ │ ├── counts.json │ │ ├── example.json │ │ ├── frdocs.json │ │ ├── meta-data.json │ │ ├── parts-42.json │ │ ├── parts-45.json │ │ ├── parts-last-updated.json │ │ ├── policy-docs-50-p1.json │ │ ├── policy-docs-50-p2.json │ │ ├── policy-docs-search.json │ │ ├── policy-docs-subjects.json │ │ ├── recent-guidance.json │ │ ├── resources.json │ │ ├── statute-dates.json │ │ ├── statute-link-not-found.json │ │ ├── statute-link.json │ │ ├── statutes.json │ │ ├── subjects.json │ │ ├── titles.json │ │ └── toc.json │ ├── plugins │ │ └── index.js │ ├── schemas │ │ └── example-schema.js │ └── support │ │ ├── common-commands │ │ ├── checkLinks.js │ │ ├── header.js │ │ ├── jumpTo.js │ │ ├── login.js │ │ ├── policyDocs.js │ │ ├── statutes.js │ │ └── toc.js │ │ ├── e2e.js │ │ ├── index.js │ │ └── validate-schema-command.js ├── package-lock.json ├── package.json └── run_tests.sh └── regulations ├── .npmrc ├── alias.js ├── composables ├── categories.js ├── counts.js ├── dropdownMenu.js ├── fetch.js ├── login.js ├── partsLastUpdated.js ├── removeList.js ├── searchResults.js └── statuteCitationLink.js ├── css ├── admin │ ├── custom_admin.css │ └── synonym.css └── scss │ ├── _application_settings.scss │ ├── _eregs_design_system.scss │ ├── _layout.scss │ ├── _print.scss │ ├── main-deploy.scss │ ├── main.scss │ └── partials │ ├── _banner.scss │ ├── _buttons_and_tooltip.scss │ ├── _compare.scss │ ├── _error_pages.scss │ ├── _expanded_toc.scss │ ├── _flash_banner.scss │ ├── _footer.scss │ ├── _header.scss │ ├── _info_pages.scss │ ├── _jump_to.scss │ ├── _login.scss │ ├── _manual.scss │ ├── _obbba.scss │ ├── _pagination.scss │ ├── _reg_part_homepage.scss │ ├── _reg_text.scss │ ├── _results_item.scss │ ├── _search.scss │ ├── _sidebar_left.scss │ ├── _sidebar_right.scss │ ├── _site_homepage.scss │ ├── _statutes.scss │ ├── _subjects.scss │ ├── _subjects_selector.scss │ ├── _supplemental_content.scss │ ├── _toc.scss │ └── _typography.scss ├── directives ├── clickaway.js └── sanitizeHtml.js ├── eregs-component-lib ├── .gitignore ├── .vscode │ └── extensions.json ├── jsconfig.json ├── package-lock.json ├── package.json ├── src │ ├── components │ │ ├── CollapseButton.vue │ │ ├── Collapsible.vue │ │ ├── LastParserSuccessDate.vue │ │ ├── RecentChangesContainer.vue │ │ ├── RecentResources.vue │ │ ├── RecentSupplementalContent.vue │ │ ├── RelatedRule.vue │ │ ├── RelatedRuleList.test.js │ │ ├── RelatedRuleList.vue │ │ ├── ShowMoreButton.vue │ │ ├── SimpleSpinner.vue │ │ ├── SupplementalContent.vue │ │ ├── SupplementalContentCategory.vue │ │ ├── SupplementalContentList.vue │ │ ├── SupplementalContentObject.vue │ │ ├── TableComponent.vue │ │ ├── ViewResourcesLink.vue │ │ ├── index.js │ │ ├── reader-sidebar │ │ │ └── InternalDocsContainer.vue │ │ ├── shared-components │ │ │ ├── IconCard.test.js │ │ │ ├── IconCard.vue │ │ │ ├── LeftNavCollapse.vue │ │ │ ├── ResultsItem.vue │ │ │ ├── Statutes │ │ │ │ ├── StatuteCitationLookup.vue │ │ │ │ ├── StatuteCitationTable.vue │ │ │ │ ├── StatuteSelector.test.js │ │ │ │ ├── StatuteSelector.vue │ │ │ │ ├── StatuteTable.vue │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── StatuteSelector.test.js.snap │ │ │ │ │ └── TableCaption.test.js.snap │ │ │ │ ├── schemas │ │ │ │ │ └── tableSchemas.js │ │ │ │ ├── table-elements │ │ │ │ │ ├── BodyCell.test.js │ │ │ │ │ ├── BodyCell.vue │ │ │ │ │ ├── HeaderCell.test.js │ │ │ │ │ ├── HeaderCell.vue │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ ├── BodyCell.test.js.snap │ │ │ │ │ │ └── HeaderCell.test.js.snap │ │ │ │ └── utils │ │ │ │ │ ├── dateMethods.js │ │ │ │ │ ├── dateMethods.test.js │ │ │ │ │ ├── enums.js │ │ │ │ │ ├── urlMethods.js │ │ │ │ │ └── urlMethods.test.js │ │ │ ├── TOC │ │ │ │ ├── Toc.vue │ │ │ │ ├── TocContainer.test.js │ │ │ │ ├── TocContainer.vue │ │ │ │ ├── TocPart.vue │ │ │ │ ├── TocSubchapter.vue │ │ │ │ ├── TocSubheading.vue │ │ │ │ └── TocTitle.vue │ │ │ ├── __snapshots__ │ │ │ │ └── IconCard.test.js.snap │ │ │ └── results-item-parts │ │ │ │ ├── CategoryLabel.vue │ │ │ │ ├── DivisionLabel.vue │ │ │ │ ├── DocTypeLabel.vue │ │ │ │ ├── IndicatorLabel.test.js │ │ │ │ ├── IndicatorLabel.vue │ │ │ │ ├── RelatedRegulationLink.vue │ │ │ │ ├── RelatedSections.vue │ │ │ │ ├── RelatedSectionsCollapse.test.js │ │ │ │ ├── RelatedSectionsCollapse.vue │ │ │ │ └── RelatedStatuteLink.vue │ │ └── tooltips │ │ │ ├── ActionBtn.vue │ │ │ ├── CopyCitation.vue │ │ │ ├── GovInfoLinks.vue │ │ │ └── TooltipContainer.vue │ ├── eventbus │ │ └── index.js │ ├── go-to-version.js │ ├── main.js │ └── plugins │ │ └── vuetify.js ├── vite.config.mjs └── watch-dist.js ├── eregs-vite ├── .gitignore ├── .vscode │ └── extensions.json ├── index.html ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── src │ ├── App.vue │ ├── components │ │ ├── AccessLink.test.js │ │ ├── AccessLink.vue │ │ ├── Banner.vue │ │ ├── JumpTo.vue │ │ ├── SearchContinueResearch.test.js │ │ ├── SearchContinueResearch.vue │ │ ├── SearchErrorMsg.test.js │ │ ├── SearchErrorMsg.vue │ │ ├── SearchInput.vue │ │ ├── SignInCTA.vue │ │ ├── SignInLink.vue │ │ ├── __snapshots__ │ │ │ └── SearchErrorMsg.test.js.snap │ │ ├── dropdowns │ │ │ ├── Categories.vue │ │ │ ├── CategoriesItem.vue │ │ │ ├── FetchItemsContainer.vue │ │ │ ├── GenericDropdown.vue │ │ │ ├── Sort.vue │ │ │ └── Subjects.vue │ │ ├── header │ │ │ ├── HeaderComponent.vue │ │ │ ├── HeaderDropdownMenu.vue │ │ │ ├── HeaderLink.vue │ │ │ ├── HeaderLinks.vue │ │ │ ├── HeaderSearch.vue │ │ │ └── HeaderUserWidget.vue │ │ ├── manual │ │ │ └── data │ │ │ │ └── smm-table-data.js │ │ ├── navigation │ │ │ └── NavBtn.vue │ │ ├── pagination │ │ │ ├── PageNumber.vue │ │ │ ├── PagesList.vue │ │ │ └── PaginationController.vue │ │ ├── subjects │ │ │ ├── DocumentTypeSelector.vue │ │ │ ├── PolicyResults.test.js │ │ │ ├── PolicyResults.vue │ │ │ ├── PolicySelections.vue │ │ │ ├── PolicySidebar.vue │ │ │ ├── SelectedSubjectChip.test.js │ │ │ ├── SelectedSubjectChip.vue │ │ │ ├── SelectedSubjectHeading.vue │ │ │ ├── SubjectChip.test.js │ │ │ ├── SubjectChip.vue │ │ │ ├── SubjectChips.vue │ │ │ ├── SubjectLanding.vue │ │ │ ├── SubjectSelector.test.js │ │ │ ├── SubjectSelector.vue │ │ │ └── __snapshots__ │ │ │ │ └── SubjectChip.test.js.snap │ │ └── svgs │ │ │ ├── header-chevron-down.vue │ │ │ ├── header-chevron-left.vue │ │ │ ├── header-chevron-up.vue │ │ │ ├── header-search-icon.vue │ │ │ ├── home-book.vue │ │ │ ├── home-clipboard.vue │ │ │ ├── home-search.vue │ │ │ └── user-icon.vue │ ├── main.js │ ├── plugins │ │ └── vuetify.js │ ├── router │ │ └── index.js │ └── views │ │ ├── Manual.vue │ │ ├── OBBBA.vue │ │ ├── Search.vue │ │ ├── Statutes.vue │ │ └── Subjects.vue └── vite.config.mjs ├── msw ├── mockServiceWorker.js └── mocks │ ├── categories.js │ ├── govInfoHistory.js │ ├── granularCounts.js │ ├── handlers.js │ ├── locations.js │ ├── parser_success.js │ ├── part_toc.js │ ├── resources.js │ ├── subpartTOC.js │ ├── synthetic-part.js │ ├── titles.js │ └── toc.js ├── package-lock.json ├── package.json ├── test ├── configuration │ └── setup-test.js └── unit-test │ ├── GovInfoLinks.test.js │ ├── LastParserSuccess.test.js │ └── __snapshots__ │ ├── GovInfoLinks.test.js.snap │ ├── LastParserSuccess.test.js.snap │ └── SupplementalContent.test.js.snap ├── utilities ├── api.js ├── api.test.js ├── filters.js ├── filters.test.js ├── utils.js └── utils.test.js └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @PhilR8 @cgodwin1 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/collect-garbage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/collect-garbage.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-experimental.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/deploy-experimental.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-to-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/deploy-to-env.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint-and-test-parsers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/lint-and-test-parsers.yml -------------------------------------------------------------------------------- /.github/workflows/lint-js-ts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/lint-js-ts.yml -------------------------------------------------------------------------------- /.github/workflows/lint-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/lint-python.yml -------------------------------------------------------------------------------- /.github/workflows/remove-experimental.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/remove-experimental.yml -------------------------------------------------------------------------------- /.github/workflows/run-gitleaks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/run-gitleaks.yaml -------------------------------------------------------------------------------- /.github/workflows/schedule-jira-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/schedule-jira-sync.yml -------------------------------------------------------------------------------- /.github/workflows/snyk-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/snyk-test.yml -------------------------------------------------------------------------------- /.github/workflows/test-django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/test-django.yml -------------------------------------------------------------------------------- /.github/workflows/test-javascript.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/test-javascript.yml -------------------------------------------------------------------------------- /.github/workflows/test-text-extractor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/test-text-extractor.yml -------------------------------------------------------------------------------- /.github/workflows/update-cdk-bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/update-cdk-bootstrap.yml -------------------------------------------------------------------------------- /.github/workflows/update-code-json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.github/workflows/update-code-json.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.gitleaks.toml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/README.md -------------------------------------------------------------------------------- /SECRETSCANNING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/SECRETSCANNING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SnykReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/SnykReadMe.md -------------------------------------------------------------------------------- /cdk-eregs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/.gitignore -------------------------------------------------------------------------------- /cdk-eregs/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/.npmignore -------------------------------------------------------------------------------- /cdk-eregs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/README.md -------------------------------------------------------------------------------- /cdk-eregs/bin/docker-lambdas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/bin/docker-lambdas.ts -------------------------------------------------------------------------------- /cdk-eregs/bin/static-assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/bin/static-assets.ts -------------------------------------------------------------------------------- /cdk-eregs/bin/text-extractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/bin/text-extractor.ts -------------------------------------------------------------------------------- /cdk-eregs/bin/zip-lambdas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/bin/zip-lambdas.ts -------------------------------------------------------------------------------- /cdk-eregs/bootstrap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/bootstrap/.gitignore -------------------------------------------------------------------------------- /cdk-eregs/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/bootstrap/README.md -------------------------------------------------------------------------------- /cdk-eregs/bootstrap/requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML 2 | -------------------------------------------------------------------------------- /cdk-eregs/bootstrap/roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/bootstrap/roles.json -------------------------------------------------------------------------------- /cdk-eregs/bootstrap/update_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/bootstrap/update_template.py -------------------------------------------------------------------------------- /cdk-eregs/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/cdk.json -------------------------------------------------------------------------------- /cdk-eregs/config/environment-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/config/environment-config.ts -------------------------------------------------------------------------------- /cdk-eregs/config/environments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/config/environments.ts -------------------------------------------------------------------------------- /cdk-eregs/config/stage-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/config/stage-config.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/aspects/iam-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/aspects/iam-path.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/aspects/iam-permissions-boundary-aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/aspects/iam-permissions-boundary-aspect.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/aspects/removal-policy-aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/aspects/removal-policy-aspect.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/constructs/api-construct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/constructs/api-construct.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/constructs/database-construct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/constructs/database-construct.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/constructs/waf-construct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/constructs/waf-construct.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/stacks/api-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/stacks/api-stack.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/stacks/ecfr-parser-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/stacks/ecfr-parser-stack.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/stacks/fr-parser-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/stacks/fr-parser-stack.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/stacks/maintainance-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/stacks/maintainance-stack.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/stacks/parser-launcher-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/stacks/parser-launcher-stack.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/stacks/redirect-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/stacks/redirect-stack.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/stacks/static-assets-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/stacks/static-assets-stack.ts -------------------------------------------------------------------------------- /cdk-eregs/lib/stacks/text-extract-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/lib/stacks/text-extract-stack.ts -------------------------------------------------------------------------------- /cdk-eregs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/package-lock.json -------------------------------------------------------------------------------- /cdk-eregs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/package.json -------------------------------------------------------------------------------- /cdk-eregs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/tsconfig.json -------------------------------------------------------------------------------- /cdk-eregs/utils/parameter-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/cdk-eregs/utils/parameter-store.ts -------------------------------------------------------------------------------- /code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/code.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/package.json -------------------------------------------------------------------------------- /scripts/backup_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/scripts/backup_db.sh -------------------------------------------------------------------------------- /scripts/delete_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/scripts/delete_resources.py -------------------------------------------------------------------------------- /scripts/delete_stacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/scripts/delete_stacks.py -------------------------------------------------------------------------------- /scripts/restore_local_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/scripts/restore_local_db.sh -------------------------------------------------------------------------------- /scripts/restore_remote_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/scripts/restore_remote_db.sh -------------------------------------------------------------------------------- /solution/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/.flake8 -------------------------------------------------------------------------------- /solution/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/Dockerfile.template -------------------------------------------------------------------------------- /solution/LINTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/LINTING.md -------------------------------------------------------------------------------- /solution/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/Makefile -------------------------------------------------------------------------------- /solution/_templates/scripts/delete_orphandbs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/_templates/scripts/delete_orphandbs.sql -------------------------------------------------------------------------------- /solution/backend/authorizer.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/authorizer.Dockerfile -------------------------------------------------------------------------------- /solution/backend/authorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/authorizer.py -------------------------------------------------------------------------------- /solution/backend/aws_resources/waf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/aws_resources/waf.yml -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/asgi.py -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/context_processors.py -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/settings/base.py -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/settings/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/settings/deploy.py -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/settings/euasettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/settings/euasettings.py -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/settings/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/settings/local.py -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/settings/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/settings/test_settings.py -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/templates/admin/base_site.html -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/templates/admin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/templates/admin/login.html -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/urls.py -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/utils/__init__.py -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/utils/api_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/utils/api_exceptions.py -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/utils/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/utils/pagination.py -------------------------------------------------------------------------------- /solution/backend/cmcs_regulations/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/cmcs_regulations/wsgi.py -------------------------------------------------------------------------------- /solution/backend/common/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/common/admin.py -------------------------------------------------------------------------------- /solution/backend/common/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/common/api.py -------------------------------------------------------------------------------- /solution/backend/common/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/common/auth.py -------------------------------------------------------------------------------- /solution/backend/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/common/constants.py -------------------------------------------------------------------------------- /solution/backend/common/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/common/fields.py -------------------------------------------------------------------------------- /solution/backend/common/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/common/filters.py -------------------------------------------------------------------------------- /solution/backend/common/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/common/functions.py -------------------------------------------------------------------------------- /solution/backend/common/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/common/mixins.py -------------------------------------------------------------------------------- /solution/backend/common/patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/common/patterns.py -------------------------------------------------------------------------------- /solution/backend/common/test_functions/common_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/common/test_functions/common_functions.py -------------------------------------------------------------------------------- /solution/backend/common/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/common/tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/common/tests/test_fields.py -------------------------------------------------------------------------------- /solution/backend/common/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/common/tests/test_filters.py -------------------------------------------------------------------------------- /solution/backend/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/common/utils.py -------------------------------------------------------------------------------- /solution/backend/content_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/content_search/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/apps.py -------------------------------------------------------------------------------- /solution/backend/content_search/migrations/0001_to_0012_squashed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/migrations/0001_to_0012_squashed.py -------------------------------------------------------------------------------- /solution/backend/content_search/migrations/0004_copy_synonyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/migrations/0004_copy_synonyms.py -------------------------------------------------------------------------------- /solution/backend/content_search/migrations/0005_contentindex_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/migrations/0005_contentindex_date.py -------------------------------------------------------------------------------- /solution/backend/content_search/migrations/0007_enable_pgvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/migrations/0007_enable_pgvector.py -------------------------------------------------------------------------------- /solution/backend/content_search/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/content_search/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/models.py -------------------------------------------------------------------------------- /solution/backend/content_search/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/serializers.py -------------------------------------------------------------------------------- /solution/backend/content_search/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/content_search/tests/disabled_test_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/tests/disabled_test_post.py -------------------------------------------------------------------------------- /solution/backend/content_search/tests/fixtures/fr_docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/tests/fixtures/fr_docs.json -------------------------------------------------------------------------------- /solution/backend/content_search/tests/fixtures/internal_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/tests/fixtures/internal_files.json -------------------------------------------------------------------------------- /solution/backend/content_search/tests/fixtures/part.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/tests/fixtures/part.json -------------------------------------------------------------------------------- /solution/backend/content_search/tests/fixtures/public_links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/tests/fixtures/public_links.json -------------------------------------------------------------------------------- /solution/backend/content_search/tests/test_post_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/tests/test_post_save.py -------------------------------------------------------------------------------- /solution/backend/content_search/tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/tests/test_search.py -------------------------------------------------------------------------------- /solution/backend/content_search/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/urls.py -------------------------------------------------------------------------------- /solution/backend/content_search/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/utils.py -------------------------------------------------------------------------------- /solution/backend/content_search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/content_search/views.py -------------------------------------------------------------------------------- /solution/backend/createdb.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/createdb.Dockerfile -------------------------------------------------------------------------------- /solution/backend/createdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/createdb.py -------------------------------------------------------------------------------- /solution/backend/createsu.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/createsu.Dockerfile -------------------------------------------------------------------------------- /solution/backend/createsu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/createsu.py -------------------------------------------------------------------------------- /solution/backend/dropdb.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/dropdb.Dockerfile -------------------------------------------------------------------------------- /solution/backend/dropdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/dropdb.py -------------------------------------------------------------------------------- /solution/backend/empty_bucket.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/empty_bucket.Dockerfile -------------------------------------------------------------------------------- /solution/backend/empty_bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/empty_bucket.py -------------------------------------------------------------------------------- /solution/backend/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/handler.py -------------------------------------------------------------------------------- /solution/backend/maintenance_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/maintenance_lambda.py -------------------------------------------------------------------------------- /solution/backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/manage.py -------------------------------------------------------------------------------- /solution/backend/migrate.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/migrate.Dockerfile -------------------------------------------------------------------------------- /solution/backend/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/migrate.py -------------------------------------------------------------------------------- /solution/backend/nginx/config/static-assets/nginx_fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/nginx/config/static-assets/nginx_fonts.conf -------------------------------------------------------------------------------- /solution/backend/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/pyproject.toml -------------------------------------------------------------------------------- /solution/backend/redirect_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/redirect_lambda.py -------------------------------------------------------------------------------- /solution/backend/regcore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/regcore/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/admin.py -------------------------------------------------------------------------------- /solution/backend/regcore/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/apps.py -------------------------------------------------------------------------------- /solution/backend/regcore/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/context_processors.py -------------------------------------------------------------------------------- /solution/backend/regcore/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/middleware.py -------------------------------------------------------------------------------- /solution/backend/regcore/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/migrations/0001_initial.py -------------------------------------------------------------------------------- /solution/backend/regcore/migrations/0003_auto_20220307_1510.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/migrations/0003_auto_20220307_1510.py -------------------------------------------------------------------------------- /solution/backend/regcore/migrations/0004_part_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/migrations/0004_part_depth.py -------------------------------------------------------------------------------- /solution/backend/regcore/migrations/0006_auto_20220826_1708.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/migrations/0006_auto_20220826_1708.py -------------------------------------------------------------------------------- /solution/backend/regcore/migrations/0007_part_depth_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/migrations/0007_part_depth_stack.py -------------------------------------------------------------------------------- /solution/backend/regcore/migrations/0008_auto_20220912_1859.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/migrations/0008_auto_20220912_1859.py -------------------------------------------------------------------------------- /solution/backend/regcore/migrations/0009_auto_20220913_1138.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/migrations/0009_auto_20220913_1138.py -------------------------------------------------------------------------------- /solution/backend/regcore/migrations/0010_auto_20220913_1805.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/migrations/0010_auto_20220913_1805.py -------------------------------------------------------------------------------- /solution/backend/regcore/migrations/0012_auto_20220923_1156.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/migrations/0012_auto_20220923_1156.py -------------------------------------------------------------------------------- /solution/backend/regcore/migrations/0013_alter_part_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/migrations/0013_alter_part_options.py -------------------------------------------------------------------------------- /solution/backend/regcore/migrations/0014_auto_20230322_2234.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/migrations/0014_auto_20230322_2234.py -------------------------------------------------------------------------------- /solution/backend/regcore/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/regcore/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/models.py -------------------------------------------------------------------------------- /solution/backend/regcore/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/regcore/search/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/search/apps.py -------------------------------------------------------------------------------- /solution/backend/regcore/search/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/search/migrations/0001_initial.py -------------------------------------------------------------------------------- /solution/backend/regcore/search/migrations/0003_synonym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/search/migrations/0003_synonym.py -------------------------------------------------------------------------------- /solution/backend/regcore/search/migrations/0004_searchindexv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/search/migrations/0004_searchindexv2.py -------------------------------------------------------------------------------- /solution/backend/regcore/search/migrations/0006_delete_searchindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/search/migrations/0006_delete_searchindex.py -------------------------------------------------------------------------------- /solution/backend/regcore/search/migrations/0007_populate_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/search/migrations/0007_populate_index.py -------------------------------------------------------------------------------- /solution/backend/regcore/search/migrations/0008_alter_searchquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/search/migrations/0008_alter_searchquery.py -------------------------------------------------------------------------------- /solution/backend/regcore/search/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/regcore/search/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/search/models.py -------------------------------------------------------------------------------- /solution/backend/regcore/search/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/search/readme.md -------------------------------------------------------------------------------- /solution/backend/regcore/serializers/contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/serializers/contents.py -------------------------------------------------------------------------------- /solution/backend/regcore/serializers/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/serializers/history.py -------------------------------------------------------------------------------- /solution/backend/regcore/serializers/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/serializers/metadata.py -------------------------------------------------------------------------------- /solution/backend/regcore/serializers/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/serializers/parser.py -------------------------------------------------------------------------------- /solution/backend/regcore/serializers/toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/serializers/toc.py -------------------------------------------------------------------------------- /solution/backend/regcore/templates/response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/templates/response.html -------------------------------------------------------------------------------- /solution/backend/regcore/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/regcore/tests/fixtures/depth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/tests/fixtures/depth.json -------------------------------------------------------------------------------- /solution/backend/regcore/tests/fixtures/part.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/tests/fixtures/part.json -------------------------------------------------------------------------------- /solution/backend/regcore/tests/test_api_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/tests/test_api_view.py -------------------------------------------------------------------------------- /solution/backend/regcore/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/tests/test_models.py -------------------------------------------------------------------------------- /solution/backend/regcore/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/tests/test_views.py -------------------------------------------------------------------------------- /solution/backend/regcore/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/urls.py -------------------------------------------------------------------------------- /solution/backend/regcore/views/contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/views/contents.py -------------------------------------------------------------------------------- /solution/backend/regcore/views/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/views/history.py -------------------------------------------------------------------------------- /solution/backend/regcore/views/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/views/metadata.py -------------------------------------------------------------------------------- /solution/backend/regcore/views/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/views/mixins.py -------------------------------------------------------------------------------- /solution/backend/regcore/views/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/views/parser.py -------------------------------------------------------------------------------- /solution/backend/regcore/views/part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/views/part.py -------------------------------------------------------------------------------- /solution/backend/regcore/views/title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/views/title.py -------------------------------------------------------------------------------- /solution/backend/regcore/views/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regcore/views/utils.py -------------------------------------------------------------------------------- /solution/backend/regsite.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regsite.Dockerfile -------------------------------------------------------------------------------- /solution/backend/regulations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/regulations/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/admin.py -------------------------------------------------------------------------------- /solution/backend/regulations/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/apps.py -------------------------------------------------------------------------------- /solution/backend/regulations/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/context_processors.py -------------------------------------------------------------------------------- /solution/backend/regulations/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/converters.py -------------------------------------------------------------------------------- /solution/backend/regulations/logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/logout.py -------------------------------------------------------------------------------- /solution/backend/regulations/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/middleware.py -------------------------------------------------------------------------------- /solution/backend/regulations/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/migrations/0001_initial.py -------------------------------------------------------------------------------- /solution/backend/regulations/migrations/0002_rename_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/migrations/0002_rename_resources.py -------------------------------------------------------------------------------- /solution/backend/regulations/migrations/0003_siteconfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/migrations/0003_siteconfiguration.py -------------------------------------------------------------------------------- /solution/backend/regulations/migrations/0004_statutelinkconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/migrations/0004_statutelinkconverter.py -------------------------------------------------------------------------------- /solution/backend/regulations/migrations/0005_auto_20230523_1533.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/migrations/0005_auto_20230523_1533.py -------------------------------------------------------------------------------- /solution/backend/regulations/migrations/0009_auto_20230714_1506.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/migrations/0009_auto_20230714_1506.py -------------------------------------------------------------------------------- /solution/backend/regulations/migrations/0010_auto_20230719_1157.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/migrations/0010_auto_20230719_1157.py -------------------------------------------------------------------------------- /solution/backend/regulations/migrations/0012_auto_20230725_1630.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/migrations/0012_auto_20230725_1630.py -------------------------------------------------------------------------------- /solution/backend/regulations/migrations/0014_auto_20230912_1211.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/migrations/0014_auto_20230912_1211.py -------------------------------------------------------------------------------- /solution/backend/regulations/migrations/0015_customuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/migrations/0015_customuser.py -------------------------------------------------------------------------------- /solution/backend/regulations/migrations/0016_delete_customuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/migrations/0016_delete_customuser.py -------------------------------------------------------------------------------- /solution/backend/regulations/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/regulations/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/models.py -------------------------------------------------------------------------------- /solution/backend/regulations/sitemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/sitemap.py -------------------------------------------------------------------------------- /solution/backend/regulations/templates/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/400.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/404.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/500.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/admin/import_conversions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/admin/import_conversions.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/error_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/error_base.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/regulations/about.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/regulations/base.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/regulations/homepage.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/homepage/part.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/regulations/homepage/part.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/regulations/login.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/regulations/manual.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/obbba.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/regulations/obbba.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/partials/node_types/Heading.html: -------------------------------------------------------------------------------- 1 |

{{ node.content | safe }}

2 | -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/partials/node_types/Image.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/regulations/reader.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/regulations/search.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/spa_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/regulations/spa_base.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/statute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/regulations/statute.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/regulations/subjects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/regulations/subjects.html -------------------------------------------------------------------------------- /solution/backend/regulations/templates/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templates/robots.txt -------------------------------------------------------------------------------- /solution/backend/regulations/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/regulations/templatetags/citation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templatetags/citation.py -------------------------------------------------------------------------------- /solution/backend/regulations/templatetags/get_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templatetags/get_item.py -------------------------------------------------------------------------------- /solution/backend/regulations/templatetags/get_subject_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templatetags/get_subject_id.py -------------------------------------------------------------------------------- /solution/backend/regulations/templatetags/link_reg_refs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templatetags/link_reg_refs.py -------------------------------------------------------------------------------- /solution/backend/regulations/templatetags/link_statutes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templatetags/link_statutes.py -------------------------------------------------------------------------------- /solution/backend/regulations/templatetags/paragraphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templatetags/paragraphs.py -------------------------------------------------------------------------------- /solution/backend/regulations/templatetags/render_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templatetags/render_nested.py -------------------------------------------------------------------------------- /solution/backend/regulations/templatetags/site_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templatetags/site_statistics.py -------------------------------------------------------------------------------- /solution/backend/regulations/templatetags/string_formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templatetags/string_formatters.py -------------------------------------------------------------------------------- /solution/backend/regulations/templatetags/url_formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templatetags/url_formatters.py -------------------------------------------------------------------------------- /solution/backend/regulations/templatetags/version_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/templatetags/version_date.py -------------------------------------------------------------------------------- /solution/backend/regulations/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/regulations/tests/fixtures/acts_viewset_golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/fixtures/acts_viewset_golden.json -------------------------------------------------------------------------------- /solution/backend/regulations/tests/fixtures/redirect_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/fixtures/redirect_tests.json -------------------------------------------------------------------------------- /solution/backend/regulations/tests/fixtures/reg_ref_config_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/fixtures/reg_ref_config_tests.json -------------------------------------------------------------------------------- /solution/backend/regulations/tests/fixtures/reg_ref_link_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/fixtures/reg_ref_link_tests.json -------------------------------------------------------------------------------- /solution/backend/regulations/tests/fixtures/sample_part.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/fixtures/sample_part.json -------------------------------------------------------------------------------- /solution/backend/regulations/tests/fixtures/section_link_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/fixtures/section_link_tests.json -------------------------------------------------------------------------------- /solution/backend/regulations/tests/fixtures/statute_config_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/fixtures/statute_config_tests.json -------------------------------------------------------------------------------- /solution/backend/regulations/tests/fixtures/statute_link_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/fixtures/statute_link_data.xml -------------------------------------------------------------------------------- /solution/backend/regulations/tests/fixtures/statute_link_data_aca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/fixtures/statute_link_data_aca.xml -------------------------------------------------------------------------------- /solution/backend/regulations/tests/fixtures/statute_link_golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/fixtures/statute_link_golden.json -------------------------------------------------------------------------------- /solution/backend/regulations/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/test_admin.py -------------------------------------------------------------------------------- /solution/backend/regulations/tests/test_link_statutes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/test_link_statutes.py -------------------------------------------------------------------------------- /solution/backend/regulations/tests/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/test_reader.py -------------------------------------------------------------------------------- /solution/backend/regulations/tests/test_reg_ref_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/test_reg_ref_links.py -------------------------------------------------------------------------------- /solution/backend/regulations/tests/test_site_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/test_site_configuration.py -------------------------------------------------------------------------------- /solution/backend/regulations/tests/test_statute_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/test_statute_links.py -------------------------------------------------------------------------------- /solution/backend/regulations/tests/test_subjects_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/test_subjects_view.py -------------------------------------------------------------------------------- /solution/backend/regulations/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/tests/test_urls.py -------------------------------------------------------------------------------- /solution/backend/regulations/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/urls.py -------------------------------------------------------------------------------- /solution/backend/regulations/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .link_statutes import * # noqa 2 | -------------------------------------------------------------------------------- /solution/backend/regulations/utils/link_statutes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/utils/link_statutes.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/regulations/views/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/about.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/errors.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/get_account_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/get_account_access.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/goto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/goto.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/homepage.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/login.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/manual.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/mixins.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/obbba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/obbba.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/policy_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/policy_repository.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/reader.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/redirect.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/regulation_landing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/regulation_landing.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/resources.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/search.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/statute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/statute.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/statutes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/statutes.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/subjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/subjects.py -------------------------------------------------------------------------------- /solution/backend/regulations/views/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/regulations/views/utils.py -------------------------------------------------------------------------------- /solution/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/requirements.txt -------------------------------------------------------------------------------- /solution/backend/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/resources/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/admin/__init__.py -------------------------------------------------------------------------------- /solution/backend/resources/admin/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/admin/actions.py -------------------------------------------------------------------------------- /solution/backend/resources/admin/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/admin/categories.py -------------------------------------------------------------------------------- /solution/backend/resources/admin/citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/admin/citations.py -------------------------------------------------------------------------------- /solution/backend/resources/admin/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/admin/config.py -------------------------------------------------------------------------------- /solution/backend/resources/admin/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/admin/groups.py -------------------------------------------------------------------------------- /solution/backend/resources/admin/internal_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/admin/internal_resources.py -------------------------------------------------------------------------------- /solution/backend/resources/admin/public_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/admin/public_resources.py -------------------------------------------------------------------------------- /solution/backend/resources/admin/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/admin/resources.py -------------------------------------------------------------------------------- /solution/backend/resources/admin/subjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/admin/subjects.py -------------------------------------------------------------------------------- /solution/backend/resources/admin/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/admin/widgets.py -------------------------------------------------------------------------------- /solution/backend/resources/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/apps.py -------------------------------------------------------------------------------- /solution/backend/resources/migrations/0001_to_0052_squashed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/migrations/0001_to_0052_squashed.py -------------------------------------------------------------------------------- /solution/backend/resources/migrations/0002_populate_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/migrations/0002_populate_config.py -------------------------------------------------------------------------------- /solution/backend/resources/migrations/0005_reset_extract_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/migrations/0005_reset_extract_url.py -------------------------------------------------------------------------------- /solution/backend/resources/migrations/0006_recompute_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/migrations/0006_recompute_groups.py -------------------------------------------------------------------------------- /solution/backend/resources/migrations/0008_update_ref_field_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/migrations/0008_update_ref_field_sort.py -------------------------------------------------------------------------------- /solution/backend/resources/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/resources/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/models/__init__.py -------------------------------------------------------------------------------- /solution/backend/resources/models/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/models/categories.py -------------------------------------------------------------------------------- /solution/backend/resources/models/citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/models/citations.py -------------------------------------------------------------------------------- /solution/backend/resources/models/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/models/config.py -------------------------------------------------------------------------------- /solution/backend/resources/models/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/models/groups.py -------------------------------------------------------------------------------- /solution/backend/resources/models/internal_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/models/internal_resources.py -------------------------------------------------------------------------------- /solution/backend/resources/models/public_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/models/public_resources.py -------------------------------------------------------------------------------- /solution/backend/resources/models/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/models/resources.py -------------------------------------------------------------------------------- /solution/backend/resources/models/subjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/models/subjects.py -------------------------------------------------------------------------------- /solution/backend/resources/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/serializers/__init__.py -------------------------------------------------------------------------------- /solution/backend/resources/serializers/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/serializers/categories.py -------------------------------------------------------------------------------- /solution/backend/resources/serializers/citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/serializers/citations.py -------------------------------------------------------------------------------- /solution/backend/resources/serializers/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/serializers/groups.py -------------------------------------------------------------------------------- /solution/backend/resources/serializers/polymorphic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/serializers/polymorphic.py -------------------------------------------------------------------------------- /solution/backend/resources/serializers/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/serializers/resources.py -------------------------------------------------------------------------------- /solution/backend/resources/serializers/subjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/serializers/subjects.py -------------------------------------------------------------------------------- /solution/backend/resources/serializers/text_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/serializers/text_extraction.py -------------------------------------------------------------------------------- /solution/backend/resources/templates/input_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/templates/input_filter.html -------------------------------------------------------------------------------- /solution/backend/resources/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/resources/tests/fixtures/gov_info_failure.json: -------------------------------------------------------------------------------- 1 | { 2 | "errors": "failure" 3 | } -------------------------------------------------------------------------------- /solution/backend/resources/tests/fixtures/gov_info_success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/tests/fixtures/gov_info_success.json -------------------------------------------------------------------------------- /solution/backend/resources/tests/fixtures/gov_info_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/tests/fixtures/gov_info_zero.json -------------------------------------------------------------------------------- /solution/backend/resources/tests/fixtures/test_resource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/tests/fixtures/test_resource.csv -------------------------------------------------------------------------------- /solution/backend/resources/tests/fixtures/url_snippet_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/tests/fixtures/url_snippet_dict.json -------------------------------------------------------------------------------- /solution/backend/resources/tests/fixtures/url_snippet_dict_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/tests/fixtures/url_snippet_dict_page.json -------------------------------------------------------------------------------- /solution/backend/resources/tests/test_admin_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/tests/test_admin_actions.py -------------------------------------------------------------------------------- /solution/backend/resources/tests/test_fr_link_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/tests/test_fr_link_admin.py -------------------------------------------------------------------------------- /solution/backend/resources/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/tests/test_models.py -------------------------------------------------------------------------------- /solution/backend/resources/tests/test_resource_grouping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/tests/test_resource_grouping.py -------------------------------------------------------------------------------- /solution/backend/resources/tests/test_resources_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/tests/test_resources_endpoints.py -------------------------------------------------------------------------------- /solution/backend/resources/tests/test_robots_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/tests/test_robots_txt.py -------------------------------------------------------------------------------- /solution/backend/resources/tests/test_subjects_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/tests/test_subjects_endpoint.py -------------------------------------------------------------------------------- /solution/backend/resources/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/urls.py -------------------------------------------------------------------------------- /solution/backend/resources/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/utils/__init__.py -------------------------------------------------------------------------------- /solution/backend/resources/utils/aws_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/utils/aws_utils.py -------------------------------------------------------------------------------- /solution/backend/resources/utils/general_purpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/utils/general_purpose.py -------------------------------------------------------------------------------- /solution/backend/resources/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/views/__init__.py -------------------------------------------------------------------------------- /solution/backend/resources/views/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/views/categories.py -------------------------------------------------------------------------------- /solution/backend/resources/views/citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/views/citations.py -------------------------------------------------------------------------------- /solution/backend/resources/views/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/views/groups.py -------------------------------------------------------------------------------- /solution/backend/resources/views/redirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/views/redirects.py -------------------------------------------------------------------------------- /solution/backend/resources/views/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/views/resources.py -------------------------------------------------------------------------------- /solution/backend/resources/views/subjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/views/subjects.py -------------------------------------------------------------------------------- /solution/backend/resources/views/text_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/resources/views/text_extraction.py -------------------------------------------------------------------------------- /solution/backend/secret_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/secret_manager.py -------------------------------------------------------------------------------- /solution/backend/serverless_functions/dev_functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/serverless_functions/dev_functions.yml -------------------------------------------------------------------------------- /solution/backend/serverless_functions/experimental_functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/serverless_functions/experimental_functions.yml -------------------------------------------------------------------------------- /solution/backend/serverless_functions/prod_functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/serverless_functions/prod_functions.yml -------------------------------------------------------------------------------- /solution/backend/serverless_functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/serverless_functions/readme.md -------------------------------------------------------------------------------- /solution/backend/serverless_functions/val_functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/serverless_functions/val_functions.yml -------------------------------------------------------------------------------- /solution/backend/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/user/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/user/admin.py -------------------------------------------------------------------------------- /solution/backend/user/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/user/apps.py -------------------------------------------------------------------------------- /solution/backend/user/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/user/migrations/0001_initial.py -------------------------------------------------------------------------------- /solution/backend/user/migrations/0002_alter_profile_department.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/user/migrations/0002_alter_profile_department.py -------------------------------------------------------------------------------- /solution/backend/user/migrations/0005_populate_division_and_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/user/migrations/0005_populate_division_and_group.py -------------------------------------------------------------------------------- /solution/backend/user/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/backend/user/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/user/models.py -------------------------------------------------------------------------------- /solution/backend/user/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/user/tests/conftest.py -------------------------------------------------------------------------------- /solution/backend/user/tests/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/backend/user/tests/test_user.py -------------------------------------------------------------------------------- /solution/backend/user/views.py: -------------------------------------------------------------------------------- 1 | 2 | # Create your views here. 3 | -------------------------------------------------------------------------------- /solution/docker-compose.e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/docker-compose.e2e.yml -------------------------------------------------------------------------------- /solution/docker-compose.fr-parser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/docker-compose.fr-parser.yml -------------------------------------------------------------------------------- /solution/docker-compose.parser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/docker-compose.parser.yml -------------------------------------------------------------------------------- /solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/docker-compose.yml -------------------------------------------------------------------------------- /solution/lambda-proxy/lambda_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/lambda-proxy/lambda_proxy.py -------------------------------------------------------------------------------- /solution/lambda-proxy/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/lambda-proxy/pyproject.toml -------------------------------------------------------------------------------- /solution/lambda-proxy/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /solution/lambda-proxy/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/lambda-proxy/startup.sh -------------------------------------------------------------------------------- /solution/parser/ecfr-parser/.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /solution/parser/ecfr-parser/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/ecfr-parser/Dockerfile -------------------------------------------------------------------------------- /solution/parser/ecfr-parser/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/ecfr-parser/go.mod -------------------------------------------------------------------------------- /solution/parser/ecfr-parser/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/ecfr-parser/go.sum -------------------------------------------------------------------------------- /solution/parser/ecfr-parser/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/ecfr-parser/main.go -------------------------------------------------------------------------------- /solution/parser/ecfr-parser/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/ecfr-parser/main_test.go -------------------------------------------------------------------------------- /solution/parser/fr-parser/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/fr-parser/Dockerfile -------------------------------------------------------------------------------- /solution/parser/fr-parser/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/fr-parser/go.mod -------------------------------------------------------------------------------- /solution/parser/fr-parser/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/fr-parser/go.sum -------------------------------------------------------------------------------- /solution/parser/fr-parser/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/fr-parser/main.go -------------------------------------------------------------------------------- /solution/parser/fr-parser/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/fr-parser/main_test.go -------------------------------------------------------------------------------- /solution/parser/launcher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/launcher/Dockerfile -------------------------------------------------------------------------------- /solution/parser/launcher/parser_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/launcher/parser_launcher.py -------------------------------------------------------------------------------- /solution/parser/launcher/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | -------------------------------------------------------------------------------- /solution/parser/lib/ecfr/ecfr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/ecfr/ecfr.go -------------------------------------------------------------------------------- /solution/parser/lib/ecfr/ecfr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/ecfr/ecfr_test.go -------------------------------------------------------------------------------- /solution/parser/lib/ecfr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/ecfr/go.mod -------------------------------------------------------------------------------- /solution/parser/lib/ecfr/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/ecfr/go.sum -------------------------------------------------------------------------------- /solution/parser/lib/ecfr/sections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/ecfr/sections.go -------------------------------------------------------------------------------- /solution/parser/lib/ecfr/sections_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/ecfr/sections_test.go -------------------------------------------------------------------------------- /solution/parser/lib/ecfr/structure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/ecfr/structure.go -------------------------------------------------------------------------------- /solution/parser/lib/ecfr/structure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/ecfr/structure_test.go -------------------------------------------------------------------------------- /solution/parser/lib/ecfr/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/ecfr/versions.go -------------------------------------------------------------------------------- /solution/parser/lib/ecfr/versions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/ecfr/versions_test.go -------------------------------------------------------------------------------- /solution/parser/lib/eregs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/eregs/config.go -------------------------------------------------------------------------------- /solution/parser/lib/eregs/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/eregs/config_test.go -------------------------------------------------------------------------------- /solution/parser/lib/eregs/eregs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/eregs/eregs.go -------------------------------------------------------------------------------- /solution/parser/lib/eregs/eregs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/eregs/eregs_test.go -------------------------------------------------------------------------------- /solution/parser/lib/eregs/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/eregs/go.mod -------------------------------------------------------------------------------- /solution/parser/lib/eregs/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/eregs/go.sum -------------------------------------------------------------------------------- /solution/parser/lib/eregs/regcore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/eregs/regcore.go -------------------------------------------------------------------------------- /solution/parser/lib/eregs/regcore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/eregs/regcore_test.go -------------------------------------------------------------------------------- /solution/parser/lib/eregs/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/eregs/resources.go -------------------------------------------------------------------------------- /solution/parser/lib/eregs/resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/eregs/resources_test.go -------------------------------------------------------------------------------- /solution/parser/lib/fedreg/fedreg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/fedreg/fedreg.go -------------------------------------------------------------------------------- /solution/parser/lib/fedreg/fedreg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/fedreg/fedreg_test.go -------------------------------------------------------------------------------- /solution/parser/lib/fedreg/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/fedreg/go.mod -------------------------------------------------------------------------------- /solution/parser/lib/fedreg/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/fedreg/go.sum -------------------------------------------------------------------------------- /solution/parser/lib/network/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/network/go.mod -------------------------------------------------------------------------------- /solution/parser/lib/network/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/network/go.sum -------------------------------------------------------------------------------- /solution/parser/lib/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/network/network.go -------------------------------------------------------------------------------- /solution/parser/lib/network/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/network/network_test.go -------------------------------------------------------------------------------- /solution/parser/lib/parsexml/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/parsexml/go.mod -------------------------------------------------------------------------------- /solution/parser/lib/parsexml/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/parsexml/go.sum -------------------------------------------------------------------------------- /solution/parser/lib/parsexml/parsexml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/parsexml/parsexml.go -------------------------------------------------------------------------------- /solution/parser/lib/parsexml/parsexml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/parsexml/parsexml_test.go -------------------------------------------------------------------------------- /solution/parser/lib/parsexml/postprocessing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/parsexml/postprocessing.go -------------------------------------------------------------------------------- /solution/parser/lib/parsexml/postprocessing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/parser/lib/parsexml/postprocessing_test.go -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/Merriweather-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/Merriweather-Bold.ttf -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/Merriweather-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/Merriweather-Italic.ttf -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/Merriweather-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/Merriweather-Regular.ttf -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/OpenSans-Bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/OpenSans-Bold-webfont.ttf -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/OpenSans-Italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/OpenSans-Italic-webfont.ttf -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/OpenSans-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/OpenSans-Light-webfont.ttf -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/OpenSans-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/OpenSans-Regular-webfont.ttf -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/OpenSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/OpenSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/bitter-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/bitter-bold.woff2 -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/bitter-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/bitter-italic.woff2 -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/bitter-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/bitter-regular.woff2 -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/opensans-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/opensans-bold-webfont.woff2 -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /solution/static-assets/regulations/fonts/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/fonts/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/about_automated_updates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/about_automated_updates.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/about_fr_rules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/about_fr_rules.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/arrow-both.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/arrow-both.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/browser.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/calendar-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/calendar-light.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/calendar.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/chrome.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/close--primary-darker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/close--primary-darker.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/close--primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/close--primary.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/close.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/down-arrow.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/edge.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/favicon/favicon.ico -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/favicon/site.webmanifest -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/firefox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/firefox.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/hero-graphic-updated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/hero-graphic-updated.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/hero-graphic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/hero-graphic.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/home_icon_contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/home_icon_contact.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/home_icon_testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/home_icon_testing.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/home_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/home_video.png -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/medicaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/medicaid.png -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/next.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/previous.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/sidebar-collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/sidebar-collapse.svg -------------------------------------------------------------------------------- /solution/static-assets/regulations/images/sidebar-expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/static-assets/regulations/images/sidebar-expand.svg -------------------------------------------------------------------------------- /solution/text-extractor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/Dockerfile -------------------------------------------------------------------------------- /solution/text-extractor/Dockerfile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/Dockerfile.local -------------------------------------------------------------------------------- /solution/text-extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/README.md -------------------------------------------------------------------------------- /solution/text-extractor/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/backends/__init__.py -------------------------------------------------------------------------------- /solution/text-extractor/backends/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/backends/backend.py -------------------------------------------------------------------------------- /solution/text-extractor/backends/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/backends/exceptions.py -------------------------------------------------------------------------------- /solution/text-extractor/backends/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/backends/s3.py -------------------------------------------------------------------------------- /solution/text-extractor/backends/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solution/text-extractor/backends/tests/test_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/backends/tests/test_backend.py -------------------------------------------------------------------------------- /solution/text-extractor/backends/tests/test_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/backends/tests/test_s3.py -------------------------------------------------------------------------------- /solution/text-extractor/backends/tests/test_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/backends/tests/test_web.py -------------------------------------------------------------------------------- /solution/text-extractor/backends/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/backends/web.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/__init__.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/binary.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/email.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/excel.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/exceptions.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/extractor.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/image.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/markup.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/old_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/old_excel.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/outlook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/outlook.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/pdf.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/powerpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/powerpoint.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/rtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/rtf.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/__init__.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/doc/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/doc/expected.txt -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/doc/sample.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/doc/sample.doc -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/docx/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/docx/expected.txt -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/docx/sample.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/docx/sample.docx -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/eml/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/eml/expected.txt -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/eml/sample.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/eml/sample.eml -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/htm/expected.txt: -------------------------------------------------------------------------------- 1 | 2 | Hello world! 3 | abc 4 | this is a link 5 | -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/htm/sample.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/htm/sample.htm -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/html/expected.txt: -------------------------------------------------------------------------------- 1 | 2 | Hello world! 3 | abc 4 | this is a link 5 | 6 | -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/html/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/html/sample.html -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/images/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/images/expected.txt -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/images/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/images/sample.bmp -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/images/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/images/sample.gif -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/images/sample.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/images/sample.jpeg -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/images/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/images/sample.jpg -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/images/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/images/sample.png -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/images/sample.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/images/sample.tga -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/images/sample.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/images/sample.tiff -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/images/sample.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/images/sample.webp -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/msg/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/msg/expected.txt -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/msg/sample.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/msg/sample.msg -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/pptx/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/pptx/expected.txt -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/pptx/sample.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/pptx/sample.pptx -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/rtf/corrupt_expected.txt: -------------------------------------------------------------------------------- 1 | T�st -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/rtf/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/rtf/expected.txt -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/rtf/sample.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/rtf/sample.rtf -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/txt/iso8859-1_expected.txt: -------------------------------------------------------------------------------- 1 | This text file is encoded in ISO 8859-1. 2 | -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/txt/iso8859-1_sample.txt: -------------------------------------------------------------------------------- 1 | This text file is encoded in ISO 8859-1. 2 | -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/txt/utf16_expected.txt: -------------------------------------------------------------------------------- 1 | This file is UTF-16 𤭢 2 | -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/txt/utf8_expected.txt: -------------------------------------------------------------------------------- 1 | This is a text file 2 | -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/txt/utf8_sample.txt: -------------------------------------------------------------------------------- 1 | This is a text file 2 | -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/xhtml/expected.txt: -------------------------------------------------------------------------------- 1 | 2 | Welcome to XHTML 3 | -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/xhtml/sample.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/xhtml/sample.xhtml -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/xls/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/xls/expected.txt -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/xls/sample.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/xls/sample.xls -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/xlsm/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/xlsm/expected.txt -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/xlsm/sample.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/xlsm/sample.xlsm -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/xlsx/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/xlsx/expected.txt -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/xlsx/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/xlsx/sample.xlsx -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/xml/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/xml/expected.txt -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/xml/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/xml/sample.xml -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/zip/expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/zip/expected.json -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/fixtures/zip/sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/fixtures/zip/sample.zip -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_binary.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_email.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_excel.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_extractor.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_image.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_markup.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_old_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_old_excel.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_outlook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_outlook.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_pdf.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_powerpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_powerpoint.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_rtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_rtf.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_text.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_word.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/tests/test_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/tests/test_zip.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/text.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/word.py -------------------------------------------------------------------------------- /solution/text-extractor/extractors/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/extractors/zip.py -------------------------------------------------------------------------------- /solution/text-extractor/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/pyproject.toml -------------------------------------------------------------------------------- /solution/text-extractor/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/requirements.txt -------------------------------------------------------------------------------- /solution/text-extractor/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/test_utils.py -------------------------------------------------------------------------------- /solution/text-extractor/text_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/text_extractor.py -------------------------------------------------------------------------------- /solution/text-extractor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/text-extractor/utils.py -------------------------------------------------------------------------------- /solution/ui/e2e/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress.config.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress.env.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress.env.json.template -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/.gitignore -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/about-page.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/about-page.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/analytics.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/analytics.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/api.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/api.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/custom-headers.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/custom-headers.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/custom-login-page.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/custom-login-page.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/error-page.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/error-page.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/get-access-page.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/get-access-page.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/homepage.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/homepage.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/left-sidebar.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/left-sidebar.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/manual.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/manual.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/obbba.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/obbba.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/part.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/part.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/print.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/print.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/search.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/search.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/sign-in-out.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/sign-in-out.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/statutes.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/statutes.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/subjects.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/subjects.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/swagger.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/swagger.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/e2e/title-tags.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/e2e/title-tags.spec.cy.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/42-existing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/42-existing.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/42.431.E.sections-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/42.431.E.sections-list.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/42.431.E.toc.parts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/42.431.E.toc.parts.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/42.431.internal-formatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/42.431.internal-formatted.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/42.431.internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/42.431.internal.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/42.433.10.public-formatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/42.433.10.public-formatted.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/42.433.10.public.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/42.433.10.public.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/42.433.10.resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/42.433.10.resources.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/42.433.A.internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/42.433.A.internal.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/42.433.A.resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/42.433.A.resources.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/42.433.history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/42.433.history.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/42.433.sections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/42.433.sections.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/acts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/acts.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/categories-internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/categories-internal.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/categories-smm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/categories-smm.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/categories.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/content-search-not-enough.json: -------------------------------------------------------------------------------- 1 | {"detail": "Invalid page."} 2 | -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/counts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/counts.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/example.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/frdocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/frdocs.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/meta-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/meta-data.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/parts-42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/parts-42.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/parts-45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/parts-45.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/parts-last-updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/parts-last-updated.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/policy-docs-50-p1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/policy-docs-50-p1.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/policy-docs-50-p2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/policy-docs-50-p2.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/policy-docs-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/policy-docs-search.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/policy-docs-subjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/policy-docs-subjects.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/recent-guidance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/recent-guidance.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/resources.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/statute-dates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/statute-dates.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/statute-link-not-found.json: -------------------------------------------------------------------------------- 1 | { 2 | "detail": "No citation link found for the provided pattern." 3 | } 4 | -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/statute-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/statute-link.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/statutes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/statutes.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/subjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/subjects.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/titles.json: -------------------------------------------------------------------------------- 1 | [42,45] 2 | -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/fixtures/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/fixtures/toc.json -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/plugins/index.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/schemas/example-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/schemas/example-schema.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/support/common-commands/checkLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/support/common-commands/checkLinks.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/support/common-commands/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/support/common-commands/header.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/support/common-commands/jumpTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/support/common-commands/jumpTo.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/support/common-commands/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/support/common-commands/login.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/support/common-commands/policyDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/support/common-commands/policyDocs.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/support/common-commands/statutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/support/common-commands/statutes.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/support/common-commands/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/support/common-commands/toc.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/support/e2e.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/support/index.js -------------------------------------------------------------------------------- /solution/ui/e2e/cypress/support/validate-schema-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/cypress/support/validate-schema-command.js -------------------------------------------------------------------------------- /solution/ui/e2e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/package-lock.json -------------------------------------------------------------------------------- /solution/ui/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/package.json -------------------------------------------------------------------------------- /solution/ui/e2e/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/e2e/run_tests.sh -------------------------------------------------------------------------------- /solution/ui/regulations/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /solution/ui/regulations/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/alias.js -------------------------------------------------------------------------------- /solution/ui/regulations/composables/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/composables/categories.js -------------------------------------------------------------------------------- /solution/ui/regulations/composables/counts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/composables/counts.js -------------------------------------------------------------------------------- /solution/ui/regulations/composables/dropdownMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/composables/dropdownMenu.js -------------------------------------------------------------------------------- /solution/ui/regulations/composables/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/composables/fetch.js -------------------------------------------------------------------------------- /solution/ui/regulations/composables/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/composables/login.js -------------------------------------------------------------------------------- /solution/ui/regulations/composables/partsLastUpdated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/composables/partsLastUpdated.js -------------------------------------------------------------------------------- /solution/ui/regulations/composables/removeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/composables/removeList.js -------------------------------------------------------------------------------- /solution/ui/regulations/composables/searchResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/composables/searchResults.js -------------------------------------------------------------------------------- /solution/ui/regulations/composables/statuteCitationLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/composables/statuteCitationLink.js -------------------------------------------------------------------------------- /solution/ui/regulations/css/admin/custom_admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/admin/custom_admin.css -------------------------------------------------------------------------------- /solution/ui/regulations/css/admin/synonym.css: -------------------------------------------------------------------------------- 1 | #id_synonyms{ 2 | height:400px !important; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/_application_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/_application_settings.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/_eregs_design_system.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/_eregs_design_system.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/_layout.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/_print.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/main-deploy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/main-deploy.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/main.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_banner.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_buttons_and_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_buttons_and_tooltip.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_compare.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_compare.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_error_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_error_pages.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_expanded_toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_expanded_toc.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_flash_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_flash_banner.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_footer.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_header.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_info_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_info_pages.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_jump_to.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_jump_to.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_login.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_manual.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_manual.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_obbba.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_obbba.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_pagination.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_reg_part_homepage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_reg_part_homepage.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_reg_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_reg_text.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_results_item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_results_item.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_search.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_sidebar_left.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_sidebar_left.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_sidebar_right.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_sidebar_right.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_site_homepage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_site_homepage.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_statutes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_statutes.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_subjects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_subjects.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_subjects_selector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_subjects_selector.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_toc.scss -------------------------------------------------------------------------------- /solution/ui/regulations/css/scss/partials/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/css/scss/partials/_typography.scss -------------------------------------------------------------------------------- /solution/ui/regulations/directives/clickaway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/directives/clickaway.js -------------------------------------------------------------------------------- /solution/ui/regulations/directives/sanitizeHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/directives/sanitizeHtml.js -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-component-lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-component-lib/.gitignore -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-component-lib/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-component-lib/.vscode/extensions.json -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-component-lib/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-component-lib/jsconfig.json -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-component-lib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-component-lib/package-lock.json -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-component-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-component-lib/package.json -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-component-lib/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-component-lib/src/components/index.js -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-component-lib/src/eventbus/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-component-lib/src/eventbus/index.js -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-component-lib/src/go-to-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-component-lib/src/go-to-version.js -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-component-lib/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-component-lib/src/main.js -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-component-lib/src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-component-lib/src/plugins/vuetify.js -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-component-lib/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-component-lib/vite.config.mjs -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-component-lib/watch-dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-component-lib/watch-dist.js -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/.gitignore -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["johnsoncodehk.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/index.html -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/jsconfig.json -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/package-lock.json -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/package.json -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/public/favicon.ico -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/App.vue -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/components/AccessLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/components/AccessLink.vue -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/components/Banner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/components/Banner.vue -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/components/JumpTo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/components/JumpTo.vue -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/components/SearchInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/components/SearchInput.vue -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/components/SignInCTA.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/components/SignInCTA.vue -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/components/SignInLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/components/SignInLink.vue -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/main.js -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/plugins/vuetify.js -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/router/index.js -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/views/Manual.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/views/Manual.vue -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/views/OBBBA.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/views/OBBBA.vue -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/views/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/views/Search.vue -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/views/Statutes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/views/Statutes.vue -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/src/views/Subjects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/src/views/Subjects.vue -------------------------------------------------------------------------------- /solution/ui/regulations/eregs-vite/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/eregs-vite/vite.config.mjs -------------------------------------------------------------------------------- /solution/ui/regulations/msw/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/msw/mockServiceWorker.js -------------------------------------------------------------------------------- /solution/ui/regulations/msw/mocks/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/msw/mocks/categories.js -------------------------------------------------------------------------------- /solution/ui/regulations/msw/mocks/govInfoHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/msw/mocks/govInfoHistory.js -------------------------------------------------------------------------------- /solution/ui/regulations/msw/mocks/granularCounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/msw/mocks/granularCounts.js -------------------------------------------------------------------------------- /solution/ui/regulations/msw/mocks/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/msw/mocks/handlers.js -------------------------------------------------------------------------------- /solution/ui/regulations/msw/mocks/locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/msw/mocks/locations.js -------------------------------------------------------------------------------- /solution/ui/regulations/msw/mocks/parser_success.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/msw/mocks/parser_success.js -------------------------------------------------------------------------------- /solution/ui/regulations/msw/mocks/part_toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/msw/mocks/part_toc.js -------------------------------------------------------------------------------- /solution/ui/regulations/msw/mocks/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/msw/mocks/resources.js -------------------------------------------------------------------------------- /solution/ui/regulations/msw/mocks/subpartTOC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/msw/mocks/subpartTOC.js -------------------------------------------------------------------------------- /solution/ui/regulations/msw/mocks/synthetic-part.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/msw/mocks/synthetic-part.js -------------------------------------------------------------------------------- /solution/ui/regulations/msw/mocks/titles.js: -------------------------------------------------------------------------------- 1 | export const titles = [42, 45]; -------------------------------------------------------------------------------- /solution/ui/regulations/msw/mocks/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/msw/mocks/toc.js -------------------------------------------------------------------------------- /solution/ui/regulations/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/package-lock.json -------------------------------------------------------------------------------- /solution/ui/regulations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/package.json -------------------------------------------------------------------------------- /solution/ui/regulations/test/configuration/setup-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/test/configuration/setup-test.js -------------------------------------------------------------------------------- /solution/ui/regulations/test/unit-test/GovInfoLinks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/test/unit-test/GovInfoLinks.test.js -------------------------------------------------------------------------------- /solution/ui/regulations/test/unit-test/LastParserSuccess.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/test/unit-test/LastParserSuccess.test.js -------------------------------------------------------------------------------- /solution/ui/regulations/utilities/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/utilities/api.js -------------------------------------------------------------------------------- /solution/ui/regulations/utilities/api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/utilities/api.test.js -------------------------------------------------------------------------------- /solution/ui/regulations/utilities/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/utilities/filters.js -------------------------------------------------------------------------------- /solution/ui/regulations/utilities/filters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/utilities/filters.test.js -------------------------------------------------------------------------------- /solution/ui/regulations/utilities/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/utilities/utils.js -------------------------------------------------------------------------------- /solution/ui/regulations/utilities/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/utilities/utils.test.js -------------------------------------------------------------------------------- /solution/ui/regulations/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enterprise-CMCS/cmcs-eregulations/HEAD/solution/ui/regulations/vitest.config.ts --------------------------------------------------------------------------------