Yura Bondarenko
030b1c33db
94207: Extract RP entries into a separate component
2022-09-02 13:49:32 +02:00
Yura Bondarenko
47b9b09139
94207: Fix ResourcePolicyService.updateTarget
...
Follow "await invalidation" pattern ~ DataService.deleteByHref
2022-09-02 13:49:32 +02:00
Yura Bondarenko
a8cf6df03f
Merge branch 'w2p-93889_Invalidate-EPerson-when-their-group-change' into w2p-94207_Fix-resource-policy-cache-issues
2022-09-02 11:36:49 +02:00
Yura Bondarenko
77eb6c1807
Remove unused imports
2022-09-02 10:11:05 +02:00
Nikunj Sharma
38c1214117
Merge remote-tracking branch 'origin/main' into CST-6110
2022-09-02 13:17:59 +05:30
Tim Donohue
342a712513
Merge pull request #1790 from arvoConsultores/main
...
Spanish translation updated
2022-09-01 13:47:35 -05:00
Art Lowel
95e8346228
Merge remote-tracking branch 'atmire-github/w2p-93219_Consolidate-all-initialization-in-a-single-Service_PR' into w2p-93889_Invalidate-EPerson-when-their-group-change
2022-09-01 15:03:21 +02:00
Kristof De Langhe
ac8688ea79
94072: test cases
2022-09-01 12:02:20 +02:00
Tim Donohue
eee0d72345
Merge pull request #1786 from hardyoyo/enable-responsive-font-sizes
...
Enable responsive font sizes
2022-08-31 16:34:54 -05:00
Kristof De Langhe
18c208f6a4
94072: Group page list issue fixes
2022-08-31 18:02:36 +02:00
gaurav
0840bfd8ce
bug resolve
2022-08-31 17:20:17 +05:30
gaurav
bcc71ce2e1
Trailing spaces remove
2022-08-31 12:44:47 +05:30
gaurav
01daf93d01
Displaying Recent Submissions on the homepage
2022-08-31 11:14:43 +05:30
corrad82
310237d30f
[CST-6035] updated test description and used example.com domain in test urls
2022-08-30 12:00:27 +02:00
corrad82
e9894c91aa
Merge remote-tracking branch 'origin/main' into CST-6035_external-provider-query-error
2022-08-30 11:41:04 +02:00
Nikunj Sharma
c4a163e169
Merge remote-tracking branch 'origin/main' into CST-6153
2022-08-30 14:15:55 +05:30
Tim Donohue
b891ae0237
End-of-line normalization for some files
2022-08-26 11:36:51 -05:00
Tim Donohue
795870d712
Update gitattributes to force LF line endings for code
2022-08-26 11:35:44 -05:00
Art Lowel
154d66f1e8
remove unused imports
2022-08-26 11:25:07 +02:00
Yura Bondarenko
ed9570e7cc
Merge remote-tracking branch 'origin/main' into w2p-92900_Admin_options_dont_appear_after_Shibboleth_authentication_PR
2022-08-25 18:32:59 +02:00
Yura Bondarenko
f154318855
Merge remote-tracking branch 'atmire/w2p-93219_Consolidate-all-initialization-in-a-single-Service_PR' into w2p-92900_Admin_options_dont_appear_after_Shibboleth_authentication_PR
2022-08-25 18:32:47 +02:00
Tim Donohue
c1f6993144
Merge pull request #1777 from atmire/w2p-93665_fix-pagintion-in-metadata-browse-links
...
Fix pagination in metadata browse links
2022-08-25 11:22:04 -05:00
Yura Bondarenko
c5d3776df7
93492: Fix SSR dodging pinned admin sidebar
...
On the server, @slideSidebarPadding always resolved to 'expanded' because slideSidebarOver did not emit true
This resulted in the SSR HTML leaving space for the expanded sidebar.
Also got rid of the sliding animation as it would always play, even when replacing SSR HTML where the sidebar was already visible.
2022-08-25 18:05:13 +02:00
lotte
317c615b30
Fixed lgtm issue
2022-08-25 17:12:57 +02:00
Yana De Pauw
72852dd031
Fix test
2022-08-25 17:05:34 +02:00
Yura Bondarenko
ee26084d6a
Fix unused imports
2022-08-25 15:53:13 +02:00
Yura Bondarenko
a77b1da804
92900: Patch start:dev CLI arguments through to ng serve
2022-08-25 15:44:27 +02:00
Yana De Pauw
d5605e43d4
Merge remote-tracking branch 'upstream/main' into w2p-93914_delete-process
2022-08-25 15:34:00 +02:00
Yana De Pauw
ca341e53b4
Close modal on process delete success
2022-08-25 15:33:23 +02:00
Yura Bondarenko
db169251df
92900: Update docs & specs for AuthRequestService
2022-08-25 14:03:59 +02:00
Yura Bondarenko
e464c0f8c7
92900: Move duplicate code to new InitService method
2022-08-25 14:03:58 +02:00
Sergio Fernández Celorio
528c4c31ea
Spanish translation updated
2022-08-25 11:41:24 +00:00
Yura Bondarenko
fbaab69121
93803: Ensure data services are called *DataService
2022-08-25 10:28:45 +02:00
Yura Bondarenko
05b131edb9
93803: Rename findAllByHref to findListByHref
...
To avoid confusion with FindAllData:
- findAll is a "feature" to retrieve all resources from the endpoint itself ~ a plain GET
- findAllByHref is retrieves lists of resources in general
2022-08-25 10:28:45 +02:00
Yura Bondarenko
ad316f7316
93803: Resolve circular dependency
...
src/app/core/cache/builders/build-decorators.ts > src/app/core/data/base/hal-data-service.interface.ts > src/app/core/data/paginated-list.model.ts
2022-08-25 10:28:44 +02:00
Yura Bondarenko
a76555c518
93803: Stricter typing for dataService decorator & LinkService
...
The initial idea was to type dataService decorator strictly to BaseDataService.
However, HrefOnlyDataService should not expose methods other than findByHref & findAllByHref, but must still work with LinkService.
To address this we introduce HALDataService: an interface with the minimal requirements for a data service to work with HAL links
- dataService decorator can only decorate a class that implements HALDataService
- services retrieved from DATA_SERVICE_FACTORY should therefore work in LinkService
2022-08-24 19:03:19 +02:00
Yura Bondarenko
cd4ed018dd
93803: Remove legacy DataService class
2022-08-24 19:03:19 +02:00
Yura Bondarenko
42a2c3c7e2
93803: Refactor existing data services
2022-08-24 19:03:19 +02:00
Yura Bondarenko
8f4b3b58fb
93803: Make data services composable
...
Data services should extend BaseDataService (or IdentifiableDataService) for low-level functionality and optionally wrap "data service feature" classes for
- create
- findAll
- patch / update
- put
- delete
2022-08-24 19:03:18 +02:00
Tim Donohue
9a5a7c1306
Merge pull request #1788 from tdonohue/enable_swedish
...
Enable Swedish language
2022-08-24 11:37:48 -05:00
Tim Donohue
cb4620e536
Enable Swedish language
2022-08-24 10:42:37 -05:00
Urban Andersson
bd4190d4fc
Swedish language file for DSpace 7 ( #1673 )
...
* Added Swedish language file
* Small fix
* Added translations
* Added translations
* More translations
* Translations
* Translations
* Translations
* Translations
* Translations
* Translations
* More Swedish translations
* Corrections to Swedish translations
* Corrections to Swedish translations
* Minor language fixes
* Minor changes to Swedish translation
* Restored tr.json5
2022-08-24 10:39:06 -05:00
Tim Donohue
282d0a770d
Merge pull request #1768 from atmire/w2p-93882_Moved-3rd-party-css-imports-to-seperate-file
...
Moved 3rd party css imports to separate file
2022-08-24 10:21:03 -05:00
Hardy Pottinger
50828e9c06
Enable responsive font sizes
...
- adds enable-responsive-font-sizes toggle to the main bootstrap
variables scss file
- [docs available](https://getbootstrap.com/docs/4.4/content/typography/#responsive-font-sizes )
2022-08-23 15:17:40 -05:00
Art Lowel
4b20b0cb81
force initservices to wait until authentication is no longer blocking
2022-08-23 17:50:46 +02:00
Sufiyan Shaikh
cacce82b0a
[CST-6565] check fixed
2022-08-22 17:03:55 +05:30
Sufiyan Shaikh
53dcd48e98
[CST-6565] path and check fixes
2022-08-22 15:28:55 +05:30
Mark H. Wood
b2feadc290
Satisfy lint.
2022-08-19 16:47:10 -04:00
Mark H. Wood
5ed369d097
Make create, edit community/collection/item dialogs theme-able.
2022-08-19 16:23:20 -04:00
Tim Donohue
ca4f2cc5c0
Merge pull request #1756 from atmire/Admin-export-all-fields
...
Add admin option to export all fields in the metadata export
2022-08-19 13:10:48 -05:00