LICENSE
README.md
pyproject.toml
oldp/__init__.py
oldp/asgi.py
oldp/settings.py
oldp/urls.py
oldp/wsgi.py
oldp.egg-info/PKG-INFO
oldp.egg-info/SOURCES.txt
oldp.egg-info/dependency_links.txt
oldp.egg-info/requires.txt
oldp.egg-info/top_level.txt
oldp/api/__init__.py
oldp/api/exceptions.py
oldp/api/me_views.py
oldp/api/mixins.py
oldp/api/permissions.py
oldp/api/urls.py
oldp/api/views.py
oldp/api/tests/__init__.py
oldp/api/tests/test_me_api.py
oldp/api/tests/test_views.py
oldp/apps/__init__.py
oldp/apps/accounts/__init__.py
oldp/apps/accounts/adapters.py
oldp/apps/accounts/admin.py
oldp/apps/accounts/api_views.py
oldp/apps/accounts/apps.py
oldp/apps/accounts/authentication.py
oldp/apps/accounts/models.py
oldp/apps/accounts/permissions.py
oldp/apps/accounts/serializers.py
oldp/apps/accounts/signals.py
oldp/apps/accounts/urls.py
oldp/apps/accounts/views.py
oldp/apps/accounts/management/__init__.py
oldp/apps/accounts/management/commands/__init__.py
oldp/apps/accounts/management/commands/load_dummy_users.py
oldp/apps/accounts/migrations/0001_initial.py
oldp/apps/accounts/migrations/0002_apitokenpermission_apitokenpermissiongroup_and_more.py
oldp/apps/accounts/migrations/0003_create_default_permissions.py
oldp/apps/accounts/migrations/__init__.py
oldp/apps/accounts/tests/__init__.py
oldp/apps/accounts/tests/test_admin.py
oldp/apps/accounts/tests/test_authentication.py
oldp/apps/accounts/tests/test_me_api.py
oldp/apps/accounts/tests/test_models.py
oldp/apps/accounts/tests/test_multitoken_views.py
oldp/apps/accounts/tests/test_permissions.py
oldp/apps/accounts/tests/test_signals.py
oldp/apps/accounts/tests/test_views.py
oldp/apps/annotations/__init__.py
oldp/apps/annotations/admin.py
oldp/apps/annotations/api_views.py
oldp/apps/annotations/apps.py
oldp/apps/annotations/content_models.py
oldp/apps/annotations/filters.py
oldp/apps/annotations/models.py
oldp/apps/annotations/serializers.py
oldp/apps/annotations/migrations/0001_initial.py
oldp/apps/annotations/migrations/0002_auto_20190131_2240.py
oldp/apps/annotations/migrations/0003_casemarker.py
oldp/apps/annotations/migrations/0004_default_color.py
oldp/apps/annotations/migrations/0005_alter_annotationlabel_id_alter_caseannotation_id_and_more.py
oldp/apps/annotations/migrations/__init__.py
oldp/apps/annotations/tests/__init__.py
oldp/apps/annotations/tests/test_api.py
oldp/apps/annotations/tests/test_models.py
oldp/apps/cases/__init__.py
oldp/apps/cases/admin.py
oldp/apps/cases/admin_views.py
oldp/apps/cases/api_views.py
oldp/apps/cases/apps.py
oldp/apps/cases/exceptions.py
oldp/apps/cases/filters.py
oldp/apps/cases/models.py
oldp/apps/cases/search_indexes.py
oldp/apps/cases/serializers.py
oldp/apps/cases/signals.py
oldp/apps/cases/sitemaps.py
oldp/apps/cases/urls.py
oldp/apps/cases/views.py
oldp/apps/cases/management/__init__.py
oldp/apps/cases/management/commands/__init__.py
oldp/apps/cases/management/commands/load_dummy_api_cases.py
oldp/apps/cases/management/commands/process_cases.py
oldp/apps/cases/migrations/0001_initial.py
oldp/apps/cases/migrations/0002_auto_20171221_1055.py
oldp/apps/cases/migrations/0003_auto_20180209_0926.py
oldp/apps/cases/migrations/0004_auto_20180209_1748.py
oldp/apps/cases/migrations/0005_auto_20180424_0849.py
oldp/apps/cases/migrations/0006_auto_20180425_0726.py
oldp/apps/cases/migrations/0007_auto_20180425_2039.py
oldp/apps/cases/migrations/0008_auto_20180426_0806.py
oldp/apps/cases/migrations/0009_auto_20180430_1225.py
oldp/apps/cases/migrations/0010_case_abstract.py
oldp/apps/cases/migrations/0011_auto_20180921_1117.py
oldp/apps/cases/migrations/0012_auto_20181025_1014.py
oldp/apps/cases/migrations/0013_auto_20181105_1442.py
oldp/apps/cases/migrations/0014_case_nlp_content.py
oldp/apps/cases/migrations/0015_auto_20181124_2122.py
oldp/apps/cases/migrations/0016_auto_20181211_1658.py
oldp/apps/cases/migrations/0017_case_source_file.py
oldp/apps/cases/migrations/0018_add_db_indexes.py
oldp/apps/cases/migrations/0019_source_to_extra_model.py
oldp/apps/cases/migrations/0020_copy_source_data.py
oldp/apps/cases/migrations/0021_remove_old_source_fields.py
oldp/apps/cases/migrations/0022_case_created_by_token.py
oldp/apps/cases/migrations/0023_alter_case_following_cases_alter_case_id_and_more.py
oldp/apps/cases/migrations/0024_add_performance_indexes.py
oldp/apps/cases/migrations/0025_review_status.py
oldp/apps/cases/migrations/__init__.py
oldp/apps/cases/processing/__init__.py
oldp/apps/cases/processing/case_processor.py
oldp/apps/cases/processing/processing_steps/__init__.py
oldp/apps/cases/processing/processing_steps/assign_court.py
oldp/apps/cases/processing/processing_steps/extract_refs.py
oldp/apps/cases/processing/processing_steps/generate_related.py
oldp/apps/cases/processing/processing_steps/set_review_accepted.py
oldp/apps/cases/processing/processing_steps/set_review_pending.py
oldp/apps/cases/processing/processing_steps/set_review_rejected.py
oldp/apps/cases/services/__init__.py
oldp/apps/cases/services/case_creator.py
oldp/apps/cases/services/court_resolver.py
oldp/apps/cases/tests/__init__.py
oldp/apps/cases/tests/test_admin.py
oldp/apps/cases/tests/test_admin_dashboard.py
oldp/apps/cases/tests/test_api_review_status.py
oldp/apps/cases/tests/test_case_creation_api.py
oldp/apps/cases/tests/test_commands.py
oldp/apps/cases/tests/test_models.py
oldp/apps/cases/tests/test_processing.py
oldp/apps/cases/tests/test_processing_steps.py
oldp/apps/cases/tests/test_views.py
oldp/apps/contact/__init__.py
oldp/apps/contact/admin.py
oldp/apps/contact/apps.py
oldp/apps/contact/forms.py
oldp/apps/contact/models.py
oldp/apps/contact/urls.py
oldp/apps/contact/views.py
oldp/apps/contact/migrations/__init__.py
oldp/apps/contact/templatetags/__init__.py
oldp/apps/contact/templatetags/contact.py
oldp/apps/contact/tests/__init__.py
oldp/apps/contact/tests/test_views.py
oldp/apps/courts/__init__.py
oldp/apps/courts/admin.py
oldp/apps/courts/admin_views.py
oldp/apps/courts/apps.py
oldp/apps/courts/exceptions.py
oldp/apps/courts/filters.py
oldp/apps/courts/models.py
oldp/apps/courts/serializers.py
oldp/apps/courts/sitemaps.py
oldp/apps/courts/urls.py
oldp/apps/courts/views.py
oldp/apps/courts/management/__init__.py
oldp/apps/courts/management/commands/__init__.py
oldp/apps/courts/management/commands/process_courts.py
oldp/apps/courts/migrations/0001_initial.py
oldp/apps/courts/migrations/0002_auto_20171206_2142.py
oldp/apps/courts/migrations/0003_auto_20171206_2143.py
oldp/apps/courts/migrations/0004_court_updated.py
oldp/apps/courts/migrations/0005_auto_20171207_0947.py
oldp/apps/courts/migrations/0006_auto_20180130_1254.py
oldp/apps/courts/migrations/0007_auto_20180209_0926.py
oldp/apps/courts/migrations/0008_auto_20180209_1002.py
oldp/apps/courts/migrations/0009_auto_20180209_1604.py
oldp/apps/courts/migrations/0010_auto_20180424_0849.py
oldp/apps/courts/migrations/0011_court_email.py
oldp/apps/courts/migrations/0012_auto_20180504_1328.py
oldp/apps/courts/migrations/0013_auto_20181128_1054.py
oldp/apps/courts/migrations/0014_auto_20181203_1057.py
oldp/apps/courts/migrations/0015_auto_20190110_2204.py
oldp/apps/courts/migrations/0016_auto_20190131_2240.py
oldp/apps/courts/migrations/0017_indexes_and_default_ordering.py
oldp/apps/courts/migrations/0018_alter_city_id_alter_country_id_alter_court_id_and_more.py
oldp/apps/courts/migrations/0019_court_created_by_token_court_created_date_and_more.py
oldp/apps/courts/migrations/__init__.py
oldp/apps/courts/processing/__init__.py
oldp/apps/courts/processing/court_processor.py
oldp/apps/courts/processing/processing_steps/__init__.py
oldp/apps/courts/processing/processing_steps/assign_jurisdiction.py
oldp/apps/courts/processing/processing_steps/enrich_from_wikipedia.py
oldp/apps/courts/processing/processing_steps/set_aliases.py
oldp/apps/courts/processing/processing_steps/set_review_accepted.py
oldp/apps/courts/processing/processing_steps/set_review_pending.py
oldp/apps/courts/services/__init__.py
oldp/apps/courts/services/court_creator.py
oldp/apps/courts/tests/__init__.py
oldp/apps/courts/tests/test_admin_dashboard.py
oldp/apps/courts/tests/test_api_review_status.py
oldp/apps/courts/tests/test_court_creation_api.py
oldp/apps/courts/tests/test_models.py
oldp/apps/courts/tests/test_processing.py
oldp/apps/courts/tests/test_processing_steps.py
oldp/apps/courts/tests/test_views.py
oldp/apps/homepage/__init__.py
oldp/apps/homepage/admin.py
oldp/apps/homepage/apps.py
oldp/apps/homepage/models.py
oldp/apps/homepage/urls.py
oldp/apps/homepage/views.py
oldp/apps/homepage/management/__init__.py
oldp/apps/homepage/management/commands/__init__.py
oldp/apps/homepage/management/commands/dump_api_data.py
oldp/apps/homepage/management/commands/render_html_pages.py
oldp/apps/homepage/migrations/__init__.py
oldp/apps/homepage/tests/__init__.py
oldp/apps/homepage/tests/test_commands.py
oldp/apps/homepage/tests/test_views.py
oldp/apps/laws/__init__.py
oldp/apps/laws/admin.py
oldp/apps/laws/admin_views.py
oldp/apps/laws/api_views.py
oldp/apps/laws/apps.py
oldp/apps/laws/exceptions.py
oldp/apps/laws/models.py
oldp/apps/laws/search_indexes.py
oldp/apps/laws/serializers.py
oldp/apps/laws/sitemaps.py
oldp/apps/laws/urls.py
oldp/apps/laws/views.py
oldp/apps/laws/management/__init__.py
oldp/apps/laws/management/commands/__init__.py
oldp/apps/laws/management/commands/import_grundgesetz.py
oldp/apps/laws/management/commands/process_laws.py
oldp/apps/laws/management/commands/set_law_book_order.py
oldp/apps/laws/management/commands/set_law_book_revision.py
oldp/apps/laws/migrations/0001_initial.py
oldp/apps/laws/migrations/0002_remove_law_foo.py
oldp/apps/laws/migrations/0003_relatedlaw.py
oldp/apps/laws/migrations/0004_auto_20171222_1911.py
oldp/apps/laws/migrations/0005_auto_20180103_1151.py
oldp/apps/laws/migrations/0006_auto_20180103_1158.py
oldp/apps/laws/migrations/0007_lawbook_latest.py
oldp/apps/laws/migrations/0008_auto_20180106_1123.py
oldp/apps/laws/migrations/0009_auto_20180430_1225.py
oldp/apps/laws/migrations/0010_auto_20180503_0912.py
oldp/apps/laws/migrations/0011_auto_20180917_1455.py
oldp/apps/laws/migrations/0012_auto_20180921_1104.py
oldp/apps/laws/migrations/0013_auto_20181024_1559.py
oldp/apps/laws/migrations/0014_auto_20181025_1014.py
oldp/apps/laws/migrations/0015_remove_law_text.py
oldp/apps/laws/migrations/0016_lawbook_topics.py
oldp/apps/laws/migrations/0017_auto_20181031_1051.py
oldp/apps/laws/migrations/0018_auto_20181128_1059.py
oldp/apps/laws/migrations/0019_add_revision_constraints_and_validation.py
oldp/apps/laws/migrations/0020_add_created_by_token.py
oldp/apps/laws/migrations/0021_add_performance_indexes.py
oldp/apps/laws/migrations/0022_lawbook_created_date_lawbook_updated_date.py
oldp/apps/laws/migrations/0023_review_status.py
oldp/apps/laws/migrations/__init__.py
oldp/apps/laws/processing/__init__.py
oldp/apps/laws/processing/law_processor.py
oldp/apps/laws/processing/processing_steps/__init__.py
oldp/apps/laws/processing/processing_steps/extract_refs.py
oldp/apps/laws/processing/processing_steps/extract_topics.py
oldp/apps/laws/processing/processing_steps/set_lawbook_review_accepted.py
oldp/apps/laws/processing/processing_steps/set_lawbook_review_pending.py
oldp/apps/laws/processing/processing_steps/set_review_accepted.py
oldp/apps/laws/processing/processing_steps/set_review_pending.py
oldp/apps/laws/services/__init__.py
oldp/apps/laws/services/law_creator.py
oldp/apps/laws/services/lawbook_creator.py
oldp/apps/laws/tests/__init__.py
oldp/apps/laws/tests/test_admin_dashboard.py
oldp/apps/laws/tests/test_api_review_status.py
oldp/apps/laws/tests/test_commands.py
oldp/apps/laws/tests/test_law_creation_api.py
oldp/apps/laws/tests/test_processing.py
oldp/apps/laws/tests/test_revisions.py
oldp/apps/laws/tests/test_views.py
oldp/apps/lib/__init__.py
oldp/apps/lib/apps.py
oldp/apps/lib/context_processors.py
oldp/apps/lib/filters.py
oldp/apps/lib/markers.py
oldp/apps/lib/views.py
oldp/apps/lib/widgets.py
oldp/apps/lib/templatetags/__init__.py
oldp/apps/lib/templatetags/qstring.py
oldp/apps/lib/templatetags/string_filters.py
oldp/apps/lib/tests/__init__.py
oldp/apps/lib/tests/test_filters.py
oldp/apps/lib/tests/test_markers.py
oldp/apps/lib/tests/test_widgets.py
oldp/apps/processing/__init__.py
oldp/apps/processing/admin.py
oldp/apps/processing/admin_views.py
oldp/apps/processing/apps.py
oldp/apps/processing/content_processor.py
oldp/apps/processing/errors.py
oldp/apps/processing/management/__init__.py
oldp/apps/processing/management/commands/__init__.py
oldp/apps/processing/processing_steps/__init__.py
oldp/apps/processing/processing_steps/post/__init__.py
oldp/apps/processing/processing_steps/post/send_to_fs.py
oldp/apps/processing/tests/__init__.py
oldp/apps/processing/tests/test_content_processor.py
oldp/apps/references/__init__.py
oldp/apps/references/admin.py
oldp/apps/references/apps.py
oldp/apps/references/content_models.py
oldp/apps/references/models.py
oldp/apps/references/views.py
oldp/apps/references/management/__init__.py
oldp/apps/references/management/commands/__init__.py
oldp/apps/references/management/commands/assign_references.py
oldp/apps/references/management/commands/dump_references.py
oldp/apps/references/migrations/0001_initial.py
oldp/apps/references/migrations/0002_auto_20171221_1318.py
oldp/apps/references/migrations/0003_auto_20171221_1324.py
oldp/apps/references/migrations/0004_auto_20171221_1344.py
oldp/apps/references/migrations/0005_auto_20180424_0849.py
oldp/apps/references/migrations/0006_auto_20181022_2113.py
oldp/apps/references/migrations/0007_fake_helper_tables_for_m2m.py
oldp/apps/references/migrations/0008_remove_uuid__change_line_to_int.py
oldp/apps/references/migrations/0009_auto_20190218_1144.py
oldp/apps/references/migrations/0010_alter_casereferencemarker_id_and_more.py
oldp/apps/references/migrations/0011_add_performance_indexes.py
oldp/apps/references/migrations/__init__.py
oldp/apps/references/processing/__init__.py
oldp/apps/references/processing/reference_processor.py
oldp/apps/references/processing/processing_steps/__init__.py
oldp/apps/references/processing/processing_steps/assign_refs.py
oldp/apps/references/processing/processing_steps/extract_refs.py
oldp/apps/references/tests/__init__.py
oldp/apps/references/tests/test_commands.py
oldp/apps/references/tests/test_models.py
oldp/apps/references/tests/test_processing_assign_refs.py
oldp/apps/references/tests/test_processing_extract_refs.py
oldp/apps/references/tests/test_reference_methods.py
oldp/apps/search/__init__.py
oldp/apps/search/admin.py
oldp/apps/search/api.py
oldp/apps/search/apps.py
oldp/apps/search/filters.py
oldp/apps/search/mock_backend.py
oldp/apps/search/models.py
oldp/apps/search/search_backend.py
oldp/apps/search/views.py
oldp/apps/search/management/__init__.py
oldp/apps/search/management/commands/__init__.py
oldp/apps/search/management/commands/generate_related.py
oldp/apps/search/migrations/0001_initial.py
oldp/apps/search/migrations/0002_auto_20180425_0944.py
oldp/apps/search/migrations/0003_alter_searchquery_id.py
oldp/apps/search/migrations/__init__.py
oldp/apps/search/processing/__init__.py
oldp/apps/search/processing/processing_steps/__init__.py
oldp/apps/search/processing/processing_steps/generate_related.py
oldp/apps/search/templatetags/__init__.py
oldp/apps/search/templatetags/search.py
oldp/apps/search/tests/__init__.py
oldp/apps/search/tests/test_commands.py
oldp/apps/search/tests/test_models.py
oldp/apps/search/tests/test_search_review_status.py
oldp/apps/search/tests/test_views.py
oldp/apps/sources/__init__.py
oldp/apps/sources/admin.py
oldp/apps/sources/apps.py
oldp/apps/sources/models.py
oldp/apps/sources/urls.py
oldp/apps/sources/views.py
oldp/apps/sources/management/__init__.py
oldp/apps/sources/management/commands/__init__.py
oldp/apps/sources/management/commands/report_source_stats.py
oldp/apps/sources/migrations/0001_initial.py
oldp/apps/sources/migrations/0002_alter_source_id.py
oldp/apps/sources/migrations/__init__.py
oldp/apps/topics/__init__.py
oldp/apps/topics/admin.py
oldp/apps/topics/apps.py
oldp/apps/topics/models.py
oldp/apps/topics/tests.py
oldp/apps/topics/views.py
oldp/apps/topics/migrations/0001_initial.py
oldp/apps/topics/migrations/0002_auto_20181031_1051.py
oldp/apps/topics/migrations/0003_alter_topic_id.py
oldp/apps/topics/migrations/__init__.py
oldp/apps/topics/processing/__init__.py
oldp/apps/topics/processing/processing_steps/__init__.py
oldp/apps/topics/processing/processing_steps/assign_topics_to_law_book.py
oldp/utils/__init__.py
oldp/utils/cache_per_user.py
oldp/utils/limited_paginator.py
oldp/utils/test_utils.py
oldp/utils/version.py
oldp/utils/tests/__init__.py
oldp/utils/tests/test_cache_per_user.py
oldp/utils/tests/test_limited_paginator.py
oldp/utils/tests/test_utils.py