invenio-app-rdm 13.0.0b4.dev0__py2.py3-none-any.whl → 13.0.0b4.dev1__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.
- invenio_app_rdm/__init__.py +1 -1
- invenio_app_rdm/communities_ui/views/communities.py +7 -2
- invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js +17 -0
- {invenio_app_rdm-13.0.0b4.dev0.dist-info → invenio_app_rdm-13.0.0b4.dev1.dist-info}/METADATA +6 -1
- {invenio_app_rdm-13.0.0b4.dev0.dist-info → invenio_app_rdm-13.0.0b4.dev1.dist-info}/RECORD +9 -9
- {invenio_app_rdm-13.0.0b4.dev0.dist-info → invenio_app_rdm-13.0.0b4.dev1.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-13.0.0b4.dev0.dist-info → invenio_app_rdm-13.0.0b4.dev1.dist-info}/entry_points.txt +0 -0
- {invenio_app_rdm-13.0.0b4.dev0.dist-info → invenio_app_rdm-13.0.0b4.dev1.dist-info}/licenses/LICENSE +0 -0
- {invenio_app_rdm-13.0.0b4.dev0.dist-info → invenio_app_rdm-13.0.0b4.dev1.dist-info}/top_level.txt +0 -0
invenio_app_rdm/__init__.py
CHANGED
|
@@ -22,11 +22,11 @@ from invenio_communities.views.communities import (
|
|
|
22
22
|
render_community_theme_template,
|
|
23
23
|
)
|
|
24
24
|
from invenio_communities.views.decorators import pass_community
|
|
25
|
+
from invenio_i18n import get_locale
|
|
25
26
|
from invenio_pages.proxies import current_pages_service
|
|
26
27
|
from invenio_pages.records.errors import PageNotFoundError
|
|
27
28
|
from invenio_rdm_records.proxies import (
|
|
28
29
|
current_community_records_service,
|
|
29
|
-
current_rdm_records,
|
|
30
30
|
)
|
|
31
31
|
from invenio_rdm_records.resources.serializers import UIJSONSerializer
|
|
32
32
|
from invenio_records_resources.services.errors import PermissionDeniedError
|
|
@@ -149,7 +149,12 @@ def community_static_page(pid_value, community, community_ui, **kwargs):
|
|
|
149
149
|
raise PermissionDeniedError()
|
|
150
150
|
|
|
151
151
|
try:
|
|
152
|
-
|
|
152
|
+
lang = get_locale()
|
|
153
|
+
page = current_pages_service.read_by_url(
|
|
154
|
+
g.identity,
|
|
155
|
+
request.path,
|
|
156
|
+
lang=lang.language,
|
|
157
|
+
).to_dict()
|
|
153
158
|
|
|
154
159
|
except PageNotFoundError:
|
|
155
160
|
abort(404)
|
|
@@ -377,6 +377,23 @@ export class RDMDepositForm extends Component {
|
|
|
377
377
|
/>
|
|
378
378
|
</AccordionField>
|
|
379
379
|
</Overridable>
|
|
380
|
+
<Overridable
|
|
381
|
+
id="InvenioAppRdm.Deposit.BasicInformation.after.container"
|
|
382
|
+
record={record}
|
|
383
|
+
files={files}
|
|
384
|
+
permissions={permissions}
|
|
385
|
+
preselectedCommunity={preselectedCommunity}
|
|
386
|
+
filesLocked={filesLocked}
|
|
387
|
+
recordRestrictionGracePeriod={recordRestrictionGracePeriod}
|
|
388
|
+
allowRecordRestriction={allowRecordRestriction}
|
|
389
|
+
groupsEnabled={groupsEnabled}
|
|
390
|
+
allowEmptyFiles={allowEmptyFiles}
|
|
391
|
+
customFieldsUI={customFieldsUI}
|
|
392
|
+
config={this.config}
|
|
393
|
+
vocabularies={this.vocabularies}
|
|
394
|
+
noFiles={this.noFiles}
|
|
395
|
+
hideCommunitySelection={this.hide_community_selection}
|
|
396
|
+
/>
|
|
380
397
|
<Overridable
|
|
381
398
|
id="InvenioAppRdm.Deposit.AccordionFieldRecommendedInformation.container"
|
|
382
399
|
vocabularies={this.vocabularies}
|
{invenio_app_rdm-13.0.0b4.dev0.dist-info → invenio_app_rdm-13.0.0b4.dev1.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: invenio-app-rdm
|
|
3
|
-
Version: 13.0.0b4.
|
|
3
|
+
Version: 13.0.0b4.dev1
|
|
4
4
|
Summary: Invenio Research Data Management.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-app-rdm
|
|
6
6
|
Author: CERN
|
|
@@ -102,6 +102,11 @@ Changes
|
|
|
102
102
|
=======
|
|
103
103
|
|
|
104
104
|
|
|
105
|
+
Version v13.0.0b4.dev1 (released 2025-06-10)
|
|
106
|
+
|
|
107
|
+
- communities-ui: pass locale language when rendering static pages
|
|
108
|
+
- deposit UI: add overridable hook for a separate section
|
|
109
|
+
|
|
105
110
|
Version v13.0.0b4.dev0 (released 2025-06-04)
|
|
106
111
|
|
|
107
112
|
- setup: bump major dependencies
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
invenio_app_rdm/__init__.py,sha256=
|
|
1
|
+
invenio_app_rdm/__init__.py,sha256=sgLziErWD_z_aw_zSC2m39VbqMzTHwa8TZzobs_tHt8,704
|
|
2
2
|
invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
|
|
3
3
|
invenio_app_rdm/config.py,sha256=F9VyDXDkiSXYtFkixtFUTw4x4AKaYs26HBSuJpJGDdU,51375
|
|
4
4
|
invenio_app_rdm/ext.py,sha256=PkZhATGJDgYqBJQh41NdvBZWR83mgI3Eej6rj10UVJE,5278
|
|
@@ -32,7 +32,7 @@ invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/collect
|
|
|
32
32
|
invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/details/browse/index.html,sha256=3cp9pSf1ItKA-PHm2hnmc_x7pIryTFxpxk_yfrgFz3o,2125
|
|
33
33
|
invenio_app_rdm/communities_ui/templates/semantic-ui/invenio_communities/records/index.html,sha256=5Ub4uyVsjjTHzbhNe8Y-AAZG5oI28wZs2jQXvSPofXw,700
|
|
34
34
|
invenio_app_rdm/communities_ui/views/__init__.py,sha256=HsbOWjDobxXGx6WFlTn45JYr0V9yqjCpDXOR_i2wmtw,401
|
|
35
|
-
invenio_app_rdm/communities_ui/views/communities.py,sha256=
|
|
35
|
+
invenio_app_rdm/communities_ui/views/communities.py,sha256=e-mZh9ipKruDGxcA5JcdcmcKDx0_3nxZsPbKBLhlZdM,6831
|
|
36
36
|
invenio_app_rdm/communities_ui/views/ui.py,sha256=YZ9yiZazEutwkpR4xEolLe6mUtiTJrxVdCOtQGAILOw,3007
|
|
37
37
|
invenio_app_rdm/fixtures/__init__.py,sha256=XwWy4U66FkpWOEBFfn5EnXfuTKlXnh3HWZNBMDX4Rgk,1512
|
|
38
38
|
invenio_app_rdm/fixtures/oai_sets.py,sha256=ZoS94FNkIsdEJWHihZRYvFAstp3GBrZ0viDml9mQXOI,621
|
|
@@ -170,7 +170,7 @@ invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/CopyButto
|
|
|
170
170
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayPartOfCommunities.js,sha256=bSmhuwSWk4CW80mqa4ZZbjfa-_NsiJ1IxQ9veDy6sAM,2751
|
|
171
171
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/DisplayVerifiedCommunity.js,sha256=m3rT8jJ3440ZX22zZog8bHatWltYXwvmw_tu6tJUM9k,1506
|
|
172
172
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/components/RecordsResultsListItem.js,sha256=RTSQBlGQY7ww7fVGHDvDfWQNyJ07mnEoyboTGIcCgD4,6694
|
|
173
|
-
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js,sha256=
|
|
173
|
+
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/RDMDepositForm.js,sha256=iWwWa_MGr1tSiqslfrvWTPZs1A7HTM4Xa55ahUnIFfw,33135
|
|
174
174
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/ShareDraftButton.js,sha256=ICMV4Ixe-nTe6q7COZ0oyAQf2nVp2cez_-iUZobwUD0,1998
|
|
175
175
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/config.js,sha256=rd2wqiwmYOkh4kWe8AiGWJar2kA8R8TkGMnX5XZvihs,1473
|
|
176
176
|
invenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/deposit/index.js,sha256=gA0BaUFpaJr9nkmHSWoxuwKDfSD3JUTPcadj2TKHN24,1587
|
|
@@ -479,7 +479,7 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
|
|
|
479
479
|
invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
|
|
480
480
|
invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
|
|
481
481
|
invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
|
|
482
|
-
invenio_app_rdm-13.0.0b4.
|
|
482
|
+
invenio_app_rdm-13.0.0b4.dev1.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
|
|
483
483
|
tests/__init__.py,sha256=yKVf0yYRuxmXvyAtLjmfpHGVCsEkZOhs_FojAAM_w-8,244
|
|
484
484
|
tests/conftest.py,sha256=kxOf2CiULBuE9m-ncNv4AtofUVx7iSnvVljlsdI_iCE,11507
|
|
485
485
|
tests/test_tasks.py,sha256=YAf2mryFK6Vfzk2053XLBA2e92vbNCTWqJ6ThWhGOuQ,6645
|
|
@@ -514,8 +514,8 @@ tests/ui/test_robotstxt.py,sha256=Gn0bVPJTDRQH6DO5GGZyD6iMel1UxWRHP5MnGQZ0j18,11
|
|
|
514
514
|
tests/ui/test_signposting_ui.py,sha256=KCSjQlMD2VKlwQCyZYDwYjtVNL35x3u-ZC4ceD5y21w,3847
|
|
515
515
|
tests/ui/test_sitemaps.py,sha256=hPeGbo9v5Q55swr-ZyudAVYm7aJ6lCKV51Vtupk450Q,3180
|
|
516
516
|
tests/ui/test_stats_ui.py,sha256=LHa_0hjvpYvliSk_jknWy-90CO82jVElUfK5Ua_ZmfA,3554
|
|
517
|
-
invenio_app_rdm-13.0.0b4.
|
|
518
|
-
invenio_app_rdm-13.0.0b4.
|
|
519
|
-
invenio_app_rdm-13.0.0b4.
|
|
520
|
-
invenio_app_rdm-13.0.0b4.
|
|
521
|
-
invenio_app_rdm-13.0.0b4.
|
|
517
|
+
invenio_app_rdm-13.0.0b4.dev1.dist-info/METADATA,sha256=XFMg0GPf-CtMXUGBwx3uFicc8ZNpQguoDlKZPwJolqM,14989
|
|
518
|
+
invenio_app_rdm-13.0.0b4.dev1.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
519
|
+
invenio_app_rdm-13.0.0b4.dev1.dist-info/entry_points.txt,sha256=rfzEeOEdtGy99NlpWzeW-32CoO5XrEpBvlZwLD2Th88,2158
|
|
520
|
+
invenio_app_rdm-13.0.0b4.dev1.dist-info/top_level.txt,sha256=NqTqrntInEAci7EXcNBvouXFMqwyjVQhEI0b7izYRBY,22
|
|
521
|
+
invenio_app_rdm-13.0.0b4.dev1.dist-info/RECORD,,
|
|
File without changes
|
{invenio_app_rdm-13.0.0b4.dev0.dist-info → invenio_app_rdm-13.0.0b4.dev1.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{invenio_app_rdm-13.0.0b4.dev0.dist-info → invenio_app_rdm-13.0.0b4.dev1.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{invenio_app_rdm-13.0.0b4.dev0.dist-info → invenio_app_rdm-13.0.0b4.dev1.dist-info}/top_level.txt
RENAMED
|
File without changes
|