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.
Files changed (327) hide show
  1. seshat-26.7/LICENSE +16 -0
  2. seshat-26.7/MANIFEST.in +10 -0
  3. seshat-26.7/Makefile.am +121 -0
  4. seshat-26.7/Makefile.in +1037 -0
  5. seshat-26.7/PKG-INFO +185 -0
  6. seshat-26.7/README.md +161 -0
  7. seshat-26.7/configure +4978 -0
  8. seshat-26.7/configure.ac +102 -0
  9. seshat-26.7/debian/changelog +47 -0
  10. seshat-26.7/debian/control +29 -0
  11. seshat-26.7/debian/copyright +55 -0
  12. seshat-26.7/debian/rules +8 -0
  13. seshat-26.7/debian/source/format +1 -0
  14. seshat-26.7/debian/source/include-binaries +8 -0
  15. seshat-26.7/doc/Makefile.am +67 -0
  16. seshat-26.7/doc/Makefile.in +715 -0
  17. seshat-26.7/doc/api.typ +2508 -0
  18. seshat-26.7/doc/config.typ +51 -0
  19. seshat-26.7/doc/config.typ.in +51 -0
  20. seshat-26.7/doc/contact.typ +22 -0
  21. seshat-26.7/doc/contributing.typ +254 -0
  22. seshat-26.7/doc/figures/account.svg +2 -0
  23. seshat-26.7/doc/figures/author.svg +2 -0
  24. seshat-26.7/doc/figures/category.svg +2 -0
  25. seshat-26.7/doc/figures/collaborators.svg +2 -0
  26. seshat-26.7/doc/figures/collection-container.svg +2 -0
  27. seshat-26.7/doc/figures/collection.svg +2 -0
  28. seshat-26.7/doc/figures/dataset-container.svg +2 -0
  29. seshat-26.7/doc/figures/dataset.svg +2 -0
  30. seshat-26.7/doc/figures/favicon.png +0 -0
  31. seshat-26.7/doc/figures/file.svg +2 -0
  32. seshat-26.7/doc/figures/funding.svg +2 -0
  33. seshat-26.7/doc/figures/institutiongroup.svg +2 -0
  34. seshat-26.7/doc/figures/logo.svg +2 -0
  35. seshat-26.7/doc/figures/privatelink.svg +2 -0
  36. seshat-26.7/doc/figures/rdf-list-abbrev.svg +2 -0
  37. seshat-26.7/doc/figures/references-graph.svg +2 -0
  38. seshat-26.7/doc/figures/typed-literals-notation.svg +2 -0
  39. seshat-26.7/doc/figures/typed-notation.svg +2 -0
  40. seshat-26.7/doc/index.html +896 -0
  41. seshat-26.7/doc/introduction.typ +40 -0
  42. seshat-26.7/doc/knowledge-graph.typ +229 -0
  43. seshat-26.7/doc/news.typ +757 -0
  44. seshat-26.7/doc/references.bib +22 -0
  45. seshat-26.7/doc/running-seshat.typ +765 -0
  46. seshat-26.7/doc/seshat.pdf +38142 -9
  47. seshat-26.7/doc/seshat.typ +211 -0
  48. seshat-26.7/etc/seshat.service +15 -0
  49. seshat-26.7/etc/seshat.xml +147 -0
  50. seshat-26.7/guix.scm.in +64 -0
  51. seshat-26.7/install-sh +541 -0
  52. seshat-26.7/missing +236 -0
  53. seshat-26.7/pyproject.toml +52 -0
  54. seshat-26.7/pyproject.toml.in +52 -0
  55. seshat-26.7/rpmbuild/SPECS/seshat.spec.in +134 -0
  56. seshat-26.7/setup.cfg +4 -0
  57. seshat-26.7/src/Makefile.am +262 -0
  58. seshat-26.7/src/Makefile.in +679 -0
  59. seshat-26.7/src/seshat/__init__.py +0 -0
  60. seshat-26.7/src/seshat/config.py +9 -0
  61. seshat-26.7/src/seshat/ui.py +133 -0
  62. seshat-26.7/src/seshat/utils/constants.py +63 -0
  63. seshat-26.7/src/seshat/utils/convenience.py +364 -0
  64. seshat-26.7/src/seshat/utils/rdf.py +273 -0
  65. seshat-26.7/src/seshat/web/cache.py +123 -0
  66. seshat-26.7/src/seshat/web/config.py +118 -0
  67. seshat-26.7/src/seshat/web/database.py +3835 -0
  68. seshat-26.7/src/seshat/web/email_handler.py +84 -0
  69. seshat-26.7/src/seshat/web/formatter.py +783 -0
  70. seshat-26.7/src/seshat/web/locks.py +70 -0
  71. seshat-26.7/src/seshat/web/resources/html_templates/400.html +5 -0
  72. seshat-26.7/src/seshat/web/resources/html_templates/403.html +5 -0
  73. seshat-26.7/src/seshat/web/resources/html_templates/404.html +5 -0
  74. seshat-26.7/src/seshat/web/resources/html_templates/410.html +5 -0
  75. seshat-26.7/src/seshat/web/resources/html_templates/500.html +6 -0
  76. seshat-26.7/src/seshat/web/resources/html_templates/502.html +6 -0
  77. seshat-26.7/src/seshat/web/resources/html_templates/503.html +7 -0
  78. seshat-26.7/src/seshat/web/resources/html_templates/activate_2fa_session.html +15 -0
  79. seshat-26.7/src/seshat/web/resources/html_templates/admin/dashboard.html +29 -0
  80. seshat-26.7/src/seshat/web/resources/html_templates/admin/exploratory.html +67 -0
  81. seshat-26.7/src/seshat/web/resources/html_templates/admin/quota_requests.html +56 -0
  82. seshat-26.7/src/seshat/web/resources/html_templates/admin/reports/dashboard.html +55 -0
  83. seshat-26.7/src/seshat/web/resources/html_templates/admin/reports/embargoed_datasets.html +69 -0
  84. seshat-26.7/src/seshat/web/resources/html_templates/admin/reports/restricted_datasets.html +64 -0
  85. seshat-26.7/src/seshat/web/resources/html_templates/admin/sparql.html +37 -0
  86. seshat-26.7/src/seshat/web/resources/html_templates/admin/users.html +72 -0
  87. seshat-26.7/src/seshat/web/resources/html_templates/author.html +116 -0
  88. seshat-26.7/src/seshat/web/resources/html_templates/badge.svg +46 -0
  89. seshat-26.7/src/seshat/web/resources/html_templates/categories.html +76 -0
  90. seshat-26.7/src/seshat/web/resources/html_templates/category.html +21 -0
  91. seshat-26.7/src/seshat/web/resources/html_templates/collection.html +26 -0
  92. seshat-26.7/src/seshat/web/resources/html_templates/colors.css +57 -0
  93. seshat-26.7/src/seshat/web/resources/html_templates/dataset.html +127 -0
  94. seshat-26.7/src/seshat/web/resources/html_templates/dataset_access_request.html +21 -0
  95. seshat-26.7/src/seshat/web/resources/html_templates/depositor/dashboard.html +116 -0
  96. seshat-26.7/src/seshat/web/resources/html_templates/depositor/edit-collection.html +230 -0
  97. seshat-26.7/src/seshat/web/resources/html_templates/depositor/edit-dataset.html +560 -0
  98. seshat-26.7/src/seshat/web/resources/html_templates/depositor/edit-session.html +81 -0
  99. seshat-26.7/src/seshat/web/resources/html_templates/depositor/language-selector.html +92 -0
  100. seshat-26.7/src/seshat/web/resources/html_templates/depositor/my-collections.html +89 -0
  101. seshat-26.7/src/seshat/web/resources/html_templates/depositor/my-data.html +113 -0
  102. seshat-26.7/src/seshat/web/resources/html_templates/depositor/new_private_link.html +52 -0
  103. seshat-26.7/src/seshat/web/resources/html_templates/depositor/private-links.html +48 -0
  104. seshat-26.7/src/seshat/web/resources/html_templates/depositor/profile.html +135 -0
  105. seshat-26.7/src/seshat/web/resources/html_templates/depositor/published-collection.html +15 -0
  106. seshat-26.7/src/seshat/web/resources/html_templates/depositor/submitted-for-review.html +15 -0
  107. seshat-26.7/src/seshat/web/resources/html_templates/email/2fa_token.html +8 -0
  108. seshat-26.7/src/seshat/web/resources/html_templates/email/2fa_token.txt +7 -0
  109. seshat-26.7/src/seshat/web/resources/html_templates/email/data_access_request.html +13 -0
  110. seshat-26.7/src/seshat/web/resources/html_templates/email/data_access_request.txt +14 -0
  111. seshat-26.7/src/seshat/web/resources/html_templates/email/dataset_approved.html +18 -0
  112. seshat-26.7/src/seshat/web/resources/html_templates/email/dataset_approved.txt +22 -0
  113. seshat-26.7/src/seshat/web/resources/html_templates/email/dataset_declined.html +8 -0
  114. seshat-26.7/src/seshat/web/resources/html_templates/email/dataset_declined.txt +8 -0
  115. seshat-26.7/src/seshat/web/resources/html_templates/email/dataset_submitted.html +8 -0
  116. seshat-26.7/src/seshat/web/resources/html_templates/email/dataset_submitted.txt +7 -0
  117. seshat-26.7/src/seshat/web/resources/html_templates/email/declined_dataset_notification.html +10 -0
  118. seshat-26.7/src/seshat/web/resources/html_templates/email/declined_dataset_notification.txt +6 -0
  119. seshat-26.7/src/seshat/web/resources/html_templates/email/feedback.html +10 -0
  120. seshat-26.7/src/seshat/web/resources/html_templates/email/feedback.txt +10 -0
  121. seshat-26.7/src/seshat/web/resources/html_templates/email/layout.html +12 -0
  122. seshat-26.7/src/seshat/web/resources/html_templates/email/published_dataset_notification.html +10 -0
  123. seshat-26.7/src/seshat/web/resources/html_templates/email/published_dataset_notification.txt +6 -0
  124. seshat-26.7/src/seshat/web/resources/html_templates/email/quota_approved.html +8 -0
  125. seshat-26.7/src/seshat/web/resources/html_templates/email/quota_approved.txt +9 -0
  126. seshat-26.7/src/seshat/web/resources/html_templates/email/quota_request.html +10 -0
  127. seshat-26.7/src/seshat/web/resources/html_templates/email/quota_request.txt +9 -0
  128. seshat-26.7/src/seshat/web/resources/html_templates/email/submitted_for_review_notification.html +8 -0
  129. seshat-26.7/src/seshat/web/resources/html_templates/email/submitted_for_review_notification.txt +10 -0
  130. seshat-26.7/src/seshat/web/resources/html_templates/feedback.html +53 -0
  131. seshat-26.7/src/seshat/web/resources/html_templates/git_instructions.html +7 -0
  132. seshat-26.7/src/seshat/web/resources/html_templates/institutions.html +58 -0
  133. seshat-26.7/src/seshat/web/resources/html_templates/jsonld.html +73 -0
  134. seshat-26.7/src/seshat/web/resources/html_templates/layout.html +123 -0
  135. seshat-26.7/src/seshat/web/resources/html_templates/loader.svg +51 -0
  136. seshat-26.7/src/seshat/web/resources/html_templates/maintenance.html +5 -0
  137. seshat-26.7/src/seshat/web/resources/html_templates/portal.html +62 -0
  138. seshat-26.7/src/seshat/web/resources/html_templates/private_link_is_expired.html +5 -0
  139. seshat-26.7/src/seshat/web/resources/html_templates/public_metadata.html +310 -0
  140. seshat-26.7/src/seshat/web/resources/html_templates/review/overview.html +102 -0
  141. seshat-26.7/src/seshat/web/resources/html_templates/review/published.html +14 -0
  142. seshat-26.7/src/seshat/web/resources/html_templates/search.html +322 -0
  143. seshat-26.7/src/seshat/web/resources/html_templates/sitemap_template.xml +11 -0
  144. seshat-26.7/src/seshat/web/resources/languages.json +91 -0
  145. seshat-26.7/src/seshat/web/resources/licenses.json +156 -0
  146. seshat-26.7/src/seshat/web/resources/metadata_templates/bibtex.bib +10 -0
  147. seshat-26.7/src/seshat/web/resources/metadata_templates/citation.cff +21 -0
  148. seshat-26.7/src/seshat/web/resources/metadata_templates/endnote.enw +18 -0
  149. seshat-26.7/src/seshat/web/resources/metadata_templates/refman.ris +19 -0
  150. seshat-26.7/src/seshat/web/resources/root_categories.json +296 -0
  151. seshat-26.7/src/seshat/web/resources/sparql_templates/account_by_email.sparql +35 -0
  152. seshat-26.7/src/seshat/web/resources/sparql_templates/account_by_session_token.sparql +44 -0
  153. seshat-26.7/src/seshat/web/resources/sparql_templates/account_categories.sparql +28 -0
  154. seshat-26.7/src/seshat/web/resources/sparql_templates/account_sessions.sparql +26 -0
  155. seshat-26.7/src/seshat/web/resources/sparql_templates/account_storage_used.sparql +23 -0
  156. seshat-26.7/src/seshat/web/resources/sparql_templates/account_uuid_by_orcid.sparql +14 -0
  157. seshat-26.7/src/seshat/web/resources/sparql_templates/accounts.sparql +67 -0
  158. seshat-26.7/src/seshat/web/resources/sparql_templates/append_to_list.sparql +19 -0
  159. seshat-26.7/src/seshat/web/resources/sparql_templates/associated_authors.sparql +16 -0
  160. seshat-26.7/src/seshat/web/resources/sparql_templates/author_profile.sparql +34 -0
  161. seshat-26.7/src/seshat/web/resources/sparql_templates/author_public_items.sparql +34 -0
  162. seshat-26.7/src/seshat/web/resources/sparql_templates/authors.sparql +84 -0
  163. seshat-26.7/src/seshat/web/resources/sparql_templates/categories.sparql +62 -0
  164. seshat-26.7/src/seshat/web/resources/sparql_templates/categories_tree.sparql +17 -0
  165. seshat-26.7/src/seshat/web/resources/sparql_templates/category_by_id.sparql +21 -0
  166. seshat-26.7/src/seshat/web/resources/sparql_templates/collaborators.sparql +75 -0
  167. seshat-26.7/src/seshat/web/resources/sparql_templates/collection_dataset_containers.sparql +8 -0
  168. seshat-26.7/src/seshat/web/resources/sparql_templates/collection_datasets.sparql +19 -0
  169. seshat-26.7/src/seshat/web/resources/sparql_templates/collection_datasets_count.sparql +11 -0
  170. seshat-26.7/src/seshat/web/resources/sparql_templates/collection_versions.sparql +20 -0
  171. seshat-26.7/src/seshat/web/resources/sparql_templates/collections.sparql +107 -0
  172. seshat-26.7/src/seshat/web/resources/sparql_templates/collections_by_account.sparql +18 -0
  173. seshat-26.7/src/seshat/web/resources/sparql_templates/collections_from_dataset.sparql +18 -0
  174. seshat-26.7/src/seshat/web/resources/sparql_templates/contact_info_from_container.sparql +14 -0
  175. seshat-26.7/src/seshat/web/resources/sparql_templates/container.sparql +28 -0
  176. seshat-26.7/src/seshat/web/resources/sparql_templates/container_items.sparql +58 -0
  177. seshat-26.7/src/seshat/web/resources/sparql_templates/container_uuid_by_id.sparql +13 -0
  178. seshat-26.7/src/seshat/web/resources/sparql_templates/custom_fields.sparql +33 -0
  179. seshat-26.7/src/seshat/web/resources/sparql_templates/dataset_files.sparql +90 -0
  180. seshat-26.7/src/seshat/web/resources/sparql_templates/dataset_is_under_review.sparql +11 -0
  181. seshat-26.7/src/seshat/web/resources/sparql_templates/dataset_statistics.sparql +26 -0
  182. seshat-26.7/src/seshat/web/resources/sparql_templates/dataset_statistics_timeline.sparql +21 -0
  183. seshat-26.7/src/seshat/web/resources/sparql_templates/dataset_storage_used.sparql +12 -0
  184. seshat-26.7/src/seshat/web/resources/sparql_templates/dataset_versions.sparql +23 -0
  185. seshat-26.7/src/seshat/web/resources/sparql_templates/datasets.sparql +238 -0
  186. seshat-26.7/src/seshat/web/resources/sparql_templates/decline_draft_dataset.sparql +28 -0
  187. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_account_groups_associations.sparql +15 -0
  188. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_account_property.sparql +15 -0
  189. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_associations.sparql +40 -0
  190. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_collaborator.sparql +29 -0
  191. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_collection_draft.sparql +29 -0
  192. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_dataset_draft.sparql +39 -0
  193. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_dataset_embargo.sparql +23 -0
  194. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_group_members.sparql +21 -0
  195. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_inactive_session_by_uuid.sparql +17 -0
  196. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_inferred_groups.sparql +21 -0
  197. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_item_from_list.sparql +30 -0
  198. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_items_all_from_list.sparql +24 -0
  199. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_private_links.sparql +25 -0
  200. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_session.sparql +17 -0
  201. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_session_by_uuid.sparql +18 -0
  202. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_sessions.sparql +14 -0
  203. seshat-26.7/src/seshat/web/resources/sparql_templates/delete_sessions_older_than.sparql +17 -0
  204. seshat-26.7/src/seshat/web/resources/sparql_templates/derived_from.sparql +10 -0
  205. seshat-26.7/src/seshat/web/resources/sparql_templates/explorer_properties.sparql +11 -0
  206. seshat-26.7/src/seshat/web/resources/sparql_templates/explorer_property_types.sparql +12 -0
  207. seshat-26.7/src/seshat/web/resources/sparql_templates/explorer_types.sparql +10 -0
  208. seshat-26.7/src/seshat/web/resources/sparql_templates/export_listable_type.sparql +22 -0
  209. seshat-26.7/src/seshat/web/resources/sparql_templates/export_root_type.sparql +19 -0
  210. seshat-26.7/src/seshat/web/resources/sparql_templates/funding.sparql +33 -0
  211. seshat-26.7/src/seshat/web/resources/sparql_templates/group.sparql +23 -0
  212. seshat-26.7/src/seshat/web/resources/sparql_templates/group_by_name.sparql +16 -0
  213. seshat-26.7/src/seshat/web/resources/sparql_templates/item_collaborative_permissions.sparql +40 -0
  214. seshat-26.7/src/seshat/web/resources/sparql_templates/latest_datasets_portal.sparql +17 -0
  215. seshat-26.7/src/seshat/web/resources/sparql_templates/licenses.sparql +16 -0
  216. seshat-26.7/src/seshat/web/resources/sparql_templates/members.sparql +32 -0
  217. seshat-26.7/src/seshat/web/resources/sparql_templates/missing_checksummed_files_for_container.sparql +16 -0
  218. seshat-26.7/src/seshat/web/resources/sparql_templates/missing_dois.sparql +16 -0
  219. seshat-26.7/src/seshat/web/resources/sparql_templates/prefixes.sparql +5 -0
  220. seshat-26.7/src/seshat/web/resources/sparql_templates/private_links.sparql +34 -0
  221. seshat-26.7/src/seshat/web/resources/sparql_templates/projects.sparql +28 -0
  222. seshat-26.7/src/seshat/web/resources/sparql_templates/publish_draft_collection.sparql +59 -0
  223. seshat-26.7/src/seshat/web/resources/sparql_templates/publish_draft_dataset.sparql +66 -0
  224. seshat-26.7/src/seshat/web/resources/sparql_templates/quota_requests.sparql +28 -0
  225. seshat-26.7/src/seshat/web/resources/sparql_templates/record_uri.sparql +10 -0
  226. seshat-26.7/src/seshat/web/resources/sparql_templates/references.sparql +43 -0
  227. seshat-26.7/src/seshat/web/resources/sparql_templates/reviews.sparql +78 -0
  228. seshat-26.7/src/seshat/web/resources/sparql_templates/root_categories.sparql +17 -0
  229. seshat-26.7/src/seshat/web/resources/sparql_templates/search_tags.sparql +14 -0
  230. seshat-26.7/src/seshat/web/resources/sparql_templates/statistics_authors.sparql +16 -0
  231. seshat-26.7/src/seshat/web/resources/sparql_templates/statistics_collections.sparql +13 -0
  232. seshat-26.7/src/seshat/web/resources/sparql_templates/statistics_datalink.sparql +13 -0
  233. seshat-26.7/src/seshat/web/resources/sparql_templates/statistics_datasets.sparql +13 -0
  234. seshat-26.7/src/seshat/web/resources/sparql_templates/statistics_files.sparql +32 -0
  235. seshat-26.7/src/seshat/web/resources/sparql_templates/subcategories_by_category.sparql +19 -0
  236. seshat-26.7/src/seshat/web/resources/sparql_templates/tags.sparql +47 -0
  237. seshat-26.7/src/seshat/web/resources/sparql_templates/transfer_account_resources.sparql +19 -0
  238. seshat-26.7/src/seshat/web/resources/sparql_templates/update_account.sparql +117 -0
  239. seshat-26.7/src/seshat/web/resources/sparql_templates/update_author.sparql +49 -0
  240. seshat-26.7/src/seshat/web/resources/sparql_templates/update_authors_order.sparql +34 -0
  241. seshat-26.7/src/seshat/web/resources/sparql_templates/update_collaborators.sparql +52 -0
  242. seshat-26.7/src/seshat/web/resources/sparql_templates/update_collection.sparql +110 -0
  243. seshat-26.7/src/seshat/web/resources/sparql_templates/update_dataset.sparql +229 -0
  244. seshat-26.7/src/seshat/web/resources/sparql_templates/update_dataset_thumb.sparql +36 -0
  245. seshat-26.7/src/seshat/web/resources/sparql_templates/update_doi_after_publishing.sparql +20 -0
  246. seshat-26.7/src/seshat/web/resources/sparql_templates/update_file.sparql +105 -0
  247. seshat-26.7/src/seshat/web/resources/sparql_templates/update_git_uuid.sparql +21 -0
  248. seshat-26.7/src/seshat/web/resources/sparql_templates/update_orcid_for_account.sparql +28 -0
  249. seshat-26.7/src/seshat/web/resources/sparql_templates/update_private_link.sparql +47 -0
  250. seshat-26.7/src/seshat/web/resources/sparql_templates/update_quota_request.sparql +46 -0
  251. seshat-26.7/src/seshat/web/resources/sparql_templates/update_review.sparql +36 -0
  252. seshat-26.7/src/seshat/web/resources/sparql_templates/update_seen_by_reviewer.sparql +20 -0
  253. seshat-26.7/src/seshat/web/resources/sparql_templates/update_session.sparql +35 -0
  254. seshat-26.7/src/seshat/web/resources/sparql_templates/update_view_and_download_counts.sparql +50 -0
  255. seshat-26.7/src/seshat/web/resources/static/css/ace.css +1 -0
  256. seshat-26.7/src/seshat/web/resources/static/css/dropzone.min.css +1 -0
  257. seshat-26.7/src/seshat/web/resources/static/css/form.css +191 -0
  258. seshat-26.7/src/seshat/web/resources/static/css/jquery.dataTables.min.css +1 -0
  259. seshat-26.7/src/seshat/web/resources/static/css/main.css +626 -0
  260. seshat-26.7/src/seshat/web/resources/static/css/pub.css +63 -0
  261. seshat-26.7/src/seshat/web/resources/static/css/quill.snow.css +10 -0
  262. seshat-26.7/src/seshat/web/resources/static/fonts/FiraCode-Regular.woff2 +0 -0
  263. seshat-26.7/src/seshat/web/resources/static/fonts/SourceSansPro-Bold.ttf +0 -0
  264. seshat-26.7/src/seshat/web/resources/static/fonts/SourceSansPro-Italic.ttf +0 -0
  265. seshat-26.7/src/seshat/web/resources/static/fonts/SourceSansPro-Regular.ttf +0 -0
  266. seshat-26.7/src/seshat/web/resources/static/fonts/fa-brands-400.eot +0 -0
  267. seshat-26.7/src/seshat/web/resources/static/fonts/fa-brands-400.ttf +0 -0
  268. seshat-26.7/src/seshat/web/resources/static/fonts/fa-brands-400.woff +0 -0
  269. seshat-26.7/src/seshat/web/resources/static/fonts/fa-brands-400.woff2 +0 -0
  270. seshat-26.7/src/seshat/web/resources/static/fonts/fa-solid-900.eot +0 -0
  271. seshat-26.7/src/seshat/web/resources/static/fonts/fa-solid-900.ttf +0 -0
  272. seshat-26.7/src/seshat/web/resources/static/fonts/fa-solid-900.woff +0 -0
  273. seshat-26.7/src/seshat/web/resources/static/fonts/fa-solid-900.woff2 +0 -0
  274. seshat-26.7/src/seshat/web/resources/static/images/codeworks-badge.svg +2 -0
  275. seshat-26.7/src/seshat/web/resources/static/images/collection-thumb.svg +33 -0
  276. seshat-26.7/src/seshat/web/resources/static/images/dataset-thumb.svg +86 -0
  277. seshat-26.7/src/seshat/web/resources/static/images/datatables/sort_asc.png +0 -0
  278. seshat-26.7/src/seshat/web/resources/static/images/datatables/sort_asc_disabled.png +0 -0
  279. seshat-26.7/src/seshat/web/resources/static/images/datatables/sort_both.png +0 -0
  280. seshat-26.7/src/seshat/web/resources/static/images/datatables/sort_desc.png +0 -0
  281. seshat-26.7/src/seshat/web/resources/static/images/datatables/sort_desc_disabled.png +0 -0
  282. seshat-26.7/src/seshat/web/resources/static/images/ext-link.png +0 -0
  283. seshat-26.7/src/seshat/web/resources/static/images/handle-logo.png +0 -0
  284. seshat-26.7/src/seshat/web/resources/static/images/logo.png +0 -0
  285. seshat-26.7/src/seshat/web/resources/static/images/logo.svg +2 -0
  286. seshat-26.7/src/seshat/web/resources/static/images/orcid.svg +17 -0
  287. seshat-26.7/src/seshat/web/resources/static/js/ace/ace.js +17 -0
  288. seshat-26.7/src/seshat/web/resources/static/js/ace/ext-language_tools.js +8 -0
  289. seshat-26.7/src/seshat/web/resources/static/js/ace/ext-searchbox.js +8 -0
  290. seshat-26.7/src/seshat/web/resources/static/js/ace/mode-sparql.js +8 -0
  291. seshat-26.7/src/seshat/web/resources/static/js/ace/theme-crimson_editor.js +8 -0
  292. seshat-26.7/src/seshat/web/resources/static/js/admin-dashboard.js +40 -0
  293. seshat-26.7/src/seshat/web/resources/static/js/d3.v7.min.js +2 -0
  294. seshat-26.7/src/seshat/web/resources/static/js/depositor-dashboard.js +61 -0
  295. seshat-26.7/src/seshat/web/resources/static/js/dropzone.min.js +1 -0
  296. seshat-26.7/src/seshat/web/resources/static/js/edit-collection.js +640 -0
  297. seshat-26.7/src/seshat/web/resources/static/js/edit-dataset.js +1673 -0
  298. seshat-26.7/src/seshat/web/resources/static/js/edit-profile.js +100 -0
  299. seshat-26.7/src/seshat/web/resources/static/js/exploratory.js +185 -0
  300. seshat-26.7/src/seshat/web/resources/static/js/jquery-3.6.0.min.js +2 -0
  301. seshat-26.7/src/seshat/web/resources/static/js/jquery.dataTables.min.js +187 -0
  302. seshat-26.7/src/seshat/web/resources/static/js/landing_page.js +133 -0
  303. seshat-26.7/src/seshat/web/resources/static/js/my-data.js +27 -0
  304. seshat-26.7/src/seshat/web/resources/static/js/query-editor.js +98 -0
  305. seshat-26.7/src/seshat/web/resources/static/js/quill.min.js +3 -0
  306. seshat-26.7/src/seshat/web/resources/static/js/ranking.js +84 -0
  307. seshat-26.7/src/seshat/web/resources/static/js/review-overview.js +211 -0
  308. seshat-26.7/src/seshat/web/resources/static/js/search.js +924 -0
  309. seshat-26.7/src/seshat/web/resources/static/js/utils.js +568 -0
  310. seshat-26.7/src/seshat/web/s3.py +151 -0
  311. seshat-26.7/src/seshat/web/ui.py +1436 -0
  312. seshat-26.7/src/seshat/web/validator.py +525 -0
  313. seshat-26.7/src/seshat/web/wsgi.py +10267 -0
  314. seshat-26.7/src/seshat/web/xml_formatter.py +360 -0
  315. seshat-26.7/src/seshat/web/zipfly.py +184 -0
  316. seshat-26.7/src/seshat.egg-info/PKG-INFO +185 -0
  317. seshat-26.7/src/seshat.egg-info/SOURCES.txt +325 -0
  318. seshat-26.7/src/seshat.egg-info/dependency_links.txt +1 -0
  319. seshat-26.7/src/seshat.egg-info/entry_points.txt +2 -0
  320. seshat-26.7/src/seshat.egg-info/requires.txt +7 -0
  321. seshat-26.7/src/seshat.egg-info/top_level.txt +1 -0
  322. seshat-26.7/tests/admin_panel.py +146 -0
  323. seshat-26.7/tests/create_article.py +236 -0
  324. seshat-26.7/tests/create_collection.py +68 -0
  325. seshat-26.7/tests/depositor_panel.py +81 -0
  326. seshat-26.7/tests/ui_pages.py +119 -0
  327. 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/>.
@@ -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
@@ -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