invenio-app-rdm 13.0.0b3.dev9__py2.py3-none-any.whl → 13.0.0b3.dev11__py2.py3-none-any.whl

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.
@@ -17,6 +17,6 @@
17
17
  #
18
18
  # See PEP 0440 for details - https://www.python.org/dev/peps/pep-0440
19
19
 
20
- __version__ = "13.0.0b3.dev9"
20
+ __version__ = "13.0.0b3.dev11"
21
21
 
22
22
  __all__ = ("__version__",)
@@ -53,7 +53,10 @@ class StaticPages(FixtureMixin):
53
53
  data = {
54
54
  "url": url,
55
55
  "title": entry.get("title", ""),
56
- "content": self.page_data(entry["template"]),
56
+ # content is optional as it can be added later from the administration panel
57
+ "content": (
58
+ self.page_data(entry["template"]) if entry.get("template") else ""
59
+ ),
57
60
  "description": entry.get("description", ""),
58
61
  "template_name": current_app.config["PAGES_DEFAULT_TEMPLATE"],
59
62
  }
@@ -6,7 +6,7 @@
6
6
  import { i18next } from "@translations/invenio_app_rdm/i18next";
7
7
 
8
8
  const depositFormSectionsConfig = {
9
- "files-section": ["files.enabled"],
9
+ "files-section": ["files.enabled", "files.entries"],
10
10
  "basic-information-section": [
11
11
  "pids.doi",
12
12
  "metadata.resource_type",
@@ -36,6 +36,10 @@ export class RecordCitationField extends Component {
36
36
  this.cancellableFetchCitation?.cancel();
37
37
  }
38
38
 
39
+ async componentDidUpdate() {
40
+ await window.MathJax?.typesetPromise();
41
+ }
42
+
39
43
  placeholderLoader = () => {
40
44
  return (
41
45
  <Placeholder>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: invenio-app-rdm
3
- Version: 13.0.0b3.dev9
3
+ Version: 13.0.0b3.dev11
4
4
  Summary: Invenio Research Data Management.
5
5
  Home-page: https://github.com/inveniosoftware/invenio-app-rdm
6
6
  Author: CERN
@@ -98,6 +98,15 @@ https://inveniordm.docs.cern.ch
98
98
  Changes
99
99
  =======
100
100
 
101
+ Version v13.0.0b3.dev11 (released 2025-05-16)
102
+
103
+ - deposit-ui: add "files.entries" to files section
104
+
105
+ Version v13.0.0b3.dev10 (released 2025-05-16)
106
+
107
+ - fixtures: make content template optional
108
+ - MathJax: add typesetting to the citations box
109
+
101
110
  Version v13.0.0b3.dev9 (released 2025-05-15)
102
111
 
103
112
  - recordManagment: pass permissiosn down to overridable
@@ -1,4 +1,4 @@
1
- invenio_app_rdm/__init__.py,sha256=tXfOHd4X0YNApbkMV1rp2t8nEd6YOFvaNONw_1akTPk,699
1
+ invenio_app_rdm/__init__.py,sha256=iGRsoNKAd2s9vWybO9ezKuJekUmJkqMQEKC5qwE04RY,700
2
2
  invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
3
3
  invenio_app_rdm/config.py,sha256=Sv6Q8VEP-KYNuvC6kASLOYC-gYRByYN-hwPmbCxQWKc,50624
4
4
  invenio_app_rdm/ext.py,sha256=PkZhATGJDgYqBJQh41NdvBZWR83mgI3Eej6rj10UVJE,5278
@@ -35,7 +35,7 @@ invenio_app_rdm/communities_ui/views/communities.py,sha256=t7qDZ8CiEwT9lB9B9_nS7
35
35
  invenio_app_rdm/communities_ui/views/ui.py,sha256=CiwVuk6dqx4sJaT-3nwpo9y-XNLUnO589x9Ln4hXoV8,3009
36
36
  invenio_app_rdm/fixtures/__init__.py,sha256=XwWy4U66FkpWOEBFfn5EnXfuTKlXnh3HWZNBMDX4Rgk,1512
37
37
  invenio_app_rdm/fixtures/oai_sets.py,sha256=ZoS94FNkIsdEJWHihZRYvFAstp3GBrZ0viDml9mQXOI,621
38
- invenio_app_rdm/fixtures/pages.py,sha256=R2DaRV__iXQ8Zh-fGcs9g16rUKEDp0xV47iZUfoLIx0,1887
38
+ invenio_app_rdm/fixtures/pages.py,sha256=v1ipq8ues_m3y3Y5pSfcIeKNPI5bhwAbUZcpbE_z_ZA,2053
39
39
  invenio_app_rdm/fixtures/data/oai_sets.yaml,sha256=NlkL0Y4AH_HxmO0mfwzOlF7ZYAT0D7EV6aOs-_OLl7Q,256
40
40
  invenio_app_rdm/fixtures/data/pages.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
41
  invenio_app_rdm/fixtures/pages/.gitkeep,sha256=1HVs32jZTGcMkk-dV9RHGPZm5FdydwFIZDW1epflLF8,68
@@ -168,7 +168,7 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayVe
168
168
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordsResultsListItem.js,sha256=RTSQBlGQY7ww7fVGHDvDfWQNyJ07mnEoyboTGIcCgD4,6694
169
169
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js,sha256=92Mg5PAjOHZ8pMNHJjyqdHMXLXuaAF6FT12UTJzy9XQ,32295
170
170
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/ShareDraftButton.js,sha256=ICMV4Ixe-nTe6q7COZ0oyAQf2nVp2cez_-iUZobwUD0,1998
171
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/config.js,sha256=a9Im0S72ne6LGDzM8C-pP9fIhcMihIbOJ5Ez5SwSn9A,1456
171
+ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/config.js,sha256=rd2wqiwmYOkh4kWe8AiGWJar2kA8R8TkGMnX5XZvihs,1473
172
172
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js,sha256=gA0BaUFpaJr9nkmHSWoxuwKDfSD3JUTPcadj2TKHN24,1587
173
173
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/RecordsList.js,sha256=PkLpiCl7sNSlQoCo7xxZ_H6QvWqK_TydoseIiKvtuMw,4176
174
174
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/frontpage/index.js,sha256=X0tsSvLwGPzSFQEf4J1zPZbFRCiYeJq5CnEXr_J5LsU,900
@@ -178,7 +178,7 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/Communi
178
178
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/EditButton.js,sha256=WJ5lNpbPcd_Kymn_TYklSTfkCJRPhpFeT6cWcR48mSQ,1452
179
179
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ExportDropdown.js,sha256=wAu7H-CaC8ue_BuYzdf7l6oboArRVoz4lLzR6GDIzlE,1775
180
180
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/ManageButton.js,sha256=79DO4JKJDU0AI1uaLzE2AAQRxTPx2rFKNj-CJ_UKP54,2934
181
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js,sha256=ELqXIMG-IPyTMpu25WzHZR2-anroGhFwkoaWyCl6eHM,4620
181
+ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCitationField.js,sha256=9bfvaNvr55jJ55kyv0vsNSliHAlNuw7lqwxpJM4gYQA,4700
182
182
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordCommunitiesList.js,sha256=wORVCOjlyX2mIsDU9J0MwWFE4Zw9CCL5inWpV7m8lsM,4004
183
183
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordManagement.js,sha256=p49VyNWrYQw88xOxLdemHpBu0ty_4kVG_Bf69EZcl14,3875
184
184
  invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/landing_page/RecordVersionsList.js,sha256=vECGyt1XnoYRXNU7qGk9GMyZWATIXEFH2xV6ibeRcSc,7071
@@ -475,7 +475,7 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
475
475
  invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
476
476
  invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
477
477
  invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
478
- invenio_app_rdm-13.0.0b3.dev9.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
478
+ invenio_app_rdm-13.0.0b3.dev11.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
479
479
  tests/__init__.py,sha256=yKVf0yYRuxmXvyAtLjmfpHGVCsEkZOhs_FojAAM_w-8,244
480
480
  tests/conftest.py,sha256=FQ_aSBxGo0gNfV64RJ117GcmgjVbZKwpxF9_3VNdNJY,7931
481
481
  tests/test_tasks.py,sha256=YAf2mryFK6Vfzk2053XLBA2e92vbNCTWqJ6ThWhGOuQ,6645
@@ -509,8 +509,8 @@ tests/ui/test_filters.py,sha256=Q90wsJffjMVir7wNX8taGf2KZleLtPbXZXHLTkBpzLA,284
509
509
  tests/ui/test_signposting_ui.py,sha256=KCSjQlMD2VKlwQCyZYDwYjtVNL35x3u-ZC4ceD5y21w,3847
510
510
  tests/ui/test_static.py,sha256=vO3OQAOhrQESJifnQfM1pw7JYz3J874O8BAb7Cc_PPA,868
511
511
  tests/ui/test_stats_ui.py,sha256=LHa_0hjvpYvliSk_jknWy-90CO82jVElUfK5Ua_ZmfA,3554
512
- invenio_app_rdm-13.0.0b3.dev9.dist-info/METADATA,sha256=mo7i7BGcqcrhugO6pGRt04IEHCxlgChso5YUVXQFM08,13424
513
- invenio_app_rdm-13.0.0b3.dev9.dist-info/WHEEL,sha256=_z0Kb-VmhLeNt2nZ-PsoQBjD25rP0tBwgAyRYD7oTKI,109
514
- invenio_app_rdm-13.0.0b3.dev9.dist-info/entry_points.txt,sha256=rfzEeOEdtGy99NlpWzeW-32CoO5XrEpBvlZwLD2Th88,2158
515
- invenio_app_rdm-13.0.0b3.dev9.dist-info/top_level.txt,sha256=NqTqrntInEAci7EXcNBvouXFMqwyjVQhEI0b7izYRBY,22
516
- invenio_app_rdm-13.0.0b3.dev9.dist-info/RECORD,,
512
+ invenio_app_rdm-13.0.0b3.dev11.dist-info/METADATA,sha256=O-i4yC_PRv4EJKOdpAELpHCGRznFdvaSBtlMYbn86oQ,13663
513
+ invenio_app_rdm-13.0.0b3.dev11.dist-info/WHEEL,sha256=_z0Kb-VmhLeNt2nZ-PsoQBjD25rP0tBwgAyRYD7oTKI,109
514
+ invenio_app_rdm-13.0.0b3.dev11.dist-info/entry_points.txt,sha256=rfzEeOEdtGy99NlpWzeW-32CoO5XrEpBvlZwLD2Th88,2158
515
+ invenio_app_rdm-13.0.0b3.dev11.dist-info/top_level.txt,sha256=NqTqrntInEAci7EXcNBvouXFMqwyjVQhEI0b7izYRBY,22
516
+ invenio_app_rdm-13.0.0b3.dev11.dist-info/RECORD,,