├── .cursor └── rules │ └── code-base-intro.mdc ├── .dockerignore ├── .github ├── dependabot.yml └── workflows │ ├── lints.yml │ └── tests.yml ├── .gitignore ├── Brewfile ├── Brewfile.lock.json ├── README.md ├── developer.md ├── docker-compose.override.yml ├── docker-compose.yml ├── errata.md ├── ingest.sh ├── init.sh ├── install.md ├── make_cert.sh ├── perma_web ├── Dockerfile ├── Procfile ├── __init__.py ├── api │ ├── README.md │ ├── __init__.py │ ├── authentication.py │ ├── middleware.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_current_user_authorization.py │ │ ├── test_current_user_resource.py │ │ ├── test_folder_authorization.py │ │ ├── test_folder_resource.py │ │ ├── test_link_authorization.py │ │ ├── test_link_resource.py │ │ ├── test_link_validation.py │ │ ├── utils.py │ │ └── views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── browserslist ├── conftest.py ├── fixtures │ ├── api_keys.json │ ├── archive.json │ ├── folders.json │ ├── sites.json │ └── users.json ├── functional_tests │ ├── __init__.py │ ├── test_auth.py │ ├── test_contact.py │ ├── test_folders.py │ ├── test_links.py │ └── test_static.py ├── karma.config.js ├── lil-archive-keyring.gpg ├── manage.py ├── npm-shrinkwrap.json ├── old_style_archive.tar.gz ├── package.json ├── perma │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── celery.py │ ├── celery_tasks.py │ ├── debug_utils.py │ ├── email.py │ ├── exceptions.py │ ├── forms.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_squashed_0068_auto_20210525_1643.py │ │ ├── 0002_auto_20220119_2034.py │ │ ├── 0003_auto_20220120_1522.py │ │ ├── 0004_auto_20220721_1600.py │ │ ├── 0005_auto_20221013_2150.py │ │ ├── 0006_auto_20221024_1521.py │ │ ├── 0007_auto_20221024_2049.py │ │ ├── 0008_auto_20221027_1556.py │ │ ├── 0009_internetarchivefile_status.py │ │ ├── 0010_internetarchiveitem_cached_is_dark.py │ │ ├── 0011_auto_20221117_0025.py │ │ ├── 0012_internetarchiveitem_tasks_in_progress.py │ │ ├── 0013_internetarchiveitem_confirmed_exists.py │ │ ├── 0014_auto_20230214_2156.py │ │ ├── 0015_alter_internetarchiveitem_tasks_in_progress.py │ │ ├── 0016_link_guid_case_insensitive_idx.py │ │ ├── 0017_auto_20230404_1924.py │ │ ├── 0018_auto_20230424_1836.py │ │ ├── 0019_auto_20230424_2134.py │ │ ├── 0020_linkbatch_cached_capture_job_count.py │ │ ├── 0021_auto_20230629_1545.py │ │ ├── 0022_auto_20230830_1621.py │ │ ├── 0023_auto_20230830_2102.py │ │ ├── 0024_capturejob_scoop_logs.py │ │ ├── 0025_auto_20230831_1436.py │ │ ├── 0026_capturejob_scoop_state.py │ │ ├── 0027_alter_capture_role.py │ │ ├── 0028_auto_20230905_1813.py │ │ ├── 0029_capturejob_scoop_job_id.py │ │ ├── 0030_alter_capturejob_engine.py │ │ ├── 0031_delete_uncaughterror.py │ │ ├── 0032_alter_genericstringtaggeditem_content_type_and_more.py │ │ ├── 0033_remove_historicalregistrar_latitude_and_more.py │ │ ├── 0034_remove_historicallink_thumbnail_status_and_more.py │ │ ├── 0035_link_ia_eligible_for_date_idx.py │ │ ├── 0036_delete_minutestats_delete_weekstats.py │ │ ├── 0037_historicallinkuser_is_superuser_linkuser_groups_and_more.py │ │ ├── 0038_auto_20240318_2102.py │ │ ├── 0039_auto_20240412_1801.py │ │ ├── 0040_folder_cached_has_children.py │ │ ├── 0041_folder_tree_root.py │ │ ├── 0042_remove_folder_level_remove_folder_lft_and_more.py │ │ ├── 0043_alter_folder_options_historicallink_wacz_size_and_more.py │ │ ├── 0044_auto_20240701_1652.py │ │ ├── 0045_alter_capture_role.py │ │ ├── 0046_capturejob_archive_formats.py │ │ ├── 0047_sponsorship_expires_at.py │ │ ├── 0048_sponsorship_perma_spons_status_b5a883_idx.py │ │ ├── 0049_userorganizationaffiliation_and_more.py │ │ ├── 0050_userorganizationaffiliation_expires_at_and_more.py │ │ ├── 0051_auto_20241030_1732.py │ │ ├── 0052_remove_link_perma_link_creatio_be33de_idx_and_more.py │ │ ├── 0053_link_perma_link_creatio_ef2767_idx.py │ │ ├── 0054_capturejob_perma_captu_capture_daadd2_idx.py │ │ ├── 0055_auto_20241114_1703.py │ │ ├── 0056_delete_historicallink.py │ │ ├── 0057_auto_20241120_1837.py │ │ ├── 0058_capturejob_creation_timestamp.py │ │ ├── 0059_alter_capturejob_creation_timestamp.py │ │ ├── 0060_capturejob_validation_status_code.py │ │ └── __init__.py │ ├── models.py │ ├── reporter.py │ ├── settings │ │ ├── README.md │ │ ├── __init__.py │ │ ├── deployments │ │ │ ├── __init__.py │ │ │ ├── settings_common.py │ │ │ ├── settings_dev.py │ │ │ ├── settings_prod.py │ │ │ └── settings_testing.py │ │ ├── settings.example.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── environmental_settings.py │ │ │ ├── helpers.py │ │ │ └── post_processing.py │ ├── signals.py │ ├── storage_backends.py │ ├── templates │ │ ├── 403.html │ │ ├── 403_csrf.html │ │ ├── 404.html │ │ ├── 500.html │ │ ├── about.html │ │ ├── admin-layout.html │ │ ├── admin-stats.html │ │ ├── admin │ │ │ ├── base_site.html │ │ │ ├── input_filter.html │ │ │ ├── pagination.html │ │ │ └── perma │ │ │ │ ├── internetarchiveitem │ │ │ │ └── change_form.html │ │ │ │ ├── linkuser │ │ │ │ └── change_form.html │ │ │ │ └── organization │ │ │ │ └── change_form.html │ │ ├── api_key_embedded_form.html │ │ ├── archive │ │ │ ├── base-archive-responsive.html │ │ │ ├── confirm │ │ │ │ ├── base-archive-confirm.html │ │ │ │ └── link-delete-confirm.html │ │ │ ├── dark-archive.html │ │ │ ├── deleted.html │ │ │ ├── download_to_view_pdf.html │ │ │ ├── iframe.html │ │ │ ├── includes │ │ │ │ ├── link_batch_modal.html │ │ │ │ ├── upload_your_own.html │ │ │ │ └── wacz_exhibitor_iframe.html │ │ │ └── single-link.html │ │ ├── base-responsive.html │ │ ├── contact-thanks.html │ │ ├── contact.html │ │ ├── contingency_plan.html │ │ ├── copyright_policy.html │ │ ├── docs │ │ │ ├── accounts.html │ │ │ ├── developer │ │ │ │ ├── index.html │ │ │ │ └── toc.html │ │ │ ├── docs_menu.html │ │ │ ├── faq.html │ │ │ ├── index.html │ │ │ ├── libraries.html │ │ │ └── perma-link-creation.html │ │ ├── email │ │ │ ├── admin │ │ │ │ ├── contact.txt │ │ │ │ ├── court_request.txt │ │ │ │ ├── deletion_request.txt │ │ │ │ ├── firm_request.txt │ │ │ │ ├── pinged_registrar_users.txt │ │ │ │ ├── premium_request.txt │ │ │ │ ├── registrar_request.txt │ │ │ │ ├── report.txt │ │ │ │ └── sync_to_cm.txt │ │ │ ├── default.txt │ │ │ ├── includes │ │ │ │ └── activation.txt │ │ │ ├── merged.txt │ │ │ ├── new_user.txt │ │ │ ├── new_user_added_by_other.txt │ │ │ ├── new_user_added_to_org_by_other.txt │ │ │ ├── new_user_added_to_org_by_other_from_bulk_form.txt │ │ │ ├── new_user_added_to_registrar_by_other.txt │ │ │ ├── new_user_added_to_sponsoring_registrar_by_other.txt │ │ │ ├── organization_user_expiry_notification.txt │ │ │ ├── pending_registrar.txt │ │ │ ├── registrar_approved.txt │ │ │ ├── registrar_contact.txt │ │ │ ├── registrar_user_ping.txt │ │ │ ├── special.txt │ │ │ ├── sponsored_user_expiry_notification.txt │ │ │ ├── unactivated_user_reset_email.txt │ │ │ ├── user_added_to_admin.txt │ │ │ ├── user_added_to_organization.txt │ │ │ ├── user_added_to_organization_from_bulk_form.txt │ │ │ ├── user_added_to_registrar.txt │ │ │ └── user_added_to_sponsoring_registrar.txt │ │ ├── errors │ │ │ └── view.html │ │ ├── includes │ │ │ ├── analytics.html │ │ │ ├── fieldset.html │ │ │ └── upper_right_menu.html │ │ ├── js_config.html │ │ ├── landing.html │ │ ├── manage-layout.html │ │ ├── memento │ │ │ └── timemap.html │ │ ├── password_change_embedded_form.html │ │ ├── privacy_policy.html │ │ ├── provenance-summary.html │ │ ├── rate_limit.html │ │ ├── read_only_mode.html │ │ ├── registration │ │ │ ├── check_email.html │ │ │ ├── check_email_library.html │ │ │ ├── court_request.html │ │ │ ├── firm_request.html │ │ │ ├── includes │ │ │ │ └── sign-up-navigation.html │ │ │ ├── login.html │ │ │ ├── login_attempts_exceeded.html │ │ │ ├── logout.html │ │ │ ├── logout_success.html │ │ │ ├── not_active.html │ │ │ ├── password_change_done.html │ │ │ ├── password_change_form.html │ │ │ ├── password_reset_complete.html │ │ │ ├── password_reset_confirm.html │ │ │ ├── password_reset_done.html │ │ │ ├── password_reset_email.html │ │ │ ├── password_reset_form.html │ │ │ ├── password_update_form.html │ │ │ ├── sign-up-courts.html │ │ │ ├── sign-up-firms.html │ │ │ ├── sign-up-libraries.html │ │ │ └── sign-up.html │ │ ├── report.html │ │ ├── return_policy.html │ │ ├── robots.txt │ │ ├── settings-layout.html │ │ ├── settings │ │ │ ├── settings-affiliations.html │ │ │ ├── settings-organizations-change-privacy.html │ │ │ ├── settings-password.html │ │ │ ├── settings-profile.html │ │ │ ├── settings-subscription-cancel-confirm.html │ │ │ ├── settings-subscription-update.html │ │ │ ├── settings-tools.html │ │ │ ├── settings-usage-plan-unavailable.html │ │ │ └── settings-usage-plan.html │ │ ├── terms_of_service.html │ │ └── user_management │ │ │ ├── activation-email.html │ │ │ ├── add_multiple_users_to_org.html │ │ │ ├── approve_pending_registrar.html │ │ │ ├── create-link.html │ │ │ ├── deactivated.html │ │ │ ├── includes │ │ │ ├── comma.html │ │ │ ├── edit_sponsorship.html │ │ │ ├── paginator.html │ │ │ ├── search_form.html │ │ │ └── search_form_simple.html │ │ │ ├── manage_organization_affiliation_expiration.html │ │ │ ├── manage_orgs.html │ │ │ ├── manage_registrars.html │ │ │ ├── manage_single_organization.html │ │ │ ├── manage_single_registrar.html │ │ │ ├── manage_single_user.html │ │ │ ├── manage_single_user_links.html │ │ │ ├── manage_sponsorship_affiliation_expiration.html │ │ │ ├── manage_users.html │ │ │ ├── organization_delete_confirm.html │ │ │ ├── user_add_confirm.html │ │ │ ├── user_add_to_admin_confirm.html │ │ │ ├── user_add_to_organization_confirm.html │ │ │ ├── user_add_to_registrar_confirm.html │ │ │ ├── user_add_to_sponsoring_registrar_confirm.html │ │ │ ├── user_delete_confirm.html │ │ │ ├── user_leave_confirm.html │ │ │ ├── user_reactivate_confirm.html │ │ │ ├── user_readd_sponsored_confirm.html │ │ │ ├── user_remove_admin_confirm.html │ │ │ ├── user_remove_registrar_confirm.html │ │ │ └── user_remove_sponsored_confirm.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── archive_description.py │ │ ├── current_query_string.py │ │ ├── debug.py │ │ ├── input_type.py │ │ ├── join_with_and.py │ │ ├── local_datetime.py │ │ ├── set_trace.py │ │ ├── short_page_range.py │ │ ├── timedelta_from_now.py │ │ ├── visible_organizations.py │ │ └── visible_sponsorships.py │ ├── tests │ │ ├── __init__.py │ │ ├── assets │ │ │ ├── extra_capture_files │ │ │ │ └── robots.txt │ │ │ ├── new_style_archive │ │ │ │ ├── archive.warc.gz │ │ │ │ └── cap.png │ │ │ ├── old_style_archive │ │ │ │ ├── cap.png │ │ │ │ └── source │ │ │ │ │ └── index.html │ │ │ └── target_capture_files │ │ │ │ ├── favicon.ico │ │ │ │ ├── favicon_meta.ico │ │ │ │ ├── narrow.png │ │ │ │ ├── no-title-or-description-test.html │ │ │ │ ├── test.html │ │ │ │ ├── test.jpg │ │ │ │ ├── test.mp4 │ │ │ │ ├── test.pdf │ │ │ │ ├── test.swf │ │ │ │ ├── test.wav │ │ │ │ ├── test1.jpg │ │ │ │ ├── test2.png │ │ │ │ ├── test_fallback.jpg │ │ │ │ ├── test_media_a.html │ │ │ │ ├── test_media_b.html │ │ │ │ ├── test_media_c.html │ │ │ │ ├── test_media_outer.html │ │ │ │ ├── wide1.png │ │ │ │ └── wide2.png │ │ ├── test_admin.py │ │ ├── test_capture_job.py │ │ ├── test_cloudflare_cache.py │ │ ├── test_email.py │ │ ├── test_link_count_caching.py │ │ ├── test_models.py │ │ ├── test_permissions.py │ │ ├── test_urls.py │ │ ├── test_utils.py │ │ ├── test_views_admin_stats.py │ │ ├── test_views_auth.py │ │ ├── test_views_common.py │ │ ├── test_views_contact.py │ │ ├── test_views_link_management.py │ │ ├── test_views_memento.py │ │ ├── test_views_playback.py │ │ ├── test_views_user_management.py │ │ ├── test_views_user_settings.py │ │ ├── test_wsgi.py │ │ ├── utils.py │ │ └── views.py │ ├── urls.py │ ├── utils.py │ ├── views │ │ ├── __init__.py │ │ ├── admin_stats.py │ │ ├── common.py │ │ ├── contact.py │ │ ├── error_management.py │ │ ├── link_management.py │ │ ├── memento.py │ │ ├── playback.py │ │ ├── service.py │ │ ├── user_management.py │ │ ├── user_settings.py │ │ └── user_sign_up.py │ ├── wsgi.py │ └── wsgi_utils.py ├── reporting │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_federalcourtorganization.py │ │ └── __init__.py │ ├── models.py │ └── templates │ │ └── admin │ │ └── reporting │ │ ├── federalcourt │ │ └── change_list.html │ │ └── federalcourtorganization │ │ └── change_list.html ├── requirements.in ├── requirements.txt ├── setup.cfg ├── spec │ └── javascripts │ │ ├── global.setup.spec.js │ │ ├── link.helpers.spec.js │ │ └── single.link.permissions.module.spec.js ├── static │ ├── bundles │ │ ├── 202a3a988ec9ee1ad746dfe980d65f26.ttf │ │ ├── 21f212f94a9db6a0e3847c921842aa19.woff │ │ ├── 235f8246df251c957a93cbdb54db932c.woff │ │ ├── 257ba5031d03546f934e2a7709415bc3.gif │ │ ├── 3026bd48214ed3e515b42d48539e0d21.ttf │ │ ├── 30799efa5bf74129468ad4e257551dc3.eot │ │ ├── 3dcc0e0f2287e2e955cd8ce8cb08dae0.ttf │ │ ├── 3e5675c89f974f7811eeaf07e2dd5ba3.woff │ │ ├── 3fb7ee3c46a4737ced31105b89e87f0c.eot │ │ ├── 416250f60d785a2e02f17e054d2e4e44.png │ │ ├── 455808250694e5760bd92b3ce1f070b6.eot │ │ ├── 687bde86935596544d81d404d2873e5d.gif │ │ ├── 7178d69dec87bd2cb67c6a299f2cbfd3.eot │ │ ├── 7f1320f7ec4f6716054d88c33235d17b.ttf │ │ ├── 7fadaa0d22ebbbcb87511a015a962ebd.woff2 │ │ ├── 816d43bc217485bc52e309cd1b356880.woff │ │ ├── 8b18d65d6824460ad37616723e493bcd.woff │ │ ├── 8f9468b527d9941c6ff680a1187f720a.gif │ │ ├── 901074e1322592fd0b82687d09602c9a.woff │ │ ├── 94e202340e24b2cfe027ea6d3d93c35e.eot │ │ ├── a8cd73ebc36feb901a45b368375d20ad.ttf │ │ ├── a990f611f2305dc12965f186c2ef2690.eot │ │ ├── admin-stats.js │ │ ├── admin-stats.js.map │ │ ├── bb72c5142ae2ae4ca0f9c0653a09871c.ttf │ │ ├── c4c42ad89a06874362de0ca8909f101c.ttf │ │ ├── cb3625efa7f7697e0609b1ee54353306.eot │ │ ├── create.css │ │ ├── create.css.map │ │ ├── create.js │ │ ├── create.js.map │ │ ├── d8472f7b6012706fc028021e5a654843.ttf │ │ ├── dashboard.css │ │ ├── dashboard.css.map │ │ ├── dashboard.js │ │ ├── dashboard.js.map │ │ ├── developer-docs.js │ │ ├── developer-docs.js.map │ │ ├── e3b13bf771abea0c964d38193a3f7d74.gif │ │ ├── ecdd509cadbf1ea78b8d2e31ec52328c.eot │ │ ├── f47a561cb9a678e92931a7ac99b5c446.woff │ │ ├── fc6efd02434e00d50e3eb6ae2bf253b0.woff │ │ ├── global.css │ │ ├── global.css.map │ │ ├── global.js │ │ ├── global.js.map │ │ ├── link-delete-confirm.js │ │ ├── link-delete-confirm.js.map │ │ ├── main.js │ │ ├── main.js.map │ │ ├── single-link-permissions.js │ │ ├── single-link-permissions.js.map │ │ ├── single-link.css │ │ ├── single-link.css.map │ │ ├── single-link.js │ │ ├── single-link.js.map │ │ ├── stats.js │ │ └── stats.js.map │ ├── css │ │ ├── _animation.scss │ │ ├── _bootstrap-custom-archive.scss │ │ ├── _bootstrap-custom.scss │ │ ├── _bootstrap-mod.scss │ │ ├── _fonts.scss │ │ ├── _mixins-global.scss │ │ ├── _perma-imports.scss │ │ ├── _vars-global.scss │ │ ├── style-responsive-archive.scss │ │ └── style-responsive.scss │ ├── doc │ │ ├── Perma.cc_CopyrightPolicy.pdf │ │ └── Perma.cc_TOS.pdf │ ├── fonts │ │ ├── Roboto-Black-webfont.eot │ │ ├── Roboto-Black-webfont.ttf │ │ ├── Roboto-Black-webfont.woff │ │ ├── Roboto-Bold-webfont.eot │ │ ├── Roboto-Bold-webfont.ttf │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.eot │ │ ├── Roboto-Light-webfont.ttf │ │ ├── Roboto-Light-webfont.woff │ │ ├── Roboto-Regular-webfont.eot │ │ ├── Roboto-Regular-webfont.ttf │ │ ├── Roboto-Regular-webfont.woff │ │ ├── RobotoSlab-Light.eot │ │ ├── RobotoSlab-Light.ttf │ │ ├── RobotoSlab-Light.woff │ │ ├── RobotoSlab-Regular.eot │ │ ├── RobotoSlab-Regular.ttf │ │ ├── RobotoSlab-Regular.woff │ │ └── font-awesome │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ ├── frontend │ │ ├── components │ │ │ ├── App.vue │ │ │ ├── CaptureError.vue │ │ │ ├── CreateLink.vue │ │ │ ├── CreateLinkBatch.vue │ │ │ ├── Dialog.vue │ │ │ ├── FolderSelect.vue │ │ │ ├── FolderTree.vue │ │ │ ├── IconButton.vue │ │ │ ├── JSTree.vue │ │ │ ├── LinkBatchDetails.vue │ │ │ ├── LinkBatchHistory.vue │ │ │ ├── LinkBrowser.vue │ │ │ ├── LinkCount.vue │ │ │ ├── LinkList.vue │ │ │ ├── ProgressBar.vue │ │ │ ├── SectionHeading.vue │ │ │ ├── Spinner.vue │ │ │ ├── Toast.vue │ │ │ ├── UploadForm.vue │ │ │ └── forms │ │ │ │ ├── BaseInput.vue │ │ │ │ ├── FileInput.vue │ │ │ │ ├── TextAreaInput.vue │ │ │ │ └── TextInput.vue │ │ ├── lib │ │ │ ├── consts.js │ │ │ ├── data.js │ │ │ ├── errors.js │ │ │ └── helpers.js │ │ ├── pages │ │ │ └── dashboard.js │ │ └── stores │ │ │ └── globalStore.js │ ├── img │ │ ├── archived-page.gif │ │ ├── bg.png │ │ ├── cake.png │ │ ├── citation-small.jpg │ │ ├── cited.ai │ │ ├── cited.gif │ │ ├── cited.pdf │ │ ├── cited.png │ │ ├── clouds.jpg │ │ ├── collapse.svg │ │ ├── create-account │ │ ├── create-account.gif │ │ ├── create-links.png │ │ ├── create-step-1.png │ │ ├── create-step-2.png │ │ ├── create-step-3.png │ │ ├── create-step-4.png │ │ ├── creating-perma1.gif │ │ ├── creating-perma2.gif │ │ ├── dark-bulb-full.png │ │ ├── dark-bulb.png │ │ ├── dashboard-icons-back.png │ │ ├── dashboard-icons.png │ │ ├── docs │ │ │ ├── annotate_link.png │ │ │ ├── browser-width-815.rtf │ │ │ ├── capture_fail.png │ │ │ ├── citation_example.png │ │ │ ├── create-account │ │ │ ├── create-api-key.png │ │ │ ├── create_link.png │ │ │ ├── dark_archive.png │ │ │ ├── direct_upload.png │ │ │ ├── folders-and-links.png │ │ │ ├── header-create-and-manage.png │ │ │ ├── layered-hand │ │ │ ├── new_org.png │ │ │ ├── perma_record_external.png │ │ │ ├── record_page.png │ │ │ ├── registrar-default-privacy.png │ │ │ ├── screenshot_create_account.png │ │ │ ├── screenshot_dropdown.png │ │ │ ├── screenshot_home.png │ │ │ ├── set-to-private.png │ │ │ ├── sponsored_users.png │ │ │ └── upload.gif │ │ ├── dots.gif │ │ ├── email-account.gif │ │ ├── examples │ │ │ ├── HLR_1.gif │ │ │ ├── HLR_1@2x.gif │ │ │ ├── HLR_2.gif │ │ │ ├── HLR_2@2x.gif │ │ │ ├── HLR_3.gif │ │ │ ├── HLR_3@2x.gif │ │ │ ├── MSC_1.gif │ │ │ ├── MSC_1@2x.gif │ │ │ ├── MSC_2.gif │ │ │ ├── MSC_2@2x.gif │ │ │ ├── MSC_3.gif │ │ │ ├── MSC_3@2x.gif │ │ │ ├── harvard-law-review.gif │ │ │ ├── michigan-supreme-court-seal-trans.gif │ │ │ └── michigan-supreme-court-seal.jpg │ │ ├── expand.svg │ │ ├── favicon.ico │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── graph-illus.png │ │ ├── graph.png │ │ ├── icon_60770.png │ │ ├── infinity-logo2.png │ │ ├── infinity-white.png │ │ ├── internet-archive-bw.png │ │ ├── link-animation-gif-2.gif │ │ ├── link-rot-0.svg │ │ ├── link-rot-20.svg │ │ ├── link-rot-50.svg │ │ ├── link-rot-80.svg │ │ ├── link-rot-demo.svg │ │ ├── link-rot-healthy-1.gif │ │ ├── link-rot-healthy-1.png │ │ ├── link-rot-healthy-1.svg │ │ ├── link-rot-healthy-2.gif │ │ ├── link-rot-healthy-2.png │ │ ├── link-rot-healthy-2.svg │ │ ├── link-rot-healthy-3.gif │ │ ├── link-rot-healthy-3.png │ │ ├── link-rot-healthy-3.svg │ │ ├── link-rot-healthy.gif │ │ ├── link-rot-healthy.png │ │ ├── link-rot-healthy.svg │ │ ├── linky-1-export.png │ │ ├── linky-2-export.png │ │ ├── linky-3-export.png │ │ ├── list-of-links.gif │ │ ├── live-page.gif │ │ ├── lsource_capture_icon.png │ │ ├── lsource_capture_icon.psd │ │ ├── map.png │ │ ├── msedge-hub.png │ │ ├── participating-institutions │ │ │ ├── AU-WCL-bw.png │ │ │ ├── AU-WCL.png │ │ │ ├── BC-bw.png │ │ │ ├── BU-bw.png │ │ │ ├── Biddle-bw.png │ │ │ ├── CST_logo_bw.png │ │ │ ├── Charleston-bw.png │ │ │ ├── Colorado-bw.png │ │ │ ├── Columbia-bw.png │ │ │ ├── Cornell-bw.png │ │ │ ├── Duke-bw.png │ │ │ ├── FSU-bw.png │ │ │ ├── Florida-bw.png │ │ │ ├── Fordham-bw.png │ │ │ ├── Georgetown-bw.png │ │ │ ├── HLS-bw.png │ │ │ ├── Indiana-Bloomington-bw.png │ │ │ ├── Indiana-bw.png │ │ │ ├── Jmls-bw.png │ │ │ ├── LC-bw.png │ │ │ ├── LSU-bw.png │ │ │ ├── LaVerne-bw.png │ │ │ ├── Loyola-bw.png │ │ │ ├── Maryland-bw.png │ │ │ ├── Melbourne-bw.png │ │ │ ├── Miami-bw.png │ │ │ ├── Nebraska-bw.png │ │ │ ├── Ohio-State-bw.png │ │ │ ├── Oxford-bw.png │ │ │ ├── Pepperdine-bw.png │ │ │ ├── SanDiego-bw.png │ │ │ ├── Southtexas-bw.png │ │ │ ├── Stanford-bw.jpg │ │ │ ├── Stanford-bw.png │ │ │ ├── U-Utah-bw.png │ │ │ ├── U-Washington-bw.png │ │ │ ├── UCLA-bw.png │ │ │ ├── UMiss-bw.png │ │ │ ├── UNLV-bw.png │ │ │ ├── UT-Austin-bw.png │ │ │ ├── UWisc-bw.png │ │ │ ├── Vanderbilt-bw.png │ │ │ ├── WashU-bw.png │ │ │ ├── William-Mary-bw.png │ │ │ ├── YLS-bw.png │ │ │ ├── belmont-logo-bw.png │ │ │ ├── berkeleylaw_library2-bw.png │ │ │ ├── brooklyn-bw.png │ │ │ ├── ck_logo_bw.png │ │ │ ├── cuny_law_bw.png │ │ │ ├── fletcher_bw.png │ │ │ ├── georgia-bw.png │ │ │ ├── ggu-bw.png │ │ │ ├── loyolalaw_bw.png │ │ │ ├── marquette-bw.png │ │ │ ├── michigan-courts-bw.png │ │ │ ├── michigan-state-bw.png │ │ │ ├── northwestern-bw.png │ │ │ ├── ocu_main_logonew_bw.png │ │ │ ├── pace-bw.png │ │ │ ├── pitt_law_bw.png │ │ │ ├── pu_logo_trans_bw.png │ │ │ ├── renovation_logo.jpg │ │ │ ├── richmond-bw.png │ │ │ ├── sd-bw.png │ │ │ ├── seattle-bw.png │ │ │ ├── seton-bw.png │ │ │ ├── slu_law_bw.png │ │ │ ├── smu-bw.png │ │ │ ├── st-thomas-bw.png │ │ │ ├── suffolk-law-lib.png │ │ │ ├── tt-bw.png │ │ │ ├── tulane-bw.png │ │ │ ├── uci-bw.png │ │ │ ├── ui-bw.png │ │ │ ├── unc-bw.png │ │ │ ├── utenn_law_bw.png │ │ │ ├── uvalaw-bw.png │ │ │ ├── valparaiso-bw.png │ │ │ ├── villanova-bw.png │ │ │ ├── vt_bw.png │ │ │ ├── widener-univ-bw.png │ │ │ ├── williamette_bw.png │ │ │ └── wvu-logo-bw.png │ │ ├── pdf-preview.jpg │ │ ├── pdf_capture_icon.png │ │ ├── pdf_capture_icon.psd │ │ ├── perma-flow.pdf │ │ ├── perma-flow.png │ │ ├── perma-hero.png │ │ ├── perma-infinity-landing.png │ │ ├── perma-logo-orange.svg │ │ ├── perma-logo-white.svg │ │ ├── placeholder.jpg │ │ ├── register.gif │ │ ├── screen-capture.gif │ │ ├── sharing │ │ │ └── blue_logo.png │ │ ├── shelf.gif │ │ ├── shelf2.png │ │ ├── signal.png │ │ ├── signup-academics-bg.png │ │ ├── signup-academics-bg.svg │ │ ├── signup-academics-white.svg │ │ ├── signup-courts-bg.png │ │ ├── signup-courts-bg.svg │ │ ├── signup-courts-white.svg │ │ ├── signup-everyone-bg.png │ │ ├── signup-everyone-bg.svg │ │ ├── signup-everyone-white.svg │ │ ├── signup-individuals-bg.png │ │ ├── signup-individuals-bg.svg │ │ ├── signup-libraries-bg.png │ │ ├── signup-libraries-bg.svg │ │ ├── signup-libraries-bg@1x.svg │ │ ├── signup-libraries-white.svg │ │ ├── social-media-icons │ │ │ ├── Facebook.png │ │ │ ├── Tumblr.png │ │ │ └── Twitter.png │ │ ├── sorry-preview.jpg │ │ ├── source_capture_icon.png │ │ ├── static_capture_icon.png │ │ ├── static_capture_icon.psd │ │ ├── stopwatch.ai │ │ ├── stopwatch.png │ │ ├── supporting-partners │ │ │ ├── Berkman-bw.jpg │ │ │ ├── DPLA-bw.gif │ │ │ ├── DPLA-bw.jpg │ │ │ ├── DPLA-bw.png │ │ │ ├── IA-bw.gif │ │ │ ├── IA-bw.jpg │ │ │ ├── IA-bw.png │ │ │ ├── IMLS-bw.jpg │ │ │ ├── LIL-bw.jpg │ │ │ ├── LIL-primary-black.png │ │ │ ├── LIPA-bw.gif │ │ │ ├── LIPA-bw.jpg │ │ │ ├── cf-logo-h-gray.png │ │ │ └── webrecorder-lockup-black.png │ │ ├── thumbnail.gif │ │ ├── toast.png │ │ ├── tracks.png │ │ ├── transparent-sq.png │ │ ├── ui │ │ │ ├── perma-ui-8-small.png │ │ │ ├── perma-ui-affil-isPrivate.svg │ │ │ ├── perma-ui-affil.svg │ │ │ ├── perma-ui-chev-down.png │ │ │ ├── perma-ui-chev-left-big.png │ │ │ ├── perma-ui-chev-right-big.png │ │ │ ├── perma-ui-chev-right-small.png │ │ │ ├── perma-ui-flag.svg │ │ │ ├── perma-ui-private-white.png │ │ │ ├── perma-ui-private.png │ │ │ ├── perma-ui-private.svg │ │ │ └── perma-ui-success.svg │ │ ├── upload-preview.jpg │ │ ├── upload.gif │ │ ├── watermark-text.ai │ │ ├── watermark-text.png │ │ ├── watermark.png │ │ └── websites-change-square_unlinked.svg │ ├── js │ │ ├── admin-stats.js │ │ ├── developer-docs.js │ │ ├── global.js │ │ ├── helpers │ │ │ ├── api.module.js │ │ │ ├── dom.helpers.js │ │ │ ├── fix-links.js │ │ │ ├── general.helpers.js │ │ │ ├── handlebars.helpers.js │ │ │ ├── link.helpers.js │ │ │ └── local-datetime.js │ │ ├── link-delete-confirm.js │ │ ├── single-link-permissions.module.js │ │ └── single-link.module.js │ ├── maintenance │ │ └── maintenance.html │ ├── pdfs │ │ ├── guide-copyright.pdf │ │ ├── guide-faculty.pdf │ │ ├── guide-journals.pdf │ │ └── guide-librarians.pdf │ ├── robots.txt │ └── vendors │ │ ├── font-awesome │ │ └── font-awesome.min.css │ │ ├── html5shiv │ │ └── html5shiv.js │ │ └── respond │ │ └── respond.js ├── tasks │ ├── __init__.py │ ├── check_storage.py │ ├── dev.py │ ├── merge_accounts.py │ ├── once.py │ └── wacz_conversion.py ├── urls.py ├── webpack-stats.json └── webpack.config.js ├── services ├── aws │ └── global-bundle.pem ├── cloudflare │ ├── ips-v4 │ └── ips-v6 ├── django │ └── generated_assets │ │ └── README ├── docker │ ├── minio │ │ ├── entrypoint.sh │ │ └── ssl │ │ │ └── .gitignore │ ├── perma-payments │ │ └── settings.py.example │ ├── scoop-rest-api │ │ └── config.py │ ├── superset │ │ ├── Dockerfile │ │ ├── dashboard_export.zip │ │ ├── superset-init.sh │ │ └── superset_config.py │ └── wacz-exhibitor │ │ ├── Dockerfile │ │ ├── nginx.conf │ │ └── ssl │ │ └── .gitignore ├── js-wacz │ ├── package-lock.json │ └── package.json └── logs │ └── README └── websites-change-square.svg /.cursor/rules/code-base-intro.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/.cursor/rules/code-base-intro.mdc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/.github/workflows/lints.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/.gitignore -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/Brewfile -------------------------------------------------------------------------------- /Brewfile.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/Brewfile.lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/README.md -------------------------------------------------------------------------------- /developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/developer.md -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/errata.md -------------------------------------------------------------------------------- /ingest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/ingest.sh -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/init.sh -------------------------------------------------------------------------------- /install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/install.md -------------------------------------------------------------------------------- /make_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/make_cert.sh -------------------------------------------------------------------------------- /perma_web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/Dockerfile -------------------------------------------------------------------------------- /perma_web/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/Procfile -------------------------------------------------------------------------------- /perma_web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perma_web/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/README.md -------------------------------------------------------------------------------- /perma_web/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perma_web/api/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/authentication.py -------------------------------------------------------------------------------- /perma_web/api/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/middleware.py -------------------------------------------------------------------------------- /perma_web/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/serializers.py -------------------------------------------------------------------------------- /perma_web/api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perma_web/api/tests/test_current_user_authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/tests/test_current_user_authorization.py -------------------------------------------------------------------------------- /perma_web/api/tests/test_current_user_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/tests/test_current_user_resource.py -------------------------------------------------------------------------------- /perma_web/api/tests/test_folder_authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/tests/test_folder_authorization.py -------------------------------------------------------------------------------- /perma_web/api/tests/test_folder_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/tests/test_folder_resource.py -------------------------------------------------------------------------------- /perma_web/api/tests/test_link_authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/tests/test_link_authorization.py -------------------------------------------------------------------------------- /perma_web/api/tests/test_link_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/tests/test_link_resource.py -------------------------------------------------------------------------------- /perma_web/api/tests/test_link_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/tests/test_link_validation.py -------------------------------------------------------------------------------- /perma_web/api/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/tests/utils.py -------------------------------------------------------------------------------- /perma_web/api/tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/tests/views.py -------------------------------------------------------------------------------- /perma_web/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/urls.py -------------------------------------------------------------------------------- /perma_web/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/utils.py -------------------------------------------------------------------------------- /perma_web/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/api/views.py -------------------------------------------------------------------------------- /perma_web/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/browserslist -------------------------------------------------------------------------------- /perma_web/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/conftest.py -------------------------------------------------------------------------------- /perma_web/fixtures/api_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/fixtures/api_keys.json -------------------------------------------------------------------------------- /perma_web/fixtures/archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/fixtures/archive.json -------------------------------------------------------------------------------- /perma_web/fixtures/folders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/fixtures/folders.json -------------------------------------------------------------------------------- /perma_web/fixtures/sites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/fixtures/sites.json -------------------------------------------------------------------------------- /perma_web/fixtures/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/fixtures/users.json -------------------------------------------------------------------------------- /perma_web/functional_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perma_web/functional_tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/functional_tests/test_auth.py -------------------------------------------------------------------------------- /perma_web/functional_tests/test_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/functional_tests/test_contact.py -------------------------------------------------------------------------------- /perma_web/functional_tests/test_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/functional_tests/test_folders.py -------------------------------------------------------------------------------- /perma_web/functional_tests/test_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/functional_tests/test_links.py -------------------------------------------------------------------------------- /perma_web/functional_tests/test_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/functional_tests/test_static.py -------------------------------------------------------------------------------- /perma_web/karma.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/karma.config.js -------------------------------------------------------------------------------- /perma_web/lil-archive-keyring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/lil-archive-keyring.gpg -------------------------------------------------------------------------------- /perma_web/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/manage.py -------------------------------------------------------------------------------- /perma_web/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/npm-shrinkwrap.json -------------------------------------------------------------------------------- /perma_web/old_style_archive.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/old_style_archive.tar.gz -------------------------------------------------------------------------------- /perma_web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/package.json -------------------------------------------------------------------------------- /perma_web/perma/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/__init__.py -------------------------------------------------------------------------------- /perma_web/perma/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/admin.py -------------------------------------------------------------------------------- /perma_web/perma/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/apps.py -------------------------------------------------------------------------------- /perma_web/perma/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/celery.py -------------------------------------------------------------------------------- /perma_web/perma/celery_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/celery_tasks.py -------------------------------------------------------------------------------- /perma_web/perma/debug_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/debug_utils.py -------------------------------------------------------------------------------- /perma_web/perma/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/email.py -------------------------------------------------------------------------------- /perma_web/perma/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/exceptions.py -------------------------------------------------------------------------------- /perma_web/perma/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/forms.py -------------------------------------------------------------------------------- /perma_web/perma/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/middleware.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0001_squashed_0068_auto_20210525_1643.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0001_squashed_0068_auto_20210525_1643.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0002_auto_20220119_2034.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0002_auto_20220119_2034.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0003_auto_20220120_1522.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0003_auto_20220120_1522.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0004_auto_20220721_1600.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0004_auto_20220721_1600.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0005_auto_20221013_2150.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0005_auto_20221013_2150.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0006_auto_20221024_1521.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0006_auto_20221024_1521.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0007_auto_20221024_2049.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0007_auto_20221024_2049.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0008_auto_20221027_1556.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0008_auto_20221027_1556.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0009_internetarchivefile_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0009_internetarchivefile_status.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0010_internetarchiveitem_cached_is_dark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0010_internetarchiveitem_cached_is_dark.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0011_auto_20221117_0025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0011_auto_20221117_0025.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0012_internetarchiveitem_tasks_in_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0012_internetarchiveitem_tasks_in_progress.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0013_internetarchiveitem_confirmed_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0013_internetarchiveitem_confirmed_exists.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0014_auto_20230214_2156.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0014_auto_20230214_2156.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0016_link_guid_case_insensitive_idx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0016_link_guid_case_insensitive_idx.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0017_auto_20230404_1924.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0017_auto_20230404_1924.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0018_auto_20230424_1836.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0018_auto_20230424_1836.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0019_auto_20230424_2134.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0019_auto_20230424_2134.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0020_linkbatch_cached_capture_job_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0020_linkbatch_cached_capture_job_count.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0021_auto_20230629_1545.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0021_auto_20230629_1545.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0022_auto_20230830_1621.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0022_auto_20230830_1621.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0023_auto_20230830_2102.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0023_auto_20230830_2102.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0024_capturejob_scoop_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0024_capturejob_scoop_logs.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0025_auto_20230831_1436.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0025_auto_20230831_1436.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0026_capturejob_scoop_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0026_capturejob_scoop_state.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0027_alter_capture_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0027_alter_capture_role.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0028_auto_20230905_1813.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0028_auto_20230905_1813.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0029_capturejob_scoop_job_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0029_capturejob_scoop_job_id.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0030_alter_capturejob_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0030_alter_capturejob_engine.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0031_delete_uncaughterror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0031_delete_uncaughterror.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0035_link_ia_eligible_for_date_idx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0035_link_ia_eligible_for_date_idx.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0036_delete_minutestats_delete_weekstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0036_delete_minutestats_delete_weekstats.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0038_auto_20240318_2102.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0038_auto_20240318_2102.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0039_auto_20240412_1801.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0039_auto_20240412_1801.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0040_folder_cached_has_children.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0040_folder_cached_has_children.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0041_folder_tree_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0041_folder_tree_root.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0044_auto_20240701_1652.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0044_auto_20240701_1652.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0045_alter_capture_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0045_alter_capture_role.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0046_capturejob_archive_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0046_capturejob_archive_formats.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0047_sponsorship_expires_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0047_sponsorship_expires_at.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0049_userorganizationaffiliation_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0049_userorganizationaffiliation_and_more.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0051_auto_20241030_1732.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0051_auto_20241030_1732.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0053_link_perma_link_creatio_ef2767_idx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0053_link_perma_link_creatio_ef2767_idx.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0055_auto_20241114_1703.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0055_auto_20241114_1703.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0056_delete_historicallink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0056_delete_historicallink.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0057_auto_20241120_1837.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0057_auto_20241120_1837.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0058_capturejob_creation_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0058_capturejob_creation_timestamp.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0059_alter_capturejob_creation_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0059_alter_capturejob_creation_timestamp.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/0060_capturejob_validation_status_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/migrations/0060_capturejob_validation_status_code.py -------------------------------------------------------------------------------- /perma_web/perma/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perma_web/perma/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/models.py -------------------------------------------------------------------------------- /perma_web/perma/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/reporter.py -------------------------------------------------------------------------------- /perma_web/perma/settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/settings/README.md -------------------------------------------------------------------------------- /perma_web/perma/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/settings/__init__.py -------------------------------------------------------------------------------- /perma_web/perma/settings/deployments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perma_web/perma/settings/deployments/settings_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/settings/deployments/settings_common.py -------------------------------------------------------------------------------- /perma_web/perma/settings/deployments/settings_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/settings/deployments/settings_dev.py -------------------------------------------------------------------------------- /perma_web/perma/settings/deployments/settings_prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/settings/deployments/settings_prod.py -------------------------------------------------------------------------------- /perma_web/perma/settings/deployments/settings_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/settings/deployments/settings_testing.py -------------------------------------------------------------------------------- /perma_web/perma/settings/settings.example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/settings/settings.example.py -------------------------------------------------------------------------------- /perma_web/perma/settings/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perma_web/perma/settings/utils/environmental_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/settings/utils/environmental_settings.py -------------------------------------------------------------------------------- /perma_web/perma/settings/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/settings/utils/helpers.py -------------------------------------------------------------------------------- /perma_web/perma/settings/utils/post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/settings/utils/post_processing.py -------------------------------------------------------------------------------- /perma_web/perma/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/signals.py -------------------------------------------------------------------------------- /perma_web/perma/storage_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/storage_backends.py -------------------------------------------------------------------------------- /perma_web/perma/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/403.html -------------------------------------------------------------------------------- /perma_web/perma/templates/403_csrf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/403_csrf.html -------------------------------------------------------------------------------- /perma_web/perma/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/404.html -------------------------------------------------------------------------------- /perma_web/perma/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/500.html -------------------------------------------------------------------------------- /perma_web/perma/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/about.html -------------------------------------------------------------------------------- /perma_web/perma/templates/admin-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/admin-layout.html -------------------------------------------------------------------------------- /perma_web/perma/templates/admin-stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/admin-stats.html -------------------------------------------------------------------------------- /perma_web/perma/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/admin/base_site.html -------------------------------------------------------------------------------- /perma_web/perma/templates/admin/input_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/admin/input_filter.html -------------------------------------------------------------------------------- /perma_web/perma/templates/admin/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/admin/pagination.html -------------------------------------------------------------------------------- /perma_web/perma/templates/admin/perma/internetarchiveitem/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/admin/perma/internetarchiveitem/change_form.html -------------------------------------------------------------------------------- /perma_web/perma/templates/admin/perma/linkuser/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/admin/perma/linkuser/change_form.html -------------------------------------------------------------------------------- /perma_web/perma/templates/admin/perma/organization/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/admin/perma/organization/change_form.html -------------------------------------------------------------------------------- /perma_web/perma/templates/api_key_embedded_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/api_key_embedded_form.html -------------------------------------------------------------------------------- /perma_web/perma/templates/archive/base-archive-responsive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/archive/base-archive-responsive.html -------------------------------------------------------------------------------- /perma_web/perma/templates/archive/confirm/base-archive-confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/archive/confirm/base-archive-confirm.html -------------------------------------------------------------------------------- /perma_web/perma/templates/archive/confirm/link-delete-confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/archive/confirm/link-delete-confirm.html -------------------------------------------------------------------------------- /perma_web/perma/templates/archive/dark-archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/archive/dark-archive.html -------------------------------------------------------------------------------- /perma_web/perma/templates/archive/deleted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/archive/deleted.html -------------------------------------------------------------------------------- /perma_web/perma/templates/archive/download_to_view_pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/archive/download_to_view_pdf.html -------------------------------------------------------------------------------- /perma_web/perma/templates/archive/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/archive/iframe.html -------------------------------------------------------------------------------- /perma_web/perma/templates/archive/includes/link_batch_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/archive/includes/link_batch_modal.html -------------------------------------------------------------------------------- /perma_web/perma/templates/archive/includes/upload_your_own.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/archive/includes/upload_your_own.html -------------------------------------------------------------------------------- /perma_web/perma/templates/archive/includes/wacz_exhibitor_iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/archive/includes/wacz_exhibitor_iframe.html -------------------------------------------------------------------------------- /perma_web/perma/templates/archive/single-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/archive/single-link.html -------------------------------------------------------------------------------- /perma_web/perma/templates/base-responsive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/base-responsive.html -------------------------------------------------------------------------------- /perma_web/perma/templates/contact-thanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/contact-thanks.html -------------------------------------------------------------------------------- /perma_web/perma/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/contact.html -------------------------------------------------------------------------------- /perma_web/perma/templates/contingency_plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/contingency_plan.html -------------------------------------------------------------------------------- /perma_web/perma/templates/copyright_policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/copyright_policy.html -------------------------------------------------------------------------------- /perma_web/perma/templates/docs/accounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/docs/accounts.html -------------------------------------------------------------------------------- /perma_web/perma/templates/docs/developer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/docs/developer/index.html -------------------------------------------------------------------------------- /perma_web/perma/templates/docs/developer/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/docs/developer/toc.html -------------------------------------------------------------------------------- /perma_web/perma/templates/docs/docs_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/docs/docs_menu.html -------------------------------------------------------------------------------- /perma_web/perma/templates/docs/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/docs/faq.html -------------------------------------------------------------------------------- /perma_web/perma/templates/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/docs/index.html -------------------------------------------------------------------------------- /perma_web/perma/templates/docs/libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/docs/libraries.html -------------------------------------------------------------------------------- /perma_web/perma/templates/docs/perma-link-creation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/docs/perma-link-creation.html -------------------------------------------------------------------------------- /perma_web/perma/templates/email/admin/contact.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/admin/contact.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/admin/court_request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/admin/court_request.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/admin/deletion_request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/admin/deletion_request.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/admin/firm_request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/admin/firm_request.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/admin/pinged_registrar_users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/admin/pinged_registrar_users.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/admin/premium_request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/admin/premium_request.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/admin/registrar_request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/admin/registrar_request.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/admin/report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/admin/report.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/admin/sync_to_cm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/admin/sync_to_cm.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/default.txt: -------------------------------------------------------------------------------- 1 | {{ message }} 2 | -------------------------------------------------------------------------------- /perma_web/perma/templates/email/includes/activation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/includes/activation.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/merged.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/merged.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/new_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/new_user.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/new_user_added_by_other.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/new_user_added_by_other.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/new_user_added_to_org_by_other.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/new_user_added_to_org_by_other.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/new_user_added_to_registrar_by_other.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/new_user_added_to_registrar_by_other.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/organization_user_expiry_notification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/organization_user_expiry_notification.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/pending_registrar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/pending_registrar.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/registrar_approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/registrar_approved.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/registrar_contact.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/registrar_contact.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/registrar_user_ping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/registrar_user_ping.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/special.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/special.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/sponsored_user_expiry_notification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/sponsored_user_expiry_notification.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/unactivated_user_reset_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/unactivated_user_reset_email.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/user_added_to_admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/user_added_to_admin.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/user_added_to_organization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/user_added_to_organization.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/user_added_to_registrar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/user_added_to_registrar.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/email/user_added_to_sponsoring_registrar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/email/user_added_to_sponsoring_registrar.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/errors/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/errors/view.html -------------------------------------------------------------------------------- /perma_web/perma/templates/includes/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/includes/analytics.html -------------------------------------------------------------------------------- /perma_web/perma/templates/includes/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/includes/fieldset.html -------------------------------------------------------------------------------- /perma_web/perma/templates/includes/upper_right_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/includes/upper_right_menu.html -------------------------------------------------------------------------------- /perma_web/perma/templates/js_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/js_config.html -------------------------------------------------------------------------------- /perma_web/perma/templates/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/landing.html -------------------------------------------------------------------------------- /perma_web/perma/templates/manage-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/manage-layout.html -------------------------------------------------------------------------------- /perma_web/perma/templates/memento/timemap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/memento/timemap.html -------------------------------------------------------------------------------- /perma_web/perma/templates/password_change_embedded_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/password_change_embedded_form.html -------------------------------------------------------------------------------- /perma_web/perma/templates/privacy_policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/privacy_policy.html -------------------------------------------------------------------------------- /perma_web/perma/templates/provenance-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/provenance-summary.html -------------------------------------------------------------------------------- /perma_web/perma/templates/rate_limit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/rate_limit.html -------------------------------------------------------------------------------- /perma_web/perma/templates/read_only_mode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/read_only_mode.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/check_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/check_email.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/check_email_library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/check_email_library.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/court_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/court_request.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/firm_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/firm_request.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/includes/sign-up-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/includes/sign-up-navigation.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/login.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/login_attempts_exceeded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/login_attempts_exceeded.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/logout.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/logout_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/logout_success.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/not_active.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/not_active.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/password_change_done.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/password_reset_email.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/password_update_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/password_update_form.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/sign-up-courts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/sign-up-courts.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/sign-up-firms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/sign-up-firms.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/sign-up-libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/sign-up-libraries.html -------------------------------------------------------------------------------- /perma_web/perma/templates/registration/sign-up.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/registration/sign-up.html -------------------------------------------------------------------------------- /perma_web/perma/templates/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/report.html -------------------------------------------------------------------------------- /perma_web/perma/templates/return_policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/return_policy.html -------------------------------------------------------------------------------- /perma_web/perma/templates/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/robots.txt -------------------------------------------------------------------------------- /perma_web/perma/templates/settings-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/settings-layout.html -------------------------------------------------------------------------------- /perma_web/perma/templates/settings/settings-affiliations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/settings/settings-affiliations.html -------------------------------------------------------------------------------- /perma_web/perma/templates/settings/settings-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/settings/settings-password.html -------------------------------------------------------------------------------- /perma_web/perma/templates/settings/settings-profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/settings/settings-profile.html -------------------------------------------------------------------------------- /perma_web/perma/templates/settings/settings-subscription-update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/settings/settings-subscription-update.html -------------------------------------------------------------------------------- /perma_web/perma/templates/settings/settings-tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/settings/settings-tools.html -------------------------------------------------------------------------------- /perma_web/perma/templates/settings/settings-usage-plan-unavailable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/settings/settings-usage-plan-unavailable.html -------------------------------------------------------------------------------- /perma_web/perma/templates/settings/settings-usage-plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/settings/settings-usage-plan.html -------------------------------------------------------------------------------- /perma_web/perma/templates/terms_of_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/terms_of_service.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/activation-email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/activation-email.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/add_multiple_users_to_org.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/add_multiple_users_to_org.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/approve_pending_registrar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/approve_pending_registrar.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/create-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/create-link.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/deactivated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/deactivated.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/includes/comma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/includes/comma.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/includes/edit_sponsorship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/includes/edit_sponsorship.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/includes/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/includes/paginator.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/includes/search_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/includes/search_form.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/manage_orgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/manage_orgs.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/manage_registrars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/manage_registrars.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/manage_single_registrar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/manage_single_registrar.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/manage_single_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/manage_single_user.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/manage_single_user_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/manage_single_user_links.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/manage_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/manage_users.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/user_add_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/user_add_confirm.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/user_add_to_admin_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/user_add_to_admin_confirm.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/user_delete_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/user_delete_confirm.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/user_leave_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/user_leave_confirm.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/user_reactivate_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/user_reactivate_confirm.html -------------------------------------------------------------------------------- /perma_web/perma/templates/user_management/user_remove_admin_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templates/user_management/user_remove_admin_confirm.html -------------------------------------------------------------------------------- /perma_web/perma/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perma_web/perma/templatetags/archive_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templatetags/archive_description.py -------------------------------------------------------------------------------- /perma_web/perma/templatetags/current_query_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templatetags/current_query_string.py -------------------------------------------------------------------------------- /perma_web/perma/templatetags/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templatetags/debug.py -------------------------------------------------------------------------------- /perma_web/perma/templatetags/input_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templatetags/input_type.py -------------------------------------------------------------------------------- /perma_web/perma/templatetags/join_with_and.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templatetags/join_with_and.py -------------------------------------------------------------------------------- /perma_web/perma/templatetags/local_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templatetags/local_datetime.py -------------------------------------------------------------------------------- /perma_web/perma/templatetags/set_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templatetags/set_trace.py -------------------------------------------------------------------------------- /perma_web/perma/templatetags/short_page_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templatetags/short_page_range.py -------------------------------------------------------------------------------- /perma_web/perma/templatetags/timedelta_from_now.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templatetags/timedelta_from_now.py -------------------------------------------------------------------------------- /perma_web/perma/templatetags/visible_organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templatetags/visible_organizations.py -------------------------------------------------------------------------------- /perma_web/perma/templatetags/visible_sponsorships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/templatetags/visible_sponsorships.py -------------------------------------------------------------------------------- /perma_web/perma/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/extra_capture_files/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: Perma 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/new_style_archive/archive.warc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/new_style_archive/archive.warc.gz -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/new_style_archive/cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/new_style_archive/cap.png -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/old_style_archive/cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/old_style_archive/cap.png -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/old_style_archive/source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/old_style_archive/source/index.html -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/favicon.ico -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/favicon_meta.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/favicon_meta.ico -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/narrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/narrow.png -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/test.html -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/test.jpg -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/test.mp4: -------------------------------------------------------------------------------- 1 | Not really an mp4. -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/test.pdf -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/test.swf: -------------------------------------------------------------------------------- 1 | Not really an swf. -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/test.wav: -------------------------------------------------------------------------------- 1 | Not really a wav. -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/test1.jpg -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/test2.png -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/test_fallback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/test_fallback.jpg -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/test_media_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/test_media_a.html -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/test_media_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/test_media_b.html -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/test_media_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/test_media_c.html -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/test_media_outer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/test_media_outer.html -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/wide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/wide1.png -------------------------------------------------------------------------------- /perma_web/perma/tests/assets/target_capture_files/wide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/assets/target_capture_files/wide2.png -------------------------------------------------------------------------------- /perma_web/perma/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_admin.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_capture_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_capture_job.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_cloudflare_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_cloudflare_cache.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_email.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_link_count_caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_link_count_caching.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_models.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_permissions.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_urls.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_utils.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_views_admin_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_views_admin_stats.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_views_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_views_auth.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_views_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_views_common.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_views_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_views_contact.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_views_link_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_views_link_management.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_views_memento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_views_memento.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_views_playback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_views_playback.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_views_user_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_views_user_management.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_views_user_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_views_user_settings.py -------------------------------------------------------------------------------- /perma_web/perma/tests/test_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/test_wsgi.py -------------------------------------------------------------------------------- /perma_web/perma/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/utils.py -------------------------------------------------------------------------------- /perma_web/perma/tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/tests/views.py -------------------------------------------------------------------------------- /perma_web/perma/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/urls.py -------------------------------------------------------------------------------- /perma_web/perma/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/utils.py -------------------------------------------------------------------------------- /perma_web/perma/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perma_web/perma/views/admin_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/views/admin_stats.py -------------------------------------------------------------------------------- /perma_web/perma/views/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/views/common.py -------------------------------------------------------------------------------- /perma_web/perma/views/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/views/contact.py -------------------------------------------------------------------------------- /perma_web/perma/views/error_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/views/error_management.py -------------------------------------------------------------------------------- /perma_web/perma/views/link_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/views/link_management.py -------------------------------------------------------------------------------- /perma_web/perma/views/memento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/views/memento.py -------------------------------------------------------------------------------- /perma_web/perma/views/playback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/views/playback.py -------------------------------------------------------------------------------- /perma_web/perma/views/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/views/service.py -------------------------------------------------------------------------------- /perma_web/perma/views/user_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/views/user_management.py -------------------------------------------------------------------------------- /perma_web/perma/views/user_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/views/user_settings.py -------------------------------------------------------------------------------- /perma_web/perma/views/user_sign_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/views/user_sign_up.py -------------------------------------------------------------------------------- /perma_web/perma/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/wsgi.py -------------------------------------------------------------------------------- /perma_web/perma/wsgi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/perma/wsgi_utils.py -------------------------------------------------------------------------------- /perma_web/reporting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perma_web/reporting/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/reporting/admin.py -------------------------------------------------------------------------------- /perma_web/reporting/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/reporting/apps.py -------------------------------------------------------------------------------- /perma_web/reporting/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/reporting/migrations/0001_initial.py -------------------------------------------------------------------------------- /perma_web/reporting/migrations/0002_federalcourtorganization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/reporting/migrations/0002_federalcourtorganization.py -------------------------------------------------------------------------------- /perma_web/reporting/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perma_web/reporting/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/reporting/models.py -------------------------------------------------------------------------------- /perma_web/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/requirements.in -------------------------------------------------------------------------------- /perma_web/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/requirements.txt -------------------------------------------------------------------------------- /perma_web/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/setup.cfg -------------------------------------------------------------------------------- /perma_web/spec/javascripts/global.setup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/spec/javascripts/global.setup.spec.js -------------------------------------------------------------------------------- /perma_web/spec/javascripts/link.helpers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/spec/javascripts/link.helpers.spec.js -------------------------------------------------------------------------------- /perma_web/spec/javascripts/single.link.permissions.module.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/spec/javascripts/single.link.permissions.module.spec.js -------------------------------------------------------------------------------- /perma_web/static/bundles/202a3a988ec9ee1ad746dfe980d65f26.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/202a3a988ec9ee1ad746dfe980d65f26.ttf -------------------------------------------------------------------------------- /perma_web/static/bundles/21f212f94a9db6a0e3847c921842aa19.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/21f212f94a9db6a0e3847c921842aa19.woff -------------------------------------------------------------------------------- /perma_web/static/bundles/235f8246df251c957a93cbdb54db932c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/235f8246df251c957a93cbdb54db932c.woff -------------------------------------------------------------------------------- /perma_web/static/bundles/257ba5031d03546f934e2a7709415bc3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/257ba5031d03546f934e2a7709415bc3.gif -------------------------------------------------------------------------------- /perma_web/static/bundles/3026bd48214ed3e515b42d48539e0d21.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/3026bd48214ed3e515b42d48539e0d21.ttf -------------------------------------------------------------------------------- /perma_web/static/bundles/30799efa5bf74129468ad4e257551dc3.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/30799efa5bf74129468ad4e257551dc3.eot -------------------------------------------------------------------------------- /perma_web/static/bundles/3dcc0e0f2287e2e955cd8ce8cb08dae0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/3dcc0e0f2287e2e955cd8ce8cb08dae0.ttf -------------------------------------------------------------------------------- /perma_web/static/bundles/3e5675c89f974f7811eeaf07e2dd5ba3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/3e5675c89f974f7811eeaf07e2dd5ba3.woff -------------------------------------------------------------------------------- /perma_web/static/bundles/3fb7ee3c46a4737ced31105b89e87f0c.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/3fb7ee3c46a4737ced31105b89e87f0c.eot -------------------------------------------------------------------------------- /perma_web/static/bundles/416250f60d785a2e02f17e054d2e4e44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/416250f60d785a2e02f17e054d2e4e44.png -------------------------------------------------------------------------------- /perma_web/static/bundles/455808250694e5760bd92b3ce1f070b6.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/455808250694e5760bd92b3ce1f070b6.eot -------------------------------------------------------------------------------- /perma_web/static/bundles/687bde86935596544d81d404d2873e5d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/687bde86935596544d81d404d2873e5d.gif -------------------------------------------------------------------------------- /perma_web/static/bundles/7178d69dec87bd2cb67c6a299f2cbfd3.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/7178d69dec87bd2cb67c6a299f2cbfd3.eot -------------------------------------------------------------------------------- /perma_web/static/bundles/7f1320f7ec4f6716054d88c33235d17b.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/7f1320f7ec4f6716054d88c33235d17b.ttf -------------------------------------------------------------------------------- /perma_web/static/bundles/7fadaa0d22ebbbcb87511a015a962ebd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/7fadaa0d22ebbbcb87511a015a962ebd.woff2 -------------------------------------------------------------------------------- /perma_web/static/bundles/816d43bc217485bc52e309cd1b356880.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/816d43bc217485bc52e309cd1b356880.woff -------------------------------------------------------------------------------- /perma_web/static/bundles/8b18d65d6824460ad37616723e493bcd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/8b18d65d6824460ad37616723e493bcd.woff -------------------------------------------------------------------------------- /perma_web/static/bundles/8f9468b527d9941c6ff680a1187f720a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/8f9468b527d9941c6ff680a1187f720a.gif -------------------------------------------------------------------------------- /perma_web/static/bundles/901074e1322592fd0b82687d09602c9a.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/901074e1322592fd0b82687d09602c9a.woff -------------------------------------------------------------------------------- /perma_web/static/bundles/94e202340e24b2cfe027ea6d3d93c35e.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/94e202340e24b2cfe027ea6d3d93c35e.eot -------------------------------------------------------------------------------- /perma_web/static/bundles/a8cd73ebc36feb901a45b368375d20ad.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/a8cd73ebc36feb901a45b368375d20ad.ttf -------------------------------------------------------------------------------- /perma_web/static/bundles/a990f611f2305dc12965f186c2ef2690.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/a990f611f2305dc12965f186c2ef2690.eot -------------------------------------------------------------------------------- /perma_web/static/bundles/admin-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/admin-stats.js -------------------------------------------------------------------------------- /perma_web/static/bundles/admin-stats.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/admin-stats.js.map -------------------------------------------------------------------------------- /perma_web/static/bundles/bb72c5142ae2ae4ca0f9c0653a09871c.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/bb72c5142ae2ae4ca0f9c0653a09871c.ttf -------------------------------------------------------------------------------- /perma_web/static/bundles/c4c42ad89a06874362de0ca8909f101c.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/c4c42ad89a06874362de0ca8909f101c.ttf -------------------------------------------------------------------------------- /perma_web/static/bundles/cb3625efa7f7697e0609b1ee54353306.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/cb3625efa7f7697e0609b1ee54353306.eot -------------------------------------------------------------------------------- /perma_web/static/bundles/create.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/create.css -------------------------------------------------------------------------------- /perma_web/static/bundles/create.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/create.css.map -------------------------------------------------------------------------------- /perma_web/static/bundles/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/create.js -------------------------------------------------------------------------------- /perma_web/static/bundles/create.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/create.js.map -------------------------------------------------------------------------------- /perma_web/static/bundles/d8472f7b6012706fc028021e5a654843.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/d8472f7b6012706fc028021e5a654843.ttf -------------------------------------------------------------------------------- /perma_web/static/bundles/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/dashboard.css -------------------------------------------------------------------------------- /perma_web/static/bundles/dashboard.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/dashboard.css.map -------------------------------------------------------------------------------- /perma_web/static/bundles/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/dashboard.js -------------------------------------------------------------------------------- /perma_web/static/bundles/dashboard.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/dashboard.js.map -------------------------------------------------------------------------------- /perma_web/static/bundles/developer-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/developer-docs.js -------------------------------------------------------------------------------- /perma_web/static/bundles/developer-docs.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/developer-docs.js.map -------------------------------------------------------------------------------- /perma_web/static/bundles/e3b13bf771abea0c964d38193a3f7d74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/e3b13bf771abea0c964d38193a3f7d74.gif -------------------------------------------------------------------------------- /perma_web/static/bundles/ecdd509cadbf1ea78b8d2e31ec52328c.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/ecdd509cadbf1ea78b8d2e31ec52328c.eot -------------------------------------------------------------------------------- /perma_web/static/bundles/f47a561cb9a678e92931a7ac99b5c446.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/f47a561cb9a678e92931a7ac99b5c446.woff -------------------------------------------------------------------------------- /perma_web/static/bundles/fc6efd02434e00d50e3eb6ae2bf253b0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/fc6efd02434e00d50e3eb6ae2bf253b0.woff -------------------------------------------------------------------------------- /perma_web/static/bundles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/global.css -------------------------------------------------------------------------------- /perma_web/static/bundles/global.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/global.css.map -------------------------------------------------------------------------------- /perma_web/static/bundles/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/global.js -------------------------------------------------------------------------------- /perma_web/static/bundles/global.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/global.js.map -------------------------------------------------------------------------------- /perma_web/static/bundles/link-delete-confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/link-delete-confirm.js -------------------------------------------------------------------------------- /perma_web/static/bundles/link-delete-confirm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/link-delete-confirm.js.map -------------------------------------------------------------------------------- /perma_web/static/bundles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/main.js -------------------------------------------------------------------------------- /perma_web/static/bundles/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/main.js.map -------------------------------------------------------------------------------- /perma_web/static/bundles/single-link-permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/single-link-permissions.js -------------------------------------------------------------------------------- /perma_web/static/bundles/single-link-permissions.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/single-link-permissions.js.map -------------------------------------------------------------------------------- /perma_web/static/bundles/single-link.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/single-link.css -------------------------------------------------------------------------------- /perma_web/static/bundles/single-link.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/single-link.css.map -------------------------------------------------------------------------------- /perma_web/static/bundles/single-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/single-link.js -------------------------------------------------------------------------------- /perma_web/static/bundles/single-link.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/single-link.js.map -------------------------------------------------------------------------------- /perma_web/static/bundles/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/stats.js -------------------------------------------------------------------------------- /perma_web/static/bundles/stats.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/bundles/stats.js.map -------------------------------------------------------------------------------- /perma_web/static/css/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/css/_animation.scss -------------------------------------------------------------------------------- /perma_web/static/css/_bootstrap-custom-archive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/css/_bootstrap-custom-archive.scss -------------------------------------------------------------------------------- /perma_web/static/css/_bootstrap-custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/css/_bootstrap-custom.scss -------------------------------------------------------------------------------- /perma_web/static/css/_bootstrap-mod.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/css/_bootstrap-mod.scss -------------------------------------------------------------------------------- /perma_web/static/css/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/css/_fonts.scss -------------------------------------------------------------------------------- /perma_web/static/css/_mixins-global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/css/_mixins-global.scss -------------------------------------------------------------------------------- /perma_web/static/css/_perma-imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/css/_perma-imports.scss -------------------------------------------------------------------------------- /perma_web/static/css/_vars-global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/css/_vars-global.scss -------------------------------------------------------------------------------- /perma_web/static/css/style-responsive-archive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/css/style-responsive-archive.scss -------------------------------------------------------------------------------- /perma_web/static/css/style-responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/css/style-responsive.scss -------------------------------------------------------------------------------- /perma_web/static/doc/Perma.cc_CopyrightPolicy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/doc/Perma.cc_CopyrightPolicy.pdf -------------------------------------------------------------------------------- /perma_web/static/doc/Perma.cc_TOS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/doc/Perma.cc_TOS.pdf -------------------------------------------------------------------------------- /perma_web/static/fonts/Roboto-Black-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/Roboto-Black-webfont.eot -------------------------------------------------------------------------------- /perma_web/static/fonts/Roboto-Black-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/Roboto-Black-webfont.ttf -------------------------------------------------------------------------------- /perma_web/static/fonts/Roboto-Black-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/Roboto-Black-webfont.woff -------------------------------------------------------------------------------- /perma_web/static/fonts/Roboto-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/Roboto-Bold-webfont.eot -------------------------------------------------------------------------------- /perma_web/static/fonts/Roboto-Bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/Roboto-Bold-webfont.ttf -------------------------------------------------------------------------------- /perma_web/static/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /perma_web/static/fonts/Roboto-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/Roboto-Light-webfont.eot -------------------------------------------------------------------------------- /perma_web/static/fonts/Roboto-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/Roboto-Light-webfont.ttf -------------------------------------------------------------------------------- /perma_web/static/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /perma_web/static/fonts/Roboto-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/Roboto-Regular-webfont.eot -------------------------------------------------------------------------------- /perma_web/static/fonts/Roboto-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/Roboto-Regular-webfont.ttf -------------------------------------------------------------------------------- /perma_web/static/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /perma_web/static/fonts/RobotoSlab-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/RobotoSlab-Light.eot -------------------------------------------------------------------------------- /perma_web/static/fonts/RobotoSlab-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/RobotoSlab-Light.ttf -------------------------------------------------------------------------------- /perma_web/static/fonts/RobotoSlab-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/RobotoSlab-Light.woff -------------------------------------------------------------------------------- /perma_web/static/fonts/RobotoSlab-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/RobotoSlab-Regular.eot -------------------------------------------------------------------------------- /perma_web/static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /perma_web/static/fonts/RobotoSlab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/RobotoSlab-Regular.woff -------------------------------------------------------------------------------- /perma_web/static/fonts/font-awesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/font-awesome/FontAwesome.otf -------------------------------------------------------------------------------- /perma_web/static/fonts/font-awesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/font-awesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /perma_web/static/fonts/font-awesome/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/font-awesome/fontawesome-webfont.svg -------------------------------------------------------------------------------- /perma_web/static/fonts/font-awesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/font-awesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /perma_web/static/fonts/font-awesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/fonts/font-awesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /perma_web/static/frontend/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/App.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/CaptureError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/CaptureError.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/CreateLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/CreateLink.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/CreateLinkBatch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/CreateLinkBatch.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/Dialog.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/FolderSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/FolderSelect.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/FolderTree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/FolderTree.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/IconButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/IconButton.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/JSTree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/JSTree.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/LinkBatchDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/LinkBatchDetails.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/LinkBatchHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/LinkBatchHistory.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/LinkBrowser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/LinkBrowser.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/LinkCount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/LinkCount.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/LinkList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/LinkList.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/ProgressBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/ProgressBar.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/SectionHeading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/SectionHeading.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/Spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/Spinner.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/Toast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/Toast.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/UploadForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/UploadForm.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/forms/BaseInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/forms/BaseInput.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/forms/FileInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/forms/FileInput.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/forms/TextAreaInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/forms/TextAreaInput.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/components/forms/TextInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/components/forms/TextInput.vue -------------------------------------------------------------------------------- /perma_web/static/frontend/lib/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/lib/consts.js -------------------------------------------------------------------------------- /perma_web/static/frontend/lib/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/lib/data.js -------------------------------------------------------------------------------- /perma_web/static/frontend/lib/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/lib/errors.js -------------------------------------------------------------------------------- /perma_web/static/frontend/lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/lib/helpers.js -------------------------------------------------------------------------------- /perma_web/static/frontend/pages/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/pages/dashboard.js -------------------------------------------------------------------------------- /perma_web/static/frontend/stores/globalStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/frontend/stores/globalStore.js -------------------------------------------------------------------------------- /perma_web/static/img/archived-page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/archived-page.gif -------------------------------------------------------------------------------- /perma_web/static/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/bg.png -------------------------------------------------------------------------------- /perma_web/static/img/cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/cake.png -------------------------------------------------------------------------------- /perma_web/static/img/citation-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/citation-small.jpg -------------------------------------------------------------------------------- /perma_web/static/img/cited.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/cited.ai -------------------------------------------------------------------------------- /perma_web/static/img/cited.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/cited.gif -------------------------------------------------------------------------------- /perma_web/static/img/cited.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/cited.pdf -------------------------------------------------------------------------------- /perma_web/static/img/cited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/cited.png -------------------------------------------------------------------------------- /perma_web/static/img/clouds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/clouds.jpg -------------------------------------------------------------------------------- /perma_web/static/img/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/collapse.svg -------------------------------------------------------------------------------- /perma_web/static/img/create-account: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/create-account -------------------------------------------------------------------------------- /perma_web/static/img/create-account.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/create-account.gif -------------------------------------------------------------------------------- /perma_web/static/img/create-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/create-links.png -------------------------------------------------------------------------------- /perma_web/static/img/create-step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/create-step-1.png -------------------------------------------------------------------------------- /perma_web/static/img/create-step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/create-step-2.png -------------------------------------------------------------------------------- /perma_web/static/img/create-step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/create-step-3.png -------------------------------------------------------------------------------- /perma_web/static/img/create-step-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/create-step-4.png -------------------------------------------------------------------------------- /perma_web/static/img/creating-perma1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/creating-perma1.gif -------------------------------------------------------------------------------- /perma_web/static/img/creating-perma2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/creating-perma2.gif -------------------------------------------------------------------------------- /perma_web/static/img/dark-bulb-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/dark-bulb-full.png -------------------------------------------------------------------------------- /perma_web/static/img/dark-bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/dark-bulb.png -------------------------------------------------------------------------------- /perma_web/static/img/dashboard-icons-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/dashboard-icons-back.png -------------------------------------------------------------------------------- /perma_web/static/img/dashboard-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/dashboard-icons.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/annotate_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/annotate_link.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/browser-width-815.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/browser-width-815.rtf -------------------------------------------------------------------------------- /perma_web/static/img/docs/capture_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/capture_fail.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/citation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/citation_example.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/create-account: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/create-account -------------------------------------------------------------------------------- /perma_web/static/img/docs/create-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/create-api-key.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/create_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/create_link.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/dark_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/dark_archive.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/direct_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/direct_upload.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/folders-and-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/folders-and-links.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/header-create-and-manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/header-create-and-manage.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/layered-hand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/layered-hand -------------------------------------------------------------------------------- /perma_web/static/img/docs/new_org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/new_org.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/perma_record_external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/perma_record_external.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/record_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/record_page.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/registrar-default-privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/registrar-default-privacy.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/screenshot_create_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/screenshot_create_account.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/screenshot_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/screenshot_dropdown.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/screenshot_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/screenshot_home.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/set-to-private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/set-to-private.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/sponsored_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/sponsored_users.png -------------------------------------------------------------------------------- /perma_web/static/img/docs/upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/docs/upload.gif -------------------------------------------------------------------------------- /perma_web/static/img/dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/dots.gif -------------------------------------------------------------------------------- /perma_web/static/img/email-account.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/email-account.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/HLR_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/HLR_1.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/HLR_1@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/HLR_1@2x.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/HLR_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/HLR_2.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/HLR_2@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/HLR_2@2x.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/HLR_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/HLR_3.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/HLR_3@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/HLR_3@2x.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/MSC_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/MSC_1.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/MSC_1@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/MSC_1@2x.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/MSC_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/MSC_2.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/MSC_2@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/MSC_2@2x.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/MSC_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/MSC_3.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/MSC_3@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/MSC_3@2x.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/harvard-law-review.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/harvard-law-review.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/michigan-supreme-court-seal-trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/michigan-supreme-court-seal-trans.gif -------------------------------------------------------------------------------- /perma_web/static/img/examples/michigan-supreme-court-seal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/examples/michigan-supreme-court-seal.jpg -------------------------------------------------------------------------------- /perma_web/static/img/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/expand.svg -------------------------------------------------------------------------------- /perma_web/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/favicon.ico -------------------------------------------------------------------------------- /perma_web/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /perma_web/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /perma_web/static/img/graph-illus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/graph-illus.png -------------------------------------------------------------------------------- /perma_web/static/img/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/graph.png -------------------------------------------------------------------------------- /perma_web/static/img/icon_60770.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/icon_60770.png -------------------------------------------------------------------------------- /perma_web/static/img/infinity-logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/infinity-logo2.png -------------------------------------------------------------------------------- /perma_web/static/img/infinity-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/infinity-white.png -------------------------------------------------------------------------------- /perma_web/static/img/internet-archive-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/internet-archive-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/link-animation-gif-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-animation-gif-2.gif -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-0.svg -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-20.svg -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-50.svg -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-80.svg -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-demo.svg -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-healthy-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-healthy-1.gif -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-healthy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-healthy-1.png -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-healthy-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-healthy-1.svg -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-healthy-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-healthy-2.gif -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-healthy-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-healthy-2.png -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-healthy-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-healthy-2.svg -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-healthy-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-healthy-3.gif -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-healthy-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-healthy-3.png -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-healthy-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-healthy-3.svg -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-healthy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-healthy.gif -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-healthy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-healthy.png -------------------------------------------------------------------------------- /perma_web/static/img/link-rot-healthy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/link-rot-healthy.svg -------------------------------------------------------------------------------- /perma_web/static/img/linky-1-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/linky-1-export.png -------------------------------------------------------------------------------- /perma_web/static/img/linky-2-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/linky-2-export.png -------------------------------------------------------------------------------- /perma_web/static/img/linky-3-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/linky-3-export.png -------------------------------------------------------------------------------- /perma_web/static/img/list-of-links.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/list-of-links.gif -------------------------------------------------------------------------------- /perma_web/static/img/live-page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/live-page.gif -------------------------------------------------------------------------------- /perma_web/static/img/lsource_capture_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/lsource_capture_icon.png -------------------------------------------------------------------------------- /perma_web/static/img/lsource_capture_icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/lsource_capture_icon.psd -------------------------------------------------------------------------------- /perma_web/static/img/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/map.png -------------------------------------------------------------------------------- /perma_web/static/img/msedge-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/msedge-hub.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/AU-WCL-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/AU-WCL-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/AU-WCL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/AU-WCL.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/BC-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/BC-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/BU-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/BU-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Biddle-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Biddle-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/CST_logo_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/CST_logo_bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Charleston-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Charleston-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Colorado-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Colorado-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Columbia-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Columbia-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Cornell-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Cornell-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Duke-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Duke-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/FSU-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/FSU-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Florida-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Florida-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Fordham-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Fordham-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Georgetown-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Georgetown-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/HLS-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/HLS-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Indiana-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Indiana-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Jmls-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Jmls-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/LC-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/LC-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/LSU-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/LSU-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/LaVerne-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/LaVerne-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Loyola-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Loyola-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Maryland-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Maryland-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Melbourne-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Melbourne-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Miami-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Miami-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Nebraska-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Nebraska-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Ohio-State-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Ohio-State-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Oxford-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Oxford-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Pepperdine-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Pepperdine-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/SanDiego-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/SanDiego-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Southtexas-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Southtexas-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Stanford-bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Stanford-bw.jpg -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Stanford-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Stanford-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/U-Utah-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/U-Utah-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/U-Washington-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/U-Washington-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/UCLA-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/UCLA-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/UMiss-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/UMiss-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/UNLV-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/UNLV-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/UT-Austin-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/UT-Austin-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/UWisc-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/UWisc-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/Vanderbilt-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/Vanderbilt-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/WashU-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/WashU-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/William-Mary-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/William-Mary-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/YLS-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/YLS-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/belmont-logo-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/belmont-logo-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/brooklyn-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/brooklyn-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/ck_logo_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/ck_logo_bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/cuny_law_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/cuny_law_bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/fletcher_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/fletcher_bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/georgia-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/georgia-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/ggu-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/ggu-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/loyolalaw_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/loyolalaw_bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/marquette-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/marquette-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/michigan-courts-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/michigan-courts-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/michigan-state-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/michigan-state-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/northwestern-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/northwestern-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/ocu_main_logonew_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/ocu_main_logonew_bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/pace-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/pace-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/pitt_law_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/pitt_law_bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/pu_logo_trans_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/pu_logo_trans_bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/renovation_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/renovation_logo.jpg -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/richmond-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/richmond-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/sd-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/sd-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/seattle-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/seattle-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/seton-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/seton-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/slu_law_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/slu_law_bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/smu-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/smu-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/st-thomas-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/st-thomas-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/suffolk-law-lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/suffolk-law-lib.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/tt-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/tt-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/tulane-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/tulane-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/uci-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/uci-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/ui-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/ui-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/unc-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/unc-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/utenn_law_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/utenn_law_bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/uvalaw-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/uvalaw-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/valparaiso-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/valparaiso-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/villanova-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/villanova-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/vt_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/vt_bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/widener-univ-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/widener-univ-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/williamette_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/williamette_bw.png -------------------------------------------------------------------------------- /perma_web/static/img/participating-institutions/wvu-logo-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/participating-institutions/wvu-logo-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/pdf-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/pdf-preview.jpg -------------------------------------------------------------------------------- /perma_web/static/img/pdf_capture_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/pdf_capture_icon.png -------------------------------------------------------------------------------- /perma_web/static/img/pdf_capture_icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/pdf_capture_icon.psd -------------------------------------------------------------------------------- /perma_web/static/img/perma-flow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/perma-flow.pdf -------------------------------------------------------------------------------- /perma_web/static/img/perma-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/perma-flow.png -------------------------------------------------------------------------------- /perma_web/static/img/perma-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/perma-hero.png -------------------------------------------------------------------------------- /perma_web/static/img/perma-infinity-landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/perma-infinity-landing.png -------------------------------------------------------------------------------- /perma_web/static/img/perma-logo-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/perma-logo-orange.svg -------------------------------------------------------------------------------- /perma_web/static/img/perma-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/perma-logo-white.svg -------------------------------------------------------------------------------- /perma_web/static/img/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/placeholder.jpg -------------------------------------------------------------------------------- /perma_web/static/img/register.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/register.gif -------------------------------------------------------------------------------- /perma_web/static/img/screen-capture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/screen-capture.gif -------------------------------------------------------------------------------- /perma_web/static/img/sharing/blue_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/sharing/blue_logo.png -------------------------------------------------------------------------------- /perma_web/static/img/shelf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/shelf.gif -------------------------------------------------------------------------------- /perma_web/static/img/shelf2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/shelf2.png -------------------------------------------------------------------------------- /perma_web/static/img/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signal.png -------------------------------------------------------------------------------- /perma_web/static/img/signup-academics-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-academics-bg.png -------------------------------------------------------------------------------- /perma_web/static/img/signup-academics-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-academics-bg.svg -------------------------------------------------------------------------------- /perma_web/static/img/signup-academics-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-academics-white.svg -------------------------------------------------------------------------------- /perma_web/static/img/signup-courts-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-courts-bg.png -------------------------------------------------------------------------------- /perma_web/static/img/signup-courts-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-courts-bg.svg -------------------------------------------------------------------------------- /perma_web/static/img/signup-courts-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-courts-white.svg -------------------------------------------------------------------------------- /perma_web/static/img/signup-everyone-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-everyone-bg.png -------------------------------------------------------------------------------- /perma_web/static/img/signup-everyone-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-everyone-bg.svg -------------------------------------------------------------------------------- /perma_web/static/img/signup-everyone-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-everyone-white.svg -------------------------------------------------------------------------------- /perma_web/static/img/signup-individuals-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-individuals-bg.png -------------------------------------------------------------------------------- /perma_web/static/img/signup-individuals-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-individuals-bg.svg -------------------------------------------------------------------------------- /perma_web/static/img/signup-libraries-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-libraries-bg.png -------------------------------------------------------------------------------- /perma_web/static/img/signup-libraries-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-libraries-bg.svg -------------------------------------------------------------------------------- /perma_web/static/img/signup-libraries-bg@1x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-libraries-bg@1x.svg -------------------------------------------------------------------------------- /perma_web/static/img/signup-libraries-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/signup-libraries-white.svg -------------------------------------------------------------------------------- /perma_web/static/img/social-media-icons/Facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/social-media-icons/Facebook.png -------------------------------------------------------------------------------- /perma_web/static/img/social-media-icons/Tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/social-media-icons/Tumblr.png -------------------------------------------------------------------------------- /perma_web/static/img/social-media-icons/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/social-media-icons/Twitter.png -------------------------------------------------------------------------------- /perma_web/static/img/sorry-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/sorry-preview.jpg -------------------------------------------------------------------------------- /perma_web/static/img/source_capture_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/source_capture_icon.png -------------------------------------------------------------------------------- /perma_web/static/img/static_capture_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/static_capture_icon.png -------------------------------------------------------------------------------- /perma_web/static/img/static_capture_icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/static_capture_icon.psd -------------------------------------------------------------------------------- /perma_web/static/img/stopwatch.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/stopwatch.ai -------------------------------------------------------------------------------- /perma_web/static/img/stopwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/stopwatch.png -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/Berkman-bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/Berkman-bw.jpg -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/DPLA-bw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/DPLA-bw.gif -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/DPLA-bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/DPLA-bw.jpg -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/DPLA-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/DPLA-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/IA-bw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/IA-bw.gif -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/IA-bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/IA-bw.jpg -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/IA-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/IA-bw.png -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/IMLS-bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/IMLS-bw.jpg -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/LIL-bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/LIL-bw.jpg -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/LIL-primary-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/LIL-primary-black.png -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/LIPA-bw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/LIPA-bw.gif -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/LIPA-bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/LIPA-bw.jpg -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/cf-logo-h-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/cf-logo-h-gray.png -------------------------------------------------------------------------------- /perma_web/static/img/supporting-partners/webrecorder-lockup-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/supporting-partners/webrecorder-lockup-black.png -------------------------------------------------------------------------------- /perma_web/static/img/thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/thumbnail.gif -------------------------------------------------------------------------------- /perma_web/static/img/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/toast.png -------------------------------------------------------------------------------- /perma_web/static/img/tracks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/tracks.png -------------------------------------------------------------------------------- /perma_web/static/img/transparent-sq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/transparent-sq.png -------------------------------------------------------------------------------- /perma_web/static/img/ui/perma-ui-8-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/ui/perma-ui-8-small.png -------------------------------------------------------------------------------- /perma_web/static/img/ui/perma-ui-affil-isPrivate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/ui/perma-ui-affil-isPrivate.svg -------------------------------------------------------------------------------- /perma_web/static/img/ui/perma-ui-affil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/ui/perma-ui-affil.svg -------------------------------------------------------------------------------- /perma_web/static/img/ui/perma-ui-chev-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/ui/perma-ui-chev-down.png -------------------------------------------------------------------------------- /perma_web/static/img/ui/perma-ui-chev-left-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/ui/perma-ui-chev-left-big.png -------------------------------------------------------------------------------- /perma_web/static/img/ui/perma-ui-chev-right-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/ui/perma-ui-chev-right-big.png -------------------------------------------------------------------------------- /perma_web/static/img/ui/perma-ui-chev-right-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/ui/perma-ui-chev-right-small.png -------------------------------------------------------------------------------- /perma_web/static/img/ui/perma-ui-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/ui/perma-ui-flag.svg -------------------------------------------------------------------------------- /perma_web/static/img/ui/perma-ui-private-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/ui/perma-ui-private-white.png -------------------------------------------------------------------------------- /perma_web/static/img/ui/perma-ui-private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/ui/perma-ui-private.png -------------------------------------------------------------------------------- /perma_web/static/img/ui/perma-ui-private.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/ui/perma-ui-private.svg -------------------------------------------------------------------------------- /perma_web/static/img/ui/perma-ui-success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/ui/perma-ui-success.svg -------------------------------------------------------------------------------- /perma_web/static/img/upload-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/upload-preview.jpg -------------------------------------------------------------------------------- /perma_web/static/img/upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/upload.gif -------------------------------------------------------------------------------- /perma_web/static/img/watermark-text.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/watermark-text.ai -------------------------------------------------------------------------------- /perma_web/static/img/watermark-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/watermark-text.png -------------------------------------------------------------------------------- /perma_web/static/img/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/watermark.png -------------------------------------------------------------------------------- /perma_web/static/img/websites-change-square_unlinked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/img/websites-change-square_unlinked.svg -------------------------------------------------------------------------------- /perma_web/static/js/admin-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/js/admin-stats.js -------------------------------------------------------------------------------- /perma_web/static/js/developer-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/js/developer-docs.js -------------------------------------------------------------------------------- /perma_web/static/js/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/js/global.js -------------------------------------------------------------------------------- /perma_web/static/js/helpers/api.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/js/helpers/api.module.js -------------------------------------------------------------------------------- /perma_web/static/js/helpers/dom.helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/js/helpers/dom.helpers.js -------------------------------------------------------------------------------- /perma_web/static/js/helpers/fix-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/js/helpers/fix-links.js -------------------------------------------------------------------------------- /perma_web/static/js/helpers/general.helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/js/helpers/general.helpers.js -------------------------------------------------------------------------------- /perma_web/static/js/helpers/handlebars.helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/js/helpers/handlebars.helpers.js -------------------------------------------------------------------------------- /perma_web/static/js/helpers/link.helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/js/helpers/link.helpers.js -------------------------------------------------------------------------------- /perma_web/static/js/helpers/local-datetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/js/helpers/local-datetime.js -------------------------------------------------------------------------------- /perma_web/static/js/link-delete-confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/js/link-delete-confirm.js -------------------------------------------------------------------------------- /perma_web/static/js/single-link-permissions.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/js/single-link-permissions.module.js -------------------------------------------------------------------------------- /perma_web/static/js/single-link.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/js/single-link.module.js -------------------------------------------------------------------------------- /perma_web/static/maintenance/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/maintenance/maintenance.html -------------------------------------------------------------------------------- /perma_web/static/pdfs/guide-copyright.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/pdfs/guide-copyright.pdf -------------------------------------------------------------------------------- /perma_web/static/pdfs/guide-faculty.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/pdfs/guide-faculty.pdf -------------------------------------------------------------------------------- /perma_web/static/pdfs/guide-journals.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/pdfs/guide-journals.pdf -------------------------------------------------------------------------------- /perma_web/static/pdfs/guide-librarians.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/pdfs/guide-librarians.pdf -------------------------------------------------------------------------------- /perma_web/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /warc/ -------------------------------------------------------------------------------- /perma_web/static/vendors/font-awesome/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/vendors/font-awesome/font-awesome.min.css -------------------------------------------------------------------------------- /perma_web/static/vendors/html5shiv/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/vendors/html5shiv/html5shiv.js -------------------------------------------------------------------------------- /perma_web/static/vendors/respond/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/static/vendors/respond/respond.js -------------------------------------------------------------------------------- /perma_web/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/tasks/__init__.py -------------------------------------------------------------------------------- /perma_web/tasks/check_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/tasks/check_storage.py -------------------------------------------------------------------------------- /perma_web/tasks/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/tasks/dev.py -------------------------------------------------------------------------------- /perma_web/tasks/merge_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/tasks/merge_accounts.py -------------------------------------------------------------------------------- /perma_web/tasks/once.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/tasks/once.py -------------------------------------------------------------------------------- /perma_web/tasks/wacz_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/tasks/wacz_conversion.py -------------------------------------------------------------------------------- /perma_web/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/urls.py -------------------------------------------------------------------------------- /perma_web/webpack-stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/webpack-stats.json -------------------------------------------------------------------------------- /perma_web/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/perma_web/webpack.config.js -------------------------------------------------------------------------------- /services/aws/global-bundle.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/aws/global-bundle.pem -------------------------------------------------------------------------------- /services/cloudflare/ips-v4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/cloudflare/ips-v4 -------------------------------------------------------------------------------- /services/cloudflare/ips-v6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/cloudflare/ips-v6 -------------------------------------------------------------------------------- /services/django/generated_assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/django/generated_assets/README -------------------------------------------------------------------------------- /services/docker/minio/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/docker/minio/entrypoint.sh -------------------------------------------------------------------------------- /services/docker/minio/ssl/.gitignore: -------------------------------------------------------------------------------- 1 | *.crt 2 | *.key 3 | *.conf 4 | -------------------------------------------------------------------------------- /services/docker/perma-payments/settings.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/docker/perma-payments/settings.py.example -------------------------------------------------------------------------------- /services/docker/scoop-rest-api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/docker/scoop-rest-api/config.py -------------------------------------------------------------------------------- /services/docker/superset/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/docker/superset/Dockerfile -------------------------------------------------------------------------------- /services/docker/superset/dashboard_export.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/docker/superset/dashboard_export.zip -------------------------------------------------------------------------------- /services/docker/superset/superset-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/docker/superset/superset-init.sh -------------------------------------------------------------------------------- /services/docker/superset/superset_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/docker/superset/superset_config.py -------------------------------------------------------------------------------- /services/docker/wacz-exhibitor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/docker/wacz-exhibitor/Dockerfile -------------------------------------------------------------------------------- /services/docker/wacz-exhibitor/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/docker/wacz-exhibitor/nginx.conf -------------------------------------------------------------------------------- /services/docker/wacz-exhibitor/ssl/.gitignore: -------------------------------------------------------------------------------- 1 | *.crt 2 | *.key 3 | *.conf 4 | -------------------------------------------------------------------------------- /services/js-wacz/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/js-wacz/package-lock.json -------------------------------------------------------------------------------- /services/js-wacz/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/services/js-wacz/package.json -------------------------------------------------------------------------------- /services/logs/README: -------------------------------------------------------------------------------- 1 | Services running in the VM should store their logs here. -------------------------------------------------------------------------------- /websites-change-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvard-lil/perma/HEAD/websites-change-square.svg --------------------------------------------------------------------------------