seshat 26.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- seshat-26.7/LICENSE +16 -0
- seshat-26.7/MANIFEST.in +10 -0
- seshat-26.7/Makefile.am +121 -0
- seshat-26.7/Makefile.in +1037 -0
- seshat-26.7/PKG-INFO +185 -0
- seshat-26.7/README.md +161 -0
- seshat-26.7/configure +4978 -0
- seshat-26.7/configure.ac +102 -0
- seshat-26.7/debian/changelog +47 -0
- seshat-26.7/debian/control +29 -0
- seshat-26.7/debian/copyright +55 -0
- seshat-26.7/debian/rules +8 -0
- seshat-26.7/debian/source/format +1 -0
- seshat-26.7/debian/source/include-binaries +8 -0
- seshat-26.7/doc/Makefile.am +67 -0
- seshat-26.7/doc/Makefile.in +715 -0
- seshat-26.7/doc/api.typ +2508 -0
- seshat-26.7/doc/config.typ +51 -0
- seshat-26.7/doc/config.typ.in +51 -0
- seshat-26.7/doc/contact.typ +22 -0
- seshat-26.7/doc/contributing.typ +254 -0
- seshat-26.7/doc/figures/account.svg +2 -0
- seshat-26.7/doc/figures/author.svg +2 -0
- seshat-26.7/doc/figures/category.svg +2 -0
- seshat-26.7/doc/figures/collaborators.svg +2 -0
- seshat-26.7/doc/figures/collection-container.svg +2 -0
- seshat-26.7/doc/figures/collection.svg +2 -0
- seshat-26.7/doc/figures/dataset-container.svg +2 -0
- seshat-26.7/doc/figures/dataset.svg +2 -0
- seshat-26.7/doc/figures/favicon.png +0 -0
- seshat-26.7/doc/figures/file.svg +2 -0
- seshat-26.7/doc/figures/funding.svg +2 -0
- seshat-26.7/doc/figures/institutiongroup.svg +2 -0
- seshat-26.7/doc/figures/logo.svg +2 -0
- seshat-26.7/doc/figures/privatelink.svg +2 -0
- seshat-26.7/doc/figures/rdf-list-abbrev.svg +2 -0
- seshat-26.7/doc/figures/references-graph.svg +2 -0
- seshat-26.7/doc/figures/typed-literals-notation.svg +2 -0
- seshat-26.7/doc/figures/typed-notation.svg +2 -0
- seshat-26.7/doc/index.html +896 -0
- seshat-26.7/doc/introduction.typ +40 -0
- seshat-26.7/doc/knowledge-graph.typ +229 -0
- seshat-26.7/doc/news.typ +757 -0
- seshat-26.7/doc/references.bib +22 -0
- seshat-26.7/doc/running-seshat.typ +765 -0
- seshat-26.7/doc/seshat.pdf +38142 -9
- seshat-26.7/doc/seshat.typ +211 -0
- seshat-26.7/etc/seshat.service +15 -0
- seshat-26.7/etc/seshat.xml +147 -0
- seshat-26.7/guix.scm.in +64 -0
- seshat-26.7/install-sh +541 -0
- seshat-26.7/missing +236 -0
- seshat-26.7/pyproject.toml +52 -0
- seshat-26.7/pyproject.toml.in +52 -0
- seshat-26.7/rpmbuild/SPECS/seshat.spec.in +134 -0
- seshat-26.7/setup.cfg +4 -0
- seshat-26.7/src/Makefile.am +262 -0
- seshat-26.7/src/Makefile.in +679 -0
- seshat-26.7/src/seshat/__init__.py +0 -0
- seshat-26.7/src/seshat/config.py +9 -0
- seshat-26.7/src/seshat/ui.py +133 -0
- seshat-26.7/src/seshat/utils/constants.py +63 -0
- seshat-26.7/src/seshat/utils/convenience.py +364 -0
- seshat-26.7/src/seshat/utils/rdf.py +273 -0
- seshat-26.7/src/seshat/web/cache.py +123 -0
- seshat-26.7/src/seshat/web/config.py +118 -0
- seshat-26.7/src/seshat/web/database.py +3835 -0
- seshat-26.7/src/seshat/web/email_handler.py +84 -0
- seshat-26.7/src/seshat/web/formatter.py +783 -0
- seshat-26.7/src/seshat/web/locks.py +70 -0
- seshat-26.7/src/seshat/web/resources/html_templates/400.html +5 -0
- seshat-26.7/src/seshat/web/resources/html_templates/403.html +5 -0
- seshat-26.7/src/seshat/web/resources/html_templates/404.html +5 -0
- seshat-26.7/src/seshat/web/resources/html_templates/410.html +5 -0
- seshat-26.7/src/seshat/web/resources/html_templates/500.html +6 -0
- seshat-26.7/src/seshat/web/resources/html_templates/502.html +6 -0
- seshat-26.7/src/seshat/web/resources/html_templates/503.html +7 -0
- seshat-26.7/src/seshat/web/resources/html_templates/activate_2fa_session.html +15 -0
- seshat-26.7/src/seshat/web/resources/html_templates/admin/dashboard.html +29 -0
- seshat-26.7/src/seshat/web/resources/html_templates/admin/exploratory.html +67 -0
- seshat-26.7/src/seshat/web/resources/html_templates/admin/quota_requests.html +56 -0
- seshat-26.7/src/seshat/web/resources/html_templates/admin/reports/dashboard.html +55 -0
- seshat-26.7/src/seshat/web/resources/html_templates/admin/reports/embargoed_datasets.html +69 -0
- seshat-26.7/src/seshat/web/resources/html_templates/admin/reports/restricted_datasets.html +64 -0
- seshat-26.7/src/seshat/web/resources/html_templates/admin/sparql.html +37 -0
- seshat-26.7/src/seshat/web/resources/html_templates/admin/users.html +72 -0
- seshat-26.7/src/seshat/web/resources/html_templates/author.html +116 -0
- seshat-26.7/src/seshat/web/resources/html_templates/badge.svg +46 -0
- seshat-26.7/src/seshat/web/resources/html_templates/categories.html +76 -0
- seshat-26.7/src/seshat/web/resources/html_templates/category.html +21 -0
- seshat-26.7/src/seshat/web/resources/html_templates/collection.html +26 -0
- seshat-26.7/src/seshat/web/resources/html_templates/colors.css +57 -0
- seshat-26.7/src/seshat/web/resources/html_templates/dataset.html +127 -0
- seshat-26.7/src/seshat/web/resources/html_templates/dataset_access_request.html +21 -0
- seshat-26.7/src/seshat/web/resources/html_templates/depositor/dashboard.html +116 -0
- seshat-26.7/src/seshat/web/resources/html_templates/depositor/edit-collection.html +230 -0
- seshat-26.7/src/seshat/web/resources/html_templates/depositor/edit-dataset.html +560 -0
- seshat-26.7/src/seshat/web/resources/html_templates/depositor/edit-session.html +81 -0
- seshat-26.7/src/seshat/web/resources/html_templates/depositor/language-selector.html +92 -0
- seshat-26.7/src/seshat/web/resources/html_templates/depositor/my-collections.html +89 -0
- seshat-26.7/src/seshat/web/resources/html_templates/depositor/my-data.html +113 -0
- seshat-26.7/src/seshat/web/resources/html_templates/depositor/new_private_link.html +52 -0
- seshat-26.7/src/seshat/web/resources/html_templates/depositor/private-links.html +48 -0
- seshat-26.7/src/seshat/web/resources/html_templates/depositor/profile.html +135 -0
- seshat-26.7/src/seshat/web/resources/html_templates/depositor/published-collection.html +15 -0
- seshat-26.7/src/seshat/web/resources/html_templates/depositor/submitted-for-review.html +15 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/2fa_token.html +8 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/2fa_token.txt +7 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/data_access_request.html +13 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/data_access_request.txt +14 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/dataset_approved.html +18 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/dataset_approved.txt +22 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/dataset_declined.html +8 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/dataset_declined.txt +8 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/dataset_submitted.html +8 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/dataset_submitted.txt +7 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/declined_dataset_notification.html +10 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/declined_dataset_notification.txt +6 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/feedback.html +10 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/feedback.txt +10 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/layout.html +12 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/published_dataset_notification.html +10 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/published_dataset_notification.txt +6 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/quota_approved.html +8 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/quota_approved.txt +9 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/quota_request.html +10 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/quota_request.txt +9 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/submitted_for_review_notification.html +8 -0
- seshat-26.7/src/seshat/web/resources/html_templates/email/submitted_for_review_notification.txt +10 -0
- seshat-26.7/src/seshat/web/resources/html_templates/feedback.html +53 -0
- seshat-26.7/src/seshat/web/resources/html_templates/git_instructions.html +7 -0
- seshat-26.7/src/seshat/web/resources/html_templates/institutions.html +58 -0
- seshat-26.7/src/seshat/web/resources/html_templates/jsonld.html +73 -0
- seshat-26.7/src/seshat/web/resources/html_templates/layout.html +123 -0
- seshat-26.7/src/seshat/web/resources/html_templates/loader.svg +51 -0
- seshat-26.7/src/seshat/web/resources/html_templates/maintenance.html +5 -0
- seshat-26.7/src/seshat/web/resources/html_templates/portal.html +62 -0
- seshat-26.7/src/seshat/web/resources/html_templates/private_link_is_expired.html +5 -0
- seshat-26.7/src/seshat/web/resources/html_templates/public_metadata.html +310 -0
- seshat-26.7/src/seshat/web/resources/html_templates/review/overview.html +102 -0
- seshat-26.7/src/seshat/web/resources/html_templates/review/published.html +14 -0
- seshat-26.7/src/seshat/web/resources/html_templates/search.html +322 -0
- seshat-26.7/src/seshat/web/resources/html_templates/sitemap_template.xml +11 -0
- seshat-26.7/src/seshat/web/resources/languages.json +91 -0
- seshat-26.7/src/seshat/web/resources/licenses.json +156 -0
- seshat-26.7/src/seshat/web/resources/metadata_templates/bibtex.bib +10 -0
- seshat-26.7/src/seshat/web/resources/metadata_templates/citation.cff +21 -0
- seshat-26.7/src/seshat/web/resources/metadata_templates/endnote.enw +18 -0
- seshat-26.7/src/seshat/web/resources/metadata_templates/refman.ris +19 -0
- seshat-26.7/src/seshat/web/resources/root_categories.json +296 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/account_by_email.sparql +35 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/account_by_session_token.sparql +44 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/account_categories.sparql +28 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/account_sessions.sparql +26 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/account_storage_used.sparql +23 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/account_uuid_by_orcid.sparql +14 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/accounts.sparql +67 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/append_to_list.sparql +19 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/associated_authors.sparql +16 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/author_profile.sparql +34 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/author_public_items.sparql +34 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/authors.sparql +84 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/categories.sparql +62 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/categories_tree.sparql +17 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/category_by_id.sparql +21 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/collaborators.sparql +75 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/collection_dataset_containers.sparql +8 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/collection_datasets.sparql +19 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/collection_datasets_count.sparql +11 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/collection_versions.sparql +20 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/collections.sparql +107 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/collections_by_account.sparql +18 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/collections_from_dataset.sparql +18 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/contact_info_from_container.sparql +14 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/container.sparql +28 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/container_items.sparql +58 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/container_uuid_by_id.sparql +13 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/custom_fields.sparql +33 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/dataset_files.sparql +90 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/dataset_is_under_review.sparql +11 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/dataset_statistics.sparql +26 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/dataset_statistics_timeline.sparql +21 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/dataset_storage_used.sparql +12 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/dataset_versions.sparql +23 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/datasets.sparql +238 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/decline_draft_dataset.sparql +28 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_account_groups_associations.sparql +15 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_account_property.sparql +15 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_associations.sparql +40 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_collaborator.sparql +29 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_collection_draft.sparql +29 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_dataset_draft.sparql +39 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_dataset_embargo.sparql +23 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_group_members.sparql +21 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_inactive_session_by_uuid.sparql +17 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_inferred_groups.sparql +21 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_item_from_list.sparql +30 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_items_all_from_list.sparql +24 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_private_links.sparql +25 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_session.sparql +17 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_session_by_uuid.sparql +18 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_sessions.sparql +14 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/delete_sessions_older_than.sparql +17 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/derived_from.sparql +10 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/explorer_properties.sparql +11 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/explorer_property_types.sparql +12 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/explorer_types.sparql +10 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/export_listable_type.sparql +22 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/export_root_type.sparql +19 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/funding.sparql +33 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/group.sparql +23 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/group_by_name.sparql +16 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/item_collaborative_permissions.sparql +40 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/latest_datasets_portal.sparql +17 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/licenses.sparql +16 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/members.sparql +32 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/missing_checksummed_files_for_container.sparql +16 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/missing_dois.sparql +16 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/prefixes.sparql +5 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/private_links.sparql +34 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/projects.sparql +28 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/publish_draft_collection.sparql +59 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/publish_draft_dataset.sparql +66 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/quota_requests.sparql +28 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/record_uri.sparql +10 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/references.sparql +43 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/reviews.sparql +78 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/root_categories.sparql +17 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/search_tags.sparql +14 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/statistics_authors.sparql +16 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/statistics_collections.sparql +13 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/statistics_datalink.sparql +13 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/statistics_datasets.sparql +13 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/statistics_files.sparql +32 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/subcategories_by_category.sparql +19 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/tags.sparql +47 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/transfer_account_resources.sparql +19 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_account.sparql +117 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_author.sparql +49 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_authors_order.sparql +34 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_collaborators.sparql +52 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_collection.sparql +110 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_dataset.sparql +229 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_dataset_thumb.sparql +36 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_doi_after_publishing.sparql +20 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_file.sparql +105 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_git_uuid.sparql +21 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_orcid_for_account.sparql +28 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_private_link.sparql +47 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_quota_request.sparql +46 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_review.sparql +36 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_seen_by_reviewer.sparql +20 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_session.sparql +35 -0
- seshat-26.7/src/seshat/web/resources/sparql_templates/update_view_and_download_counts.sparql +50 -0
- seshat-26.7/src/seshat/web/resources/static/css/ace.css +1 -0
- seshat-26.7/src/seshat/web/resources/static/css/dropzone.min.css +1 -0
- seshat-26.7/src/seshat/web/resources/static/css/form.css +191 -0
- seshat-26.7/src/seshat/web/resources/static/css/jquery.dataTables.min.css +1 -0
- seshat-26.7/src/seshat/web/resources/static/css/main.css +626 -0
- seshat-26.7/src/seshat/web/resources/static/css/pub.css +63 -0
- seshat-26.7/src/seshat/web/resources/static/css/quill.snow.css +10 -0
- seshat-26.7/src/seshat/web/resources/static/fonts/FiraCode-Regular.woff2 +0 -0
- seshat-26.7/src/seshat/web/resources/static/fonts/SourceSansPro-Bold.ttf +0 -0
- seshat-26.7/src/seshat/web/resources/static/fonts/SourceSansPro-Italic.ttf +0 -0
- seshat-26.7/src/seshat/web/resources/static/fonts/SourceSansPro-Regular.ttf +0 -0
- seshat-26.7/src/seshat/web/resources/static/fonts/fa-brands-400.eot +0 -0
- seshat-26.7/src/seshat/web/resources/static/fonts/fa-brands-400.ttf +0 -0
- seshat-26.7/src/seshat/web/resources/static/fonts/fa-brands-400.woff +0 -0
- seshat-26.7/src/seshat/web/resources/static/fonts/fa-brands-400.woff2 +0 -0
- seshat-26.7/src/seshat/web/resources/static/fonts/fa-solid-900.eot +0 -0
- seshat-26.7/src/seshat/web/resources/static/fonts/fa-solid-900.ttf +0 -0
- seshat-26.7/src/seshat/web/resources/static/fonts/fa-solid-900.woff +0 -0
- seshat-26.7/src/seshat/web/resources/static/fonts/fa-solid-900.woff2 +0 -0
- seshat-26.7/src/seshat/web/resources/static/images/codeworks-badge.svg +2 -0
- seshat-26.7/src/seshat/web/resources/static/images/collection-thumb.svg +33 -0
- seshat-26.7/src/seshat/web/resources/static/images/dataset-thumb.svg +86 -0
- seshat-26.7/src/seshat/web/resources/static/images/datatables/sort_asc.png +0 -0
- seshat-26.7/src/seshat/web/resources/static/images/datatables/sort_asc_disabled.png +0 -0
- seshat-26.7/src/seshat/web/resources/static/images/datatables/sort_both.png +0 -0
- seshat-26.7/src/seshat/web/resources/static/images/datatables/sort_desc.png +0 -0
- seshat-26.7/src/seshat/web/resources/static/images/datatables/sort_desc_disabled.png +0 -0
- seshat-26.7/src/seshat/web/resources/static/images/ext-link.png +0 -0
- seshat-26.7/src/seshat/web/resources/static/images/handle-logo.png +0 -0
- seshat-26.7/src/seshat/web/resources/static/images/logo.png +0 -0
- seshat-26.7/src/seshat/web/resources/static/images/logo.svg +2 -0
- seshat-26.7/src/seshat/web/resources/static/images/orcid.svg +17 -0
- seshat-26.7/src/seshat/web/resources/static/js/ace/ace.js +17 -0
- seshat-26.7/src/seshat/web/resources/static/js/ace/ext-language_tools.js +8 -0
- seshat-26.7/src/seshat/web/resources/static/js/ace/ext-searchbox.js +8 -0
- seshat-26.7/src/seshat/web/resources/static/js/ace/mode-sparql.js +8 -0
- seshat-26.7/src/seshat/web/resources/static/js/ace/theme-crimson_editor.js +8 -0
- seshat-26.7/src/seshat/web/resources/static/js/admin-dashboard.js +40 -0
- seshat-26.7/src/seshat/web/resources/static/js/d3.v7.min.js +2 -0
- seshat-26.7/src/seshat/web/resources/static/js/depositor-dashboard.js +61 -0
- seshat-26.7/src/seshat/web/resources/static/js/dropzone.min.js +1 -0
- seshat-26.7/src/seshat/web/resources/static/js/edit-collection.js +640 -0
- seshat-26.7/src/seshat/web/resources/static/js/edit-dataset.js +1673 -0
- seshat-26.7/src/seshat/web/resources/static/js/edit-profile.js +100 -0
- seshat-26.7/src/seshat/web/resources/static/js/exploratory.js +185 -0
- seshat-26.7/src/seshat/web/resources/static/js/jquery-3.6.0.min.js +2 -0
- seshat-26.7/src/seshat/web/resources/static/js/jquery.dataTables.min.js +187 -0
- seshat-26.7/src/seshat/web/resources/static/js/landing_page.js +133 -0
- seshat-26.7/src/seshat/web/resources/static/js/my-data.js +27 -0
- seshat-26.7/src/seshat/web/resources/static/js/query-editor.js +98 -0
- seshat-26.7/src/seshat/web/resources/static/js/quill.min.js +3 -0
- seshat-26.7/src/seshat/web/resources/static/js/ranking.js +84 -0
- seshat-26.7/src/seshat/web/resources/static/js/review-overview.js +211 -0
- seshat-26.7/src/seshat/web/resources/static/js/search.js +924 -0
- seshat-26.7/src/seshat/web/resources/static/js/utils.js +568 -0
- seshat-26.7/src/seshat/web/s3.py +151 -0
- seshat-26.7/src/seshat/web/ui.py +1436 -0
- seshat-26.7/src/seshat/web/validator.py +525 -0
- seshat-26.7/src/seshat/web/wsgi.py +10267 -0
- seshat-26.7/src/seshat/web/xml_formatter.py +360 -0
- seshat-26.7/src/seshat/web/zipfly.py +184 -0
- seshat-26.7/src/seshat.egg-info/PKG-INFO +185 -0
- seshat-26.7/src/seshat.egg-info/SOURCES.txt +325 -0
- seshat-26.7/src/seshat.egg-info/dependency_links.txt +1 -0
- seshat-26.7/src/seshat.egg-info/entry_points.txt +2 -0
- seshat-26.7/src/seshat.egg-info/requires.txt +7 -0
- seshat-26.7/src/seshat.egg-info/top_level.txt +1 -0
- seshat-26.7/tests/admin_panel.py +146 -0
- seshat-26.7/tests/create_article.py +236 -0
- seshat-26.7/tests/create_collection.py +68 -0
- seshat-26.7/tests/depositor_panel.py +81 -0
- seshat-26.7/tests/ui_pages.py +119 -0
- seshat-26.7/tests/validators.py +235 -0
seshat-26.7/LICENSE
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Copyright (c) 2021-2025 TU Delft <r.r.e.janssen@tudelft.nl>
|
|
2
|
+
Copyright (c) 2025, 2026 Roel Janssen <rrejanssen@gmail.com>
|
|
3
|
+
|
|
4
|
+
This program is free software: you can redistribute it and/or modify
|
|
5
|
+
it under the terms of the GNU Affero General Public License as published by
|
|
6
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
7
|
+
(at your option) any later version.
|
|
8
|
+
|
|
9
|
+
This program is distributed in the hope that it will be useful,
|
|
10
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
+
GNU Affero General Public License for more details.
|
|
13
|
+
|
|
14
|
+
You should have received a copy of the GNU Affero General Public
|
|
15
|
+
License along with this program. If not, see
|
|
16
|
+
<http://www.gnu.org/licenses/>.
|
seshat-26.7/MANIFEST.in
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
include configure.ac configure guix.scm.in pyproject.toml.in missing install-sh
|
|
2
|
+
include Makefile.am doc/Makefile.am src/Makefile.am Makefile.in doc/Makefile.in src/Makefile.in
|
|
3
|
+
include docker/Dockerfile docker/docker-compose.yaml
|
|
4
|
+
include etc/seshat.service etc/seshat.xml
|
|
5
|
+
include doc/*.typ doc/config.typ.in doc/references.bib doc/figures/*.svg doc/figures/favicon.png doc/seshat.pdf doc/index.html
|
|
6
|
+
include rpmbuild/SPECS/seshat.spec.in
|
|
7
|
+
include debian/changelog debian/control debian/copyright debian/rules debian/source/format debian/source/include-binaries
|
|
8
|
+
recursive-include src *.py
|
|
9
|
+
recursive-include tests *.py
|
|
10
|
+
recursive-include src/seshat/web/resources *.bib *.enw *.ris *.cff *.txt *.html *.xml *.css *.eot *.svg *.ttf *.woff *.woff2 *.js *.json *.sparql *.png
|
seshat-26.7/Makefile.am
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
AUTOMAKE_OPTIONS = subdir-objects
|
|
2
|
+
SUBDIRS = src doc helm
|
|
3
|
+
|
|
4
|
+
# Help make tarballs more reproducible.
|
|
5
|
+
export TAR_OPTIONS = --owner=0 --group=0 --numeric-owner
|
|
6
|
+
|
|
7
|
+
if HAVE_SYSTEMD
|
|
8
|
+
systemdsystemunit_DATA = etc/seshat.service
|
|
9
|
+
endif
|
|
10
|
+
|
|
11
|
+
sysconf_DATA = etc/seshat.xml
|
|
12
|
+
|
|
13
|
+
EXTRA_DIST = \
|
|
14
|
+
LICENSE \
|
|
15
|
+
MANIFEST.in \
|
|
16
|
+
README.md \
|
|
17
|
+
SECURITY.md \
|
|
18
|
+
etc/seshat.service \
|
|
19
|
+
etc/seshat.xml \
|
|
20
|
+
debian/changelog \
|
|
21
|
+
debian/control \
|
|
22
|
+
debian/copyright \
|
|
23
|
+
debian/rules \
|
|
24
|
+
debian/source/format \
|
|
25
|
+
debian/source/include-binaries \
|
|
26
|
+
docker/development-build \
|
|
27
|
+
docker/release-build \
|
|
28
|
+
pyproject.toml \
|
|
29
|
+
tests/admin_panel.py \
|
|
30
|
+
tests/create_article.py \
|
|
31
|
+
tests/create_collection.py \
|
|
32
|
+
tests/depositor_panel.py \
|
|
33
|
+
tests/ui_pages.py \
|
|
34
|
+
tests/validators.py
|
|
35
|
+
|
|
36
|
+
man_MANS = doc/seshat.1
|
|
37
|
+
|
|
38
|
+
dist-rpm: dist
|
|
39
|
+
mkdir -p rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS}
|
|
40
|
+
rm -f rpmbuild/SOURCES/*
|
|
41
|
+
ln -s $(abs_top_srcdir)/seshat-@VERSION@.tar.gz rpmbuild/SOURCES/seshat-@VERSION@.tar.gz
|
|
42
|
+
rpmbuild --define "_topdir $(abs_top_srcdir)/rpmbuild" -ba $(abs_top_srcdir)/rpmbuild/SPECS/seshat.spec
|
|
43
|
+
|
|
44
|
+
dist-deb: dist
|
|
45
|
+
mkdir -p debbuild
|
|
46
|
+
rm -rf debbuild/*
|
|
47
|
+
ln -s $(abs_top_srcdir)/seshat-@VERSION@.tar.gz debbuild/seshat_@VERSION@.orig.tar.gz
|
|
48
|
+
cd debbuild && tar -zxf seshat_@VERSION@.orig.tar.gz && \
|
|
49
|
+
cd seshat-@VERSION@/ && debuild -us -uc
|
|
50
|
+
|
|
51
|
+
if HAVE_DOCKER
|
|
52
|
+
dist-docker: dist
|
|
53
|
+
@DOCKER@ image build --no-cache --squash \
|
|
54
|
+
-t seshat.software/seshat:@VERSION_FOR_PYTHON@ \
|
|
55
|
+
-f docker/release-build .
|
|
56
|
+
|
|
57
|
+
dist-docker-dev: dist
|
|
58
|
+
@DOCKER@ image build --no-cache --squash \
|
|
59
|
+
--build-arg="BRANCH=main" \
|
|
60
|
+
-t localhost/seshat:@VERSION_FOR_PYTHON@-dev \
|
|
61
|
+
-f docker/development-build .
|
|
62
|
+
|
|
63
|
+
publish-docker: dist-docker
|
|
64
|
+
@DOCKER@ push docker.io/4turesearchdata/djehuty:@VERSION@
|
|
65
|
+
endif
|
|
66
|
+
|
|
67
|
+
dist-pypi:
|
|
68
|
+
@PYTHON@ -m build
|
|
69
|
+
|
|
70
|
+
if HAVE_PYTHON_BUILD
|
|
71
|
+
source-dist:
|
|
72
|
+
@PYTHON@ -m build --skip-dependency-check --no-isolation --sdist \
|
|
73
|
+
-C=--global-option=sdist \
|
|
74
|
+
-C=--global-option=--owner=root \
|
|
75
|
+
-C=--global-option=--group=root \
|
|
76
|
+
-C=--global-option=--formats=gztar
|
|
77
|
+
|
|
78
|
+
binary-dist:
|
|
79
|
+
@PYTHON@ -m build --skip-dependency-check --no-isolation --wheel \
|
|
80
|
+
-C=--global-option=bdist \
|
|
81
|
+
-C=--global-option=--owner=root \
|
|
82
|
+
-C=--global-option=--group=root \
|
|
83
|
+
-C=--global-option=--formats=gztar
|
|
84
|
+
all-local:
|
|
85
|
+
@PYTHON@ -m build --skip-dependency-check --no-isolation \
|
|
86
|
+
--outdir $(shell readlink -f $(builddir))/build
|
|
87
|
+
|
|
88
|
+
else
|
|
89
|
+
source-dist:
|
|
90
|
+
@PYTHON@ -c "import setuptools; setuptools.setup()" sdist
|
|
91
|
+
binary-dist:
|
|
92
|
+
@PYTHON@ -c "import setuptools; setuptools.setup()" bdist_wheel
|
|
93
|
+
all-local:
|
|
94
|
+
@PYTHON@ -c "import setuptools; setuptools.setup(name='@PACKAGE_NAME@', version='@VERSION_FOR_PYTHON@')" \
|
|
95
|
+
sdist --dist-dir $(builddir)/build \
|
|
96
|
+
bdist_wheel --dist-dir $(builddir)/build
|
|
97
|
+
endif
|
|
98
|
+
|
|
99
|
+
install-exec-local:
|
|
100
|
+
@PYTHON@ -m pip install --prefix $(DESTDIR)$(prefix) \
|
|
101
|
+
--disable-pip-version-check \
|
|
102
|
+
--no-build-isolation \
|
|
103
|
+
--no-deps \
|
|
104
|
+
--no-cache-dir \
|
|
105
|
+
$(abs_builddir)/build/seshat-@VERSION_FOR_PYTHON@-py3-none-any.whl
|
|
106
|
+
|
|
107
|
+
uninstall-local:
|
|
108
|
+
rm -rf $(DESTDIR)$(pkgpythondir)
|
|
109
|
+
|
|
110
|
+
lint:
|
|
111
|
+
@pylint src/seshat/* > pylint.log || true
|
|
112
|
+
@printf "Wrote 'pylint.log'.\n"
|
|
113
|
+
|
|
114
|
+
coverity-report:
|
|
115
|
+
@cov-build --dir cov-int --no-command --fs-capture-search .
|
|
116
|
+
|
|
117
|
+
publish-pypi: dist-pypi
|
|
118
|
+
@PYTHON@ -m twine upload --repository pypi dist/seshat-@VERSION@.tar.gz dist/seshat-@VERSION@-py3-none-any.whl
|
|
119
|
+
|
|
120
|
+
publish-test-pypi: dist-pypi
|
|
121
|
+
@PYTHON@ -m twine upload --repository testpypi dist/seshat-@VERSION@.tar.gz dist/seshat-@VERSION@-py3-none-any.whl
|