-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchanges_from_8.0.txt
executable file
·4923 lines (4923 loc) · 360 KB
/
changes_from_8.0.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.codecov.yml
.dockerignore
.editorconfig
.eslintrc.json
.gitattributes
.gitignore
.vscode/launch.json
.vscode/settings.json
CONTRIBUTING.md
Dockerfile
Dockerfile.dist
LICENSE
LICENSES_THIRD_PARTY
NOTICE
README.md
SECURITY.md
angular.json
angular.json.bak
config/.gitignore
config/config.dev.yml
config/config.example.yml
config/config.prod.yml
config/config.yml
config/dspace.cfg
config/dspace.cfg.linked
config/local.cfg
config/local.cfg.linked
cypress.config.ts
cypress/.gitignore
cypress/e2e/admin-add-new-modals.cy.ts
cypress/e2e/admin-curation-tasks.cy.ts
cypress/e2e/admin-edit-modals.cy.ts
cypress/e2e/admin-export-modals.cy.ts
cypress/e2e/admin-notifications-publication-claim-page.cy.ts
cypress/e2e/admin-search-page.cy.ts
cypress/e2e/admin-sidebar.cy.ts
cypress/e2e/admin-workflow-page.cy.ts
cypress/e2e/batch-import-page.cy.ts
cypress/e2e/bitstreams-format.cy.ts
cypress/e2e/breadcrumbs.cy.ts
cypress/e2e/browse-by-author.cy.ts
cypress/e2e/browse-by-dateissued.cy.ts
cypress/e2e/browse-by-subject.cy.ts
cypress/e2e/browse-by-title.cy.ts
cypress/e2e/bulk-access.cy.ts
cypress/e2e/collection-create.cy.ts
cypress/e2e/collection-edit.cy.ts
cypress/e2e/collection-page.cy.ts
cypress/e2e/collection-statistics.cy.ts
cypress/e2e/community-create.cy.ts
cypress/e2e/community-edit.cy.ts
cypress/e2e/community-list.cy.ts
cypress/e2e/community-page.cy.ts
cypress/e2e/community-statistics.cy.ts
cypress/e2e/create-eperson.cy.ts
cypress/e2e/create-group.cy.ts
cypress/e2e/edit-eperson.cy.ts
cypress/e2e/edit-group.cy.ts
cypress/e2e/end-user-agreement.cy.ts
cypress/e2e/epeople-registry.cy.ts
cypress/e2e/feedback.cy.ts
cypress/e2e/footer.cy.ts
cypress/e2e/groups-registry.cy.ts
cypress/e2e/header.cy.ts
cypress/e2e/health-page.cy.ts
cypress/e2e/homepage-statistics.cy.ts
cypress/e2e/homepage.cy.ts
cypress/e2e/item-edit.cy.ts
cypress/e2e/item-page.cy.ts
cypress/e2e/item-statistics.cy.ts
cypress/e2e/item-template.cy.ts
cypress/e2e/login-modal.cy.ts
cypress/e2e/metadata-import-page.cy.ts
cypress/e2e/metadata-registry.cy.ts
cypress/e2e/metadata-schema.cy.ts
cypress/e2e/my-dspace.cy.ts
cypress/e2e/new-process.cy.ts
cypress/e2e/pagenotfound.cy.ts
cypress/e2e/privacy.cy.ts
cypress/e2e/processes-overview.cy.ts
cypress/e2e/profile-page.cy.ts
cypress/e2e/quality-assurance-source-page.cy.ts
cypress/e2e/search-navbar.cy.ts
cypress/e2e/search-page.cy.ts
cypress/e2e/submission.cy.ts
cypress/e2e/system-wide-alert.cy.ts
cypress/fixtures/example.json
cypress/plugins/index.ts
cypress/support/commands.ts
cypress/support/e2e.ts
cypress/support/utils.ts
cypress/tsconfig.json
docker/README.md
docker/cli.assetstore.yml
docker/cli.ingest.yml
docker/cli.yml
docker/db.entities.yml
docker/docker-compose-ci.yml
docker/docker-compose-dist.yml
docker/docker-compose-rest.yml
docker/docker-compose.yml
docker/dspace-ui.json
docs/Configuration.md
docs/lint/html/index.md
docs/lint/html/rules/no-disabled-attribute-on-button.md
docs/lint/html/rules/themed-component-usages.md
docs/lint/ts/index.md
docs/lint/ts/rules/themed-component-classes.md
docs/lint/ts/rules/themed-component-selectors.md
docs/lint/ts/rules/themed-component-usages.md
images/logo.png
images/screenshot.png
karma.conf.js
lint/.gitignore
lint/README.md
lint/dist/src/rules/html/package.json
lint/dist/src/rules/ts/package.json
lint/generate-docs.ts
lint/jasmine.json
lint/src/rules/html/index.ts
lint/src/rules/html/no-disabled-attribute-on-button.ts
lint/src/rules/html/themed-component-usages.ts
lint/src/rules/ts/index.ts
lint/src/rules/ts/themed-component-classes.ts
lint/src/rules/ts/themed-component-selectors.ts
lint/src/rules/ts/themed-component-usages.ts
lint/src/util/angular.ts
lint/src/util/fix.ts
lint/src/util/misc.ts
lint/src/util/structure.ts
lint/src/util/templates/index.ejs
lint/src/util/templates/rule.ejs
lint/src/util/theme-support.ts
lint/src/util/typescript.ts
lint/test/fixture/README.md
lint/test/fixture/index.ts
lint/test/fixture/src/app/test/test-routing.module.ts
lint/test/fixture/src/app/test/test-themeable.component.ts
lint/test/fixture/src/app/test/test.component.cy.ts
lint/test/fixture/src/app/test/test.component.spec.ts
lint/test/fixture/src/app/test/test.component.ts
lint/test/fixture/src/app/test/test.module.ts
lint/test/fixture/src/app/test/themed-test-themeable.component.ts
lint/test/fixture/src/test.ts
lint/test/fixture/src/themes/test/app/test/other-themeable.component.ts
lint/test/fixture/src/themes/test/app/test/test-themeable.component.ts
lint/test/fixture/src/themes/test/test.module.ts
lint/test/fixture/tsconfig.json
lint/test/helpers.js
lint/test/rules.spec.ts
lint/test/structure.spec.ts
lint/test/testing.ts
lint/test/theme-support.spec.ts
lint/tsconfig.json
nodemon.json
package.json
postcss.config.js
scripts/base-href.ts
scripts/env-to-yaml.ts
scripts/merge-i18n-files.ts
scripts/serve.ts
scripts/sync-i18n-files.ts
scripts/test-rest.ts
server.ts
src/app/access-control/access-control-routes.ts
src/app/access-control/access-control-routing-paths.ts
src/app/access-control/access-control-routing.module.ts
src/app/access-control/access-control.module.ts
src/app/access-control/bulk-access/browse/bulk-access-browse.component.html
src/app/access-control/bulk-access/browse/bulk-access-browse.component.scss
src/app/access-control/bulk-access/browse/bulk-access-browse.component.spec.ts
src/app/access-control/bulk-access/browse/bulk-access-browse.component.ts
src/app/access-control/bulk-access/bulk-access.component.html
src/app/access-control/bulk-access/bulk-access.component.scss
src/app/access-control/bulk-access/bulk-access.component.spec.ts
src/app/access-control/bulk-access/bulk-access.component.ts
src/app/access-control/bulk-access/settings/bulk-access-settings.component.html
src/app/access-control/bulk-access/settings/bulk-access-settings.component.scss
src/app/access-control/bulk-access/settings/bulk-access-settings.component.spec.ts
src/app/access-control/bulk-access/settings/bulk-access-settings.component.ts
src/app/access-control/epeople-registry/epeople-registry.actions.ts
src/app/access-control/epeople-registry/epeople-registry.component.html
src/app/access-control/epeople-registry/epeople-registry.component.spec.ts
src/app/access-control/epeople-registry/epeople-registry.component.ts
src/app/access-control/epeople-registry/epeople-registry.reducers.spec.ts
src/app/access-control/epeople-registry/epeople-registry.reducers.ts
src/app/access-control/epeople-registry/eperson-form/eperson-form.component.html
src/app/access-control/epeople-registry/eperson-form/eperson-form.component.spec.ts
src/app/access-control/epeople-registry/eperson-form/eperson-form.component.ts
src/app/access-control/epeople-registry/eperson-form/validators/email-taken.validator.ts
src/app/access-control/epeople-registry/eperson-resolver.service.ts
src/app/access-control/group-registry/group-form/group-form.component.html
src/app/access-control/group-registry/group-form/group-form.component.spec.ts
src/app/access-control/group-registry/group-form/group-form.component.ts
src/app/access-control/group-registry/group-form/members-list/members-list.component.html
src/app/access-control/group-registry/group-form/members-list/members-list.component.spec.ts
src/app/access-control/group-registry/group-form/members-list/members-list.component.ts
src/app/access-control/group-registry/group-form/subgroup-list/subgroups-list.component.html
src/app/access-control/group-registry/group-form/subgroup-list/subgroups-list.component.spec.ts
src/app/access-control/group-registry/group-form/subgroup-list/subgroups-list.component.ts
src/app/access-control/group-registry/group-form/validators/group-exists.validator.ts
src/app/access-control/group-registry/group-page.guard.spec.ts
src/app/access-control/group-registry/group-page.guard.ts
src/app/access-control/group-registry/group-registry.actions.ts
src/app/access-control/group-registry/group-registry.reducers.spec.ts
src/app/access-control/group-registry/group-registry.reducers.ts
src/app/access-control/group-registry/groups-registry.component.html
src/app/access-control/group-registry/groups-registry.component.spec.ts
src/app/access-control/group-registry/groups-registry.component.ts
src/app/admin/admin-curation-tasks/admin-curation-tasks.component.html
src/app/admin/admin-curation-tasks/admin-curation-tasks.component.spec.ts
src/app/admin/admin-curation-tasks/admin-curation-tasks.component.ts
src/app/admin/admin-import-batch-page/batch-import-page.component.html
src/app/admin/admin-import-batch-page/batch-import-page.component.spec.ts
src/app/admin/admin-import-batch-page/batch-import-page.component.ts
src/app/admin/admin-import-metadata-page/metadata-import-page.component.html
src/app/admin/admin-import-metadata-page/metadata-import-page.component.spec.ts
src/app/admin/admin-import-metadata-page/metadata-import-page.component.ts
src/app/admin/admin-import-metadata-page/themed-metadata-import-page.component.ts
src/app/admin/admin-ldn-services/admin-ldn-services-routes.ts
src/app/admin/admin-ldn-services/ldn-service-form/ldn-service-form.component.html
src/app/admin/admin-ldn-services/ldn-service-form/ldn-service-form.component.scss
src/app/admin/admin-ldn-services/ldn-service-form/ldn-service-form.component.spec.ts
src/app/admin/admin-ldn-services/ldn-service-form/ldn-service-form.component.ts
src/app/admin/admin-ldn-services/ldn-service-serviceMock/ldnServicesRD$-mock.ts
src/app/admin/admin-ldn-services/ldn-services-data/ldn-itemfilter-data.service.spec.ts
src/app/admin/admin-ldn-services/ldn-services-data/ldn-itemfilters-data.service.ts
src/app/admin/admin-ldn-services/ldn-services-data/ldn-services-data.service.spec.ts
src/app/admin/admin-ldn-services/ldn-services-data/ldn-services-data.service.ts
src/app/admin/admin-ldn-services/ldn-services-directory/ldn-services-directory.component.html
src/app/admin/admin-ldn-services/ldn-services-directory/ldn-services-directory.component.scss
src/app/admin/admin-ldn-services/ldn-services-directory/ldn-services-directory.component.spec.ts
src/app/admin/admin-ldn-services/ldn-services-directory/ldn-services-directory.component.ts
src/app/admin/admin-ldn-services/ldn-services-model/ldn-service-itemfilters.ts
src/app/admin/admin-ldn-services/ldn-services-model/ldn-service-patterns.model.ts
src/app/admin/admin-ldn-services/ldn-services-model/ldn-service-status.model.ts
src/app/admin/admin-ldn-services/ldn-services-model/ldn-service.constrain.model.ts
src/app/admin/admin-ldn-services/ldn-services-model/ldn-service.resource-type.ts
src/app/admin/admin-ldn-services/ldn-services-model/ldn-services.model.ts
src/app/admin/admin-ldn-services/ldn-services-model/service-constrain-type.model.ts
src/app/admin/admin-ldn-services/ldn-services-patterns/ldn-service-coar-patterns.ts
src/app/admin/admin-notifications/admin-notifications-publication-claim-page/admin-notifications-publication-claim-page-resolver.service.ts
src/app/admin/admin-notifications/admin-notifications-publication-claim-page/admin-notifications-publication-claim-page.component.html
src/app/admin/admin-notifications/admin-notifications-publication-claim-page/admin-notifications-publication-claim-page.component.scss
src/app/admin/admin-notifications/admin-notifications-publication-claim-page/admin-notifications-publication-claim-page.component.spec.ts
src/app/admin/admin-notifications/admin-notifications-publication-claim-page/admin-notifications-publication-claim-page.component.ts
src/app/admin/admin-notifications/admin-notifications-routes.ts
src/app/admin/admin-notifications/admin-notifications-routing-paths.ts
src/app/admin/admin-notify-dashboard/admin-notify-dashboard-routes.ts
src/app/admin/admin-notify-dashboard/admin-notify-dashboard.component.html
src/app/admin/admin-notify-dashboard/admin-notify-dashboard.component.spec.ts
src/app/admin/admin-notify-dashboard/admin-notify-dashboard.component.ts
src/app/admin/admin-notify-dashboard/admin-notify-detail-modal/admin-notify-detail-modal.component.html
src/app/admin/admin-notify-dashboard/admin-notify-detail-modal/admin-notify-detail-modal.component.spec.ts
src/app/admin/admin-notify-dashboard/admin-notify-detail-modal/admin-notify-detail-modal.component.ts
src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-incoming/admin-notify-incoming.component.html
src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-incoming/admin-notify-incoming.component.spec.ts
src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-incoming/admin-notify-incoming.component.ts
src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-logs-result/admin-notify-logs-result.component.html
src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-logs-result/admin-notify-logs-result.component.spec.ts
src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-logs-result/admin-notify-logs-result.component.ts
src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-outgoing/admin-notify-outgoing.component.html
src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-outgoing/admin-notify-outgoing.component.spec.ts
src/app/admin/admin-notify-dashboard/admin-notify-logs/admin-notify-outgoing/admin-notify-outgoing.component.ts
src/app/admin/admin-notify-dashboard/admin-notify-metrics/admin-notify-metrics.component.html
src/app/admin/admin-notify-dashboard/admin-notify-metrics/admin-notify-metrics.component.spec.ts
src/app/admin/admin-notify-dashboard/admin-notify-metrics/admin-notify-metrics.component.ts
src/app/admin/admin-notify-dashboard/admin-notify-metrics/admin-notify-metrics.model.ts
src/app/admin/admin-notify-dashboard/admin-notify-search-result/admin-notify-search-result.component.html
src/app/admin/admin-notify-dashboard/admin-notify-search-result/admin-notify-search-result.component.spec.ts
src/app/admin/admin-notify-dashboard/admin-notify-search-result/admin-notify-search-result.component.ts
src/app/admin/admin-notify-dashboard/models/admin-notify-message-search-result.model.ts
src/app/admin/admin-notify-dashboard/models/admin-notify-message.model.ts
src/app/admin/admin-notify-dashboard/models/admin-notify-message.resource-type.ts
src/app/admin/admin-notify-dashboard/services/admin-notify-messages.service.spec.ts
src/app/admin/admin-notify-dashboard/services/admin-notify-messages.service.ts
src/app/admin/admin-registries/admin-registries-routes.ts
src/app/admin/admin-registries/admin-registries-routing-paths.ts
src/app/admin/admin-registries/admin-registries-routing.module.ts
src/app/admin/admin-registries/admin-registries.module.ts
src/app/admin/admin-registries/bitstream-formats/add-bitstream-format/add-bitstream-format.component.html
src/app/admin/admin-registries/bitstream-formats/add-bitstream-format/add-bitstream-format.component.spec.ts
src/app/admin/admin-registries/bitstream-formats/add-bitstream-format/add-bitstream-format.component.ts
src/app/admin/admin-registries/bitstream-formats/bitstream-format.actions.ts
src/app/admin/admin-registries/bitstream-formats/bitstream-format.reducers.spec.ts
src/app/admin/admin-registries/bitstream-formats/bitstream-format.reducers.ts
src/app/admin/admin-registries/bitstream-formats/bitstream-formats-routes.ts
src/app/admin/admin-registries/bitstream-formats/bitstream-formats-routing.module.ts
src/app/admin/admin-registries/bitstream-formats/bitstream-formats.component.html
src/app/admin/admin-registries/bitstream-formats/bitstream-formats.component.spec.ts
src/app/admin/admin-registries/bitstream-formats/bitstream-formats.component.ts
src/app/admin/admin-registries/bitstream-formats/bitstream-formats.module.ts
src/app/admin/admin-registries/bitstream-formats/bitstream-formats.resolver.ts
src/app/admin/admin-registries/bitstream-formats/edit-bitstream-format/edit-bitstream-format.component.html
src/app/admin/admin-registries/bitstream-formats/edit-bitstream-format/edit-bitstream-format.component.spec.ts
src/app/admin/admin-registries/bitstream-formats/edit-bitstream-format/edit-bitstream-format.component.ts
src/app/admin/admin-registries/bitstream-formats/format-form/format-form.component.html
src/app/admin/admin-registries/bitstream-formats/format-form/format-form.component.spec.ts
src/app/admin/admin-registries/bitstream-formats/format-form/format-form.component.ts
src/app/admin/admin-registries/metadata-registry/metadata-registry.actions.ts
src/app/admin/admin-registries/metadata-registry/metadata-registry.component.html
src/app/admin/admin-registries/metadata-registry/metadata-registry.component.scss
src/app/admin/admin-registries/metadata-registry/metadata-registry.component.spec.ts
src/app/admin/admin-registries/metadata-registry/metadata-registry.component.ts
src/app/admin/admin-registries/metadata-registry/metadata-registry.reducers.spec.ts
src/app/admin/admin-registries/metadata-registry/metadata-registry.reducers.ts
src/app/admin/admin-registries/metadata-registry/metadata-schema-form/metadata-schema-form.component.html
src/app/admin/admin-registries/metadata-registry/metadata-schema-form/metadata-schema-form.component.spec.ts
src/app/admin/admin-registries/metadata-registry/metadata-schema-form/metadata-schema-form.component.ts
src/app/admin/admin-registries/metadata-schema/metadata-field-form/metadata-field-form.component.html
src/app/admin/admin-registries/metadata-schema/metadata-field-form/metadata-field-form.component.spec.ts
src/app/admin/admin-registries/metadata-schema/metadata-field-form/metadata-field-form.component.ts
src/app/admin/admin-registries/metadata-schema/metadata-schema.component.html
src/app/admin/admin-registries/metadata-schema/metadata-schema.component.scss
src/app/admin/admin-registries/metadata-schema/metadata-schema.component.spec.ts
src/app/admin/admin-registries/metadata-schema/metadata-schema.component.ts
src/app/admin/admin-reports/admin-reports-routes.ts
src/app/admin/admin-reports/filtered-collections/filtered-collection.model.ts
src/app/admin/admin-reports/filtered-collections/filtered-collections.component.html
src/app/admin/admin-reports/filtered-collections/filtered-collections.component.scss
src/app/admin/admin-reports/filtered-collections/filtered-collections.component.spec.ts
src/app/admin/admin-reports/filtered-collections/filtered-collections.component.ts
src/app/admin/admin-reports/filtered-collections/filtered-collections.model.ts
src/app/admin/admin-reports/filtered-items/filtered-items-model.ts
src/app/admin/admin-reports/filtered-items/filtered-items.component.html
src/app/admin/admin-reports/filtered-items/filtered-items.component.scss
src/app/admin/admin-reports/filtered-items/filtered-items.component.spec.ts
src/app/admin/admin-reports/filtered-items/filtered-items.component.ts
src/app/admin/admin-reports/filtered-items/option-vo.model.ts
src/app/admin/admin-reports/filtered-items/preset-query.model.ts
src/app/admin/admin-reports/filtered-items/query-predicate.model.ts
src/app/admin/admin-reports/filters-section/filter-group.model.ts
src/app/admin/admin-reports/filters-section/filter.model.ts
src/app/admin/admin-reports/filters-section/filters-section.component.html
src/app/admin/admin-reports/filters-section/filters-section.component.scss
src/app/admin/admin-reports/filters-section/filters-section.component.spec.ts
src/app/admin/admin-reports/filters-section/filters-section.component.ts
src/app/admin/admin-routes.ts
src/app/admin/admin-routing-paths.ts
src/app/admin/admin-routing.module.ts
src/app/admin/admin-search-page/admin-search-page.component.html
src/app/admin/admin-search-page/admin-search-page.component.scss
src/app/admin/admin-search-page/admin-search-page.component.spec.ts
src/app/admin/admin-search-page/admin-search-page.component.ts
src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/collection-search-result/collection-admin-search-result-grid-element.component.html
src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/collection-search-result/collection-admin-search-result-grid-element.component.scss
src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/collection-search-result/collection-admin-search-result-grid-element.component.spec.ts
src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/collection-search-result/collection-admin-search-result-grid-element.component.ts
src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/community-search-result/community-admin-search-result-grid-element.component.html
src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/community-search-result/community-admin-search-result-grid-element.component.scss
src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/community-search-result/community-admin-search-result-grid-element.component.spec.ts
src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/community-search-result/community-admin-search-result-grid-element.component.ts
src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/item-search-result/item-admin-search-result-grid-element.component.html
src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/item-search-result/item-admin-search-result-grid-element.component.scss
src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/item-search-result/item-admin-search-result-grid-element.component.spec.ts
src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/item-search-result/item-admin-search-result-grid-element.component.ts
src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/collection-search-result/collection-admin-search-result-list-element.component.html
src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/collection-search-result/collection-admin-search-result-list-element.component.scss
src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/collection-search-result/collection-admin-search-result-list-element.component.spec.ts
src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/collection-search-result/collection-admin-search-result-list-element.component.ts
src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/community-search-result/community-admin-search-result-list-element.component.html
src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/community-search-result/community-admin-search-result-list-element.component.scss
src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/community-search-result/community-admin-search-result-list-element.component.spec.ts
src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/community-search-result/community-admin-search-result-list-element.component.ts
src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/item-search-result/item-admin-search-result-list-element.component.html
src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/item-search-result/item-admin-search-result-list-element.component.scss
src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/item-search-result/item-admin-search-result-list-element.component.spec.ts
src/app/admin/admin-search-page/admin-search-results/admin-search-result-list-element/item-search-result/item-admin-search-result-list-element.component.ts
src/app/admin/admin-search-page/admin-search-results/item-admin-search-result-actions.component.html
src/app/admin/admin-search-page/admin-search-results/item-admin-search-result-actions.component.scss
src/app/admin/admin-search-page/admin-search-results/item-admin-search-result-actions.component.spec.ts
src/app/admin/admin-search-page/admin-search-results/item-admin-search-result-actions.component.ts
src/app/admin/admin-search-page/admin-search.module.ts
src/app/admin/admin-sidebar/admin-sidebar-section/admin-sidebar-section.component.html
src/app/admin/admin-sidebar/admin-sidebar-section/admin-sidebar-section.component.scss
src/app/admin/admin-sidebar/admin-sidebar-section/admin-sidebar-section.component.spec.ts
src/app/admin/admin-sidebar/admin-sidebar-section/admin-sidebar-section.component.ts
src/app/admin/admin-sidebar/admin-sidebar.component.html
src/app/admin/admin-sidebar/admin-sidebar.component.scss
src/app/admin/admin-sidebar/admin-sidebar.component.spec.ts
src/app/admin/admin-sidebar/admin-sidebar.component.ts
src/app/admin/admin-sidebar/expandable-admin-sidebar-section/expandable-admin-sidebar-section.component.html
src/app/admin/admin-sidebar/expandable-admin-sidebar-section/expandable-admin-sidebar-section.component.scss
src/app/admin/admin-sidebar/expandable-admin-sidebar-section/expandable-admin-sidebar-section.component.spec.ts
src/app/admin/admin-sidebar/expandable-admin-sidebar-section/expandable-admin-sidebar-section.component.ts
src/app/admin/admin-sidebar/themed-admin-sidebar.component.ts
src/app/admin/admin-workflow-page/admin-workflow-page.component.html
src/app/admin/admin-workflow-page/admin-workflow-page.component.scss
src/app/admin/admin-workflow-page/admin-workflow-page.component.spec.ts
src/app/admin/admin-workflow-page/admin-workflow-page.component.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workflow-item/workflow-item-admin-workflow-actions.component.html
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workflow-item/workflow-item-admin-workflow-actions.component.scss
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workflow-item/workflow-item-admin-workflow-actions.component.spec.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workflow-item/workflow-item-admin-workflow-actions.component.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/supervision-order-group-selector/supervision-order-group-selector.component.html
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/supervision-order-group-selector/supervision-order-group-selector.component.scss
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/supervision-order-group-selector/supervision-order-group-selector.component.spec.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/supervision-order-group-selector/supervision-order-group-selector.component.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/supervision-order-status/supervision-order-status.component.html
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/supervision-order-status/supervision-order-status.component.scss
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/supervision-order-status/supervision-order-status.component.spec.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/supervision-order-status/supervision-order-status.component.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/workspace-item-admin-workflow-actions.component.html
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/workspace-item-admin-workflow-actions.component.scss
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/workspace-item-admin-workflow-actions.component.spec.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/actions/workspace-item/workspace-item-admin-workflow-actions.component.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workflow-item/workflow-item-search-result-admin-workflow-grid-element.component.html
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workflow-item/workflow-item-search-result-admin-workflow-grid-element.component.scss
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workflow-item/workflow-item-search-result-admin-workflow-grid-element.component.spec.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workflow-item/workflow-item-search-result-admin-workflow-grid-element.component.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workspace-item/workspace-item-search-result-admin-workflow-grid-element.component.html
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workspace-item/workspace-item-search-result-admin-workflow-grid-element.component.scss
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workspace-item/workspace-item-search-result-admin-workflow-grid-element.component.spec.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workspace-item/workspace-item-search-result-admin-workflow-grid-element.component.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-list-element/workflow-item/workflow-item-search-result-admin-workflow-list-element.component.html
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-list-element/workflow-item/workflow-item-search-result-admin-workflow-list-element.component.scss
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-list-element/workflow-item/workflow-item-search-result-admin-workflow-list-element.component.spec.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-list-element/workflow-item/workflow-item-search-result-admin-workflow-list-element.component.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-list-element/workspace-item/workspace-item-search-result-admin-workflow-list-element.component.html
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-list-element/workspace-item/workspace-item-search-result-admin-workflow-list-element.component.scss
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-list-element/workspace-item/workspace-item-search-result-admin-workflow-list-element.component.spec.ts
src/app/admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-list-element/workspace-item/workspace-item-search-result-admin-workflow-list-element.component.ts
src/app/admin/admin-workflow-page/admin-workflow.module.ts
src/app/admin/admin.module.ts
src/app/app-routes.ts
src/app/app-routing-paths.ts
src/app/app-routing.module.ts
src/app/app.component.html
src/app/app.component.scss
src/app/app.component.spec.ts
src/app/app.component.ts
src/app/app.config.ts
src/app/app.effects.ts
src/app/app.metareducers.ts
src/app/app.module.ts
src/app/app.reducer.ts
src/app/bitstream-page/bitstream-authorizations/bitstream-authorizations.component.html
src/app/bitstream-page/bitstream-authorizations/bitstream-authorizations.component.spec.ts
src/app/bitstream-page/bitstream-authorizations/bitstream-authorizations.component.ts
src/app/bitstream-page/bitstream-download-page/bitstream-download-page.component.html
src/app/bitstream-page/bitstream-download-page/bitstream-download-page.component.spec.ts
src/app/bitstream-page/bitstream-download-page/bitstream-download-page.component.ts
src/app/bitstream-page/bitstream-page-authorizations.guard.spec.ts
src/app/bitstream-page/bitstream-page-authorizations.guard.ts
src/app/bitstream-page/bitstream-page-routes.ts
src/app/bitstream-page/bitstream-page-routing.module.ts
src/app/bitstream-page/bitstream-page.module.ts
src/app/bitstream-page/bitstream-page.resolver.ts
src/app/bitstream-page/edit-bitstream-page/edit-bitstream-page.component.html
src/app/bitstream-page/edit-bitstream-page/edit-bitstream-page.component.scss
src/app/bitstream-page/edit-bitstream-page/edit-bitstream-page.component.spec.ts
src/app/bitstream-page/edit-bitstream-page/edit-bitstream-page.component.ts
src/app/bitstream-page/edit-bitstream-page/themed-edit-bitstream-page.component.ts
src/app/bitstream-page/legacy-bitstream-url-redirect.guard.spec.ts
src/app/bitstream-page/legacy-bitstream-url-redirect.guard.ts
src/app/bitstream-page/legacy-bitstream-url.resolver.spec.ts
src/app/bitstream-page/legacy-bitstream-url.resolver.ts
src/app/breadcrumbs/breadcrumb/breadcrumb-config.model.ts
src/app/breadcrumbs/breadcrumb/breadcrumb.model.ts
src/app/breadcrumbs/breadcrumbs.component.html
src/app/breadcrumbs/breadcrumbs.component.scss
src/app/breadcrumbs/breadcrumbs.component.spec.ts
src/app/breadcrumbs/breadcrumbs.component.ts
src/app/breadcrumbs/breadcrumbs.service.spec.ts
src/app/breadcrumbs/breadcrumbs.service.ts
src/app/breadcrumbs/themed-breadcrumbs.component.ts
src/app/browse-by/browse-by-date-page/browse-by-date-page.component.spec.ts
src/app/browse-by/browse-by-date-page/browse-by-date-page.component.ts
src/app/browse-by/browse-by-date-page/themed-browse-by-date-page.component.ts
src/app/browse-by/browse-by-date/browse-by-date.component.spec.ts
src/app/browse-by/browse-by-date/browse-by-date.component.ts
src/app/browse-by/browse-by-dso-breadcrumb.resolver.ts
src/app/browse-by/browse-by-guard.spec.ts
src/app/browse-by/browse-by-guard.ts
src/app/browse-by/browse-by-i18n-breadcrumb.resolver.ts
src/app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.html
src/app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.scss
src/app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.spec.ts
src/app/browse-by/browse-by-metadata-page/browse-by-metadata-page.component.ts
src/app/browse-by/browse-by-metadata-page/themed-browse-by-metadata-page.component.ts
src/app/browse-by/browse-by-metadata/browse-by-metadata.component.html
src/app/browse-by/browse-by-metadata/browse-by-metadata.component.scss
src/app/browse-by/browse-by-metadata/browse-by-metadata.component.spec.ts
src/app/browse-by/browse-by-metadata/browse-by-metadata.component.ts
src/app/browse-by/browse-by-page-routes.ts
src/app/browse-by/browse-by-page.module.ts
src/app/browse-by/browse-by-page/browse-by-page.component.html
src/app/browse-by/browse-by-page/browse-by-page.component.scss
src/app/browse-by/browse-by-page/browse-by-page.component.spec.ts
src/app/browse-by/browse-by-page/browse-by-page.component.ts
src/app/browse-by/browse-by-routing.module.ts
src/app/browse-by/browse-by-switcher/browse-by-data-type.ts
src/app/browse-by/browse-by-switcher/browse-by-decorator.spec.ts
src/app/browse-by/browse-by-switcher/browse-by-decorator.ts
src/app/browse-by/browse-by-switcher/browse-by-switcher.component.html
src/app/browse-by/browse-by-switcher/browse-by-switcher.component.spec.ts
src/app/browse-by/browse-by-switcher/browse-by-switcher.component.ts
src/app/browse-by/browse-by-switcher/themed-browse-by-switcher.component.ts
src/app/browse-by/browse-by-taxonomy-page/browse-by-taxonomy-page.component.html
src/app/browse-by/browse-by-taxonomy-page/browse-by-taxonomy-page.component.scss
src/app/browse-by/browse-by-taxonomy-page/browse-by-taxonomy-page.component.spec.ts
src/app/browse-by/browse-by-taxonomy-page/browse-by-taxonomy-page.component.ts
src/app/browse-by/browse-by-taxonomy-page/themed-browse-by-taxonomy-page.component.ts
src/app/browse-by/browse-by-taxonomy/browse-by-taxonomy.component.html
src/app/browse-by/browse-by-taxonomy/browse-by-taxonomy.component.scss
src/app/browse-by/browse-by-taxonomy/browse-by-taxonomy.component.spec.ts
src/app/browse-by/browse-by-taxonomy/browse-by-taxonomy.component.ts
src/app/browse-by/browse-by-title-page/browse-by-title-page.component.spec.ts
src/app/browse-by/browse-by-title-page/browse-by-title-page.component.ts
src/app/browse-by/browse-by-title-page/themed-browse-by-title-page.component.ts
src/app/browse-by/browse-by-title/browse-by-title.component.spec.ts
src/app/browse-by/browse-by-title/browse-by-title.component.ts
src/app/browse-by/browse-by.module.ts
src/app/collection-page/collection-form/collection-form.component.ts
src/app/collection-page/collection-form/collection-form.models.ts
src/app/collection-page/collection-form/collection-form.module.ts
src/app/collection-page/collection-item-mapper/collection-item-mapper.component.html
src/app/collection-page/collection-item-mapper/collection-item-mapper.component.scss
src/app/collection-page/collection-item-mapper/collection-item-mapper.component.spec.ts
src/app/collection-page/collection-item-mapper/collection-item-mapper.component.ts
src/app/collection-page/collection-page-administrator.guard.ts
src/app/collection-page/collection-page-routes.ts
src/app/collection-page/collection-page-routing-paths.ts
src/app/collection-page/collection-page-routing.module.ts
src/app/collection-page/collection-page.component.html
src/app/collection-page/collection-page.component.scss
src/app/collection-page/collection-page.component.ts
src/app/collection-page/collection-page.module.ts
src/app/collection-page/collection-page.resolver.spec.ts
src/app/collection-page/collection-page.resolver.ts
src/app/collection-page/create-collection-page/create-collection-page.component.html
src/app/collection-page/create-collection-page/create-collection-page.component.scss
src/app/collection-page/create-collection-page/create-collection-page.component.spec.ts
src/app/collection-page/create-collection-page/create-collection-page.component.ts
src/app/collection-page/create-collection-page/create-collection-page.guard.spec.ts
src/app/collection-page/create-collection-page/create-collection-page.guard.ts
src/app/collection-page/delete-collection-page/delete-collection-page.component.html
src/app/collection-page/delete-collection-page/delete-collection-page.component.scss
src/app/collection-page/delete-collection-page/delete-collection-page.component.spec.ts
src/app/collection-page/delete-collection-page/delete-collection-page.component.ts
src/app/collection-page/edit-collection-page/collection-access-control/collection-access-control.component.html
src/app/collection-page/edit-collection-page/collection-access-control/collection-access-control.component.scss
src/app/collection-page/edit-collection-page/collection-access-control/collection-access-control.component.spec.ts
src/app/collection-page/edit-collection-page/collection-access-control/collection-access-control.component.ts
src/app/collection-page/edit-collection-page/collection-authorizations/collection-authorizations.component.html
src/app/collection-page/edit-collection-page/collection-authorizations/collection-authorizations.component.spec.ts
src/app/collection-page/edit-collection-page/collection-authorizations/collection-authorizations.component.ts
src/app/collection-page/edit-collection-page/collection-curate/collection-curate.component.html
src/app/collection-page/edit-collection-page/collection-curate/collection-curate.component.spec.ts
src/app/collection-page/edit-collection-page/collection-curate/collection-curate.component.ts
src/app/collection-page/edit-collection-page/collection-metadata/collection-metadata.component.html
src/app/collection-page/edit-collection-page/collection-metadata/collection-metadata.component.spec.ts
src/app/collection-page/edit-collection-page/collection-metadata/collection-metadata.component.ts
src/app/collection-page/edit-collection-page/collection-roles/collection-roles.component.html
src/app/collection-page/edit-collection-page/collection-roles/collection-roles.component.spec.ts
src/app/collection-page/edit-collection-page/collection-roles/collection-roles.component.ts
src/app/collection-page/edit-collection-page/collection-source/collection-source-controls/collection-source-controls.component.html
src/app/collection-page/edit-collection-page/collection-source/collection-source-controls/collection-source-controls.component.scss
src/app/collection-page/edit-collection-page/collection-source/collection-source-controls/collection-source-controls.component.spec.ts
src/app/collection-page/edit-collection-page/collection-source/collection-source-controls/collection-source-controls.component.ts
src/app/collection-page/edit-collection-page/collection-source/collection-source.component.html
src/app/collection-page/edit-collection-page/collection-source/collection-source.component.spec.ts
src/app/collection-page/edit-collection-page/collection-source/collection-source.component.ts
src/app/collection-page/edit-collection-page/edit-collection-page-routes.ts
src/app/collection-page/edit-collection-page/edit-collection-page.component.spec.ts
src/app/collection-page/edit-collection-page/edit-collection-page.component.ts
src/app/collection-page/edit-collection-page/edit-collection-page.module.ts
src/app/collection-page/edit-collection-page/edit-collection-page.routing.module.ts
src/app/collection-page/edit-item-template-page/edit-item-template-page.component.html
src/app/collection-page/edit-item-template-page/edit-item-template-page.component.spec.ts
src/app/collection-page/edit-item-template-page/edit-item-template-page.component.ts
src/app/collection-page/edit-item-template-page/item-template-page.resolver.spec.ts
src/app/collection-page/edit-item-template-page/item-template-page.resolver.ts
src/app/collection-page/edit-item-template-page/themed-edit-item-template-page.component.ts
src/app/collection-page/themed-collection-page.component.ts
src/app/community-list-page/community-list-datasource.ts
src/app/community-list-page/community-list-page-routes.ts
src/app/community-list-page/community-list-page.component.html
src/app/community-list-page/community-list-page.component.spec.ts
src/app/community-list-page/community-list-page.component.ts
src/app/community-list-page/community-list-page.module.ts
src/app/community-list-page/community-list-page.routing.module.ts
src/app/community-list-page/community-list-service.spec.ts
src/app/community-list-page/community-list-service.ts
src/app/community-list-page/community-list.actions.ts
src/app/community-list-page/community-list.reducer.spec.ts
src/app/community-list-page/community-list.reducer.ts
src/app/community-list-page/community-list/community-list.component.html
src/app/community-list-page/community-list/community-list.component.scss
src/app/community-list-page/community-list/community-list.component.spec.ts
src/app/community-list-page/community-list/community-list.component.ts
src/app/community-list-page/community-list/themed-community-list.component.ts
src/app/community-list-page/flat-node.model.ts
src/app/community-list-page/show-more-flat-node.model.ts
src/app/community-list-page/themed-community-list-page.component.ts
src/app/community-page/community-form/community-form.component.ts
src/app/community-page/community-form/community-form.module.ts
src/app/community-page/community-page-administrator.guard.ts
src/app/community-page/community-page-routes.ts
src/app/community-page/community-page-routing-paths.ts
src/app/community-page/community-page-routing.module.ts
src/app/community-page/community-page.component.html
src/app/community-page/community-page.component.scss
src/app/community-page/community-page.component.ts
src/app/community-page/community-page.module.ts
src/app/community-page/community-page.resolver.spec.ts
src/app/community-page/community-page.resolver.ts
src/app/community-page/create-community-page/create-community-page.component.html
src/app/community-page/create-community-page/create-community-page.component.scss
src/app/community-page/create-community-page/create-community-page.component.spec.ts
src/app/community-page/create-community-page/create-community-page.component.ts
src/app/community-page/create-community-page/create-community-page.guard.spec.ts
src/app/community-page/create-community-page/create-community-page.guard.ts
src/app/community-page/delete-community-page/delete-community-page.component.html
src/app/community-page/delete-community-page/delete-community-page.component.scss
src/app/community-page/delete-community-page/delete-community-page.component.spec.ts
src/app/community-page/delete-community-page/delete-community-page.component.ts
src/app/community-page/edit-community-page/community-access-control/community-access-control.component.html
src/app/community-page/edit-community-page/community-access-control/community-access-control.component.scss
src/app/community-page/edit-community-page/community-access-control/community-access-control.component.spec.ts
src/app/community-page/edit-community-page/community-access-control/community-access-control.component.ts
src/app/community-page/edit-community-page/community-authorizations/community-authorizations.component.html
src/app/community-page/edit-community-page/community-authorizations/community-authorizations.component.spec.ts
src/app/community-page/edit-community-page/community-authorizations/community-authorizations.component.ts
src/app/community-page/edit-community-page/community-curate/community-curate.component.html
src/app/community-page/edit-community-page/community-curate/community-curate.component.spec.ts
src/app/community-page/edit-community-page/community-curate/community-curate.component.ts
src/app/community-page/edit-community-page/community-metadata/community-metadata.component.html
src/app/community-page/edit-community-page/community-metadata/community-metadata.component.spec.ts
src/app/community-page/edit-community-page/community-metadata/community-metadata.component.ts
src/app/community-page/edit-community-page/community-roles/community-roles.component.html
src/app/community-page/edit-community-page/community-roles/community-roles.component.spec.ts
src/app/community-page/edit-community-page/community-roles/community-roles.component.ts
src/app/community-page/edit-community-page/edit-community-page-routes.ts
src/app/community-page/edit-community-page/edit-community-page.component.spec.ts
src/app/community-page/edit-community-page/edit-community-page.component.ts
src/app/community-page/edit-community-page/edit-community-page.module.ts
src/app/community-page/edit-community-page/edit-community-page.routing.module.ts
src/app/community-page/sections/sub-com-col-section/sub-collection-list/community-page-sub-collection-list.component.html
src/app/community-page/sections/sub-com-col-section/sub-collection-list/community-page-sub-collection-list.component.scss
src/app/community-page/sections/sub-com-col-section/sub-collection-list/community-page-sub-collection-list.component.spec.ts
src/app/community-page/sections/sub-com-col-section/sub-collection-list/community-page-sub-collection-list.component.ts
src/app/community-page/sections/sub-com-col-section/sub-collection-list/themed-community-page-sub-collection-list.component.ts
src/app/community-page/sections/sub-com-col-section/sub-com-col-section.component.html
src/app/community-page/sections/sub-com-col-section/sub-com-col-section.component.scss
src/app/community-page/sections/sub-com-col-section/sub-com-col-section.component.spec.ts
src/app/community-page/sections/sub-com-col-section/sub-com-col-section.component.ts
src/app/community-page/sections/sub-com-col-section/sub-community-list/community-page-sub-community-list.component.html
src/app/community-page/sections/sub-com-col-section/sub-community-list/community-page-sub-community-list.component.scss
src/app/community-page/sections/sub-com-col-section/sub-community-list/community-page-sub-community-list.component.spec.ts
src/app/community-page/sections/sub-com-col-section/sub-community-list/community-page-sub-community-list.component.ts
src/app/community-page/sections/sub-com-col-section/sub-community-list/themed-community-page-sub-community-list.component.ts
src/app/community-page/sub-collection-list/community-page-sub-collection-list.component.html
src/app/community-page/sub-collection-list/community-page-sub-collection-list.component.scss
src/app/community-page/sub-collection-list/community-page-sub-collection-list.component.spec.ts
src/app/community-page/sub-collection-list/community-page-sub-collection-list.component.ts
src/app/community-page/sub-collection-list/themed-community-page-sub-collection-list.component.ts
src/app/community-page/sub-community-list/community-page-sub-community-list.component.html
src/app/community-page/sub-community-list/community-page-sub-community-list.component.scss
src/app/community-page/sub-community-list/community-page-sub-community-list.component.spec.ts
src/app/community-page/sub-community-list/community-page-sub-community-list.component.ts
src/app/community-page/sub-community-list/themed-community-page-sub-community-list.component.ts
src/app/community-page/themed-community-page.component.ts
src/app/core/auth/auth-blocking.guard.spec.ts
src/app/core/auth/auth-blocking.guard.ts
src/app/core/auth/auth-request.service.spec.ts
src/app/core/auth/auth-request.service.ts
src/app/core/auth/auth-response-parsing.service.spec.ts
src/app/core/auth/auth.actions.ts
src/app/core/auth/auth.effects.spec.ts
src/app/core/auth/auth.effects.ts
src/app/core/auth/auth.interceptor.spec.ts
src/app/core/auth/auth.interceptor.ts
src/app/core/auth/auth.reducer.spec.ts
src/app/core/auth/auth.reducer.ts
src/app/core/auth/auth.service.spec.ts
src/app/core/auth/auth.service.ts
src/app/core/auth/authenticated.guard.ts
src/app/core/auth/browser-auth-request.service.spec.ts
src/app/core/auth/browser-auth-request.service.ts
src/app/core/auth/models/auth-error.model.ts
src/app/core/auth/models/auth-status.model.ts
src/app/core/auth/models/auth-status.resource-type.ts
src/app/core/auth/models/auth-token-info.model.ts
src/app/core/auth/models/auth.method-type.ts
src/app/core/auth/models/auth.method.ts
src/app/core/auth/models/normalized-auth-status.model.ts
src/app/core/auth/models/short-lived-token.model.ts
src/app/core/auth/models/short-lived-token.resource-type.ts
src/app/core/auth/selectors.ts
src/app/core/auth/server-auth-request.service.spec.ts
src/app/core/auth/server-auth-request.service.ts
src/app/core/auth/server-auth.service.ts
src/app/core/auth/token-response-parsing.service.spec.ts
src/app/core/auth/token-response-parsing.service.ts
src/app/core/breadcrumbs/bitstream-breadcrumb.resolver.ts
src/app/core/breadcrumbs/bitstream-breadcrumbs.service.ts
src/app/core/breadcrumbs/breadcrumbsProviderService.ts
src/app/core/breadcrumbs/collection-breadcrumb.resolver.ts
src/app/core/breadcrumbs/community-breadcrumb.resolver.ts
src/app/core/breadcrumbs/dso-breadcrumb.resolver.spec.ts
src/app/core/breadcrumbs/dso-breadcrumb.resolver.ts
src/app/core/breadcrumbs/dso-breadcrumbs.service.spec.ts
src/app/core/breadcrumbs/dso-breadcrumbs.service.ts
src/app/core/breadcrumbs/dso-name.service.spec.ts
src/app/core/breadcrumbs/dso-name.service.ts
src/app/core/breadcrumbs/i18n-breadcrumb.resolver.spec.ts
src/app/core/breadcrumbs/i18n-breadcrumb.resolver.ts
src/app/core/breadcrumbs/i18n-breadcrumbs.service.spec.ts
src/app/core/breadcrumbs/i18n-breadcrumbs.service.ts
src/app/core/breadcrumbs/item-breadcrumb.resolver.ts
src/app/core/breadcrumbs/navigation-breadcrumb.resolver.spec.ts
src/app/core/breadcrumbs/navigation-breadcrumb.resolver.ts
src/app/core/breadcrumbs/navigation-breadcrumb.service.ts
src/app/core/breadcrumbs/navigation-breadcrumbs.service.spec.ts
src/app/core/breadcrumbs/publication-claim-breadcrumb.resolver.spec.ts
src/app/core/breadcrumbs/publication-claim-breadcrumb.resolver.ts
src/app/core/breadcrumbs/publication-claim-breadcrumb.service.spec.ts
src/app/core/breadcrumbs/publication-claim-breadcrumb.service.ts
src/app/core/breadcrumbs/quality-assurance-breadcrumb.resolver.spec.ts
src/app/core/breadcrumbs/quality-assurance-breadcrumb.resolver.ts
src/app/core/breadcrumbs/quality-assurance-breadcrumb.service.spec.ts
src/app/core/breadcrumbs/quality-assurance-breadcrumb.service.ts
src/app/core/browse/browse-definition-data.service.spec.ts
src/app/core/browse/browse-definition-data.service.ts
src/app/core/browse/browse-entry-search-options.model.ts
src/app/core/browse/browse.service.spec.ts
src/app/core/browse/browse.service.ts
src/app/core/cache/builders/build-decorators.spec.ts
src/app/core/cache/builders/build-decorators.ts
src/app/core/cache/builders/link.service.spec.ts
src/app/core/cache/builders/link.service.ts
src/app/core/cache/builders/remote-data-build.service.spec.ts
src/app/core/cache/builders/remote-data-build.service.ts
src/app/core/cache/cache-entry.ts
src/app/core/cache/cacheable-object.model.ts
src/app/core/cache/id-to-uuid-serializer.spec.ts
src/app/core/cache/id-to-uuid-serializer.ts
src/app/core/cache/models/request-param.model.ts
src/app/core/cache/models/self-link.model.ts
src/app/core/cache/models/sort-options.model.ts
src/app/core/cache/models/support-level.model.ts
src/app/core/cache/object-cache.actions.ts
src/app/core/cache/object-cache.effects.spec.ts
src/app/core/cache/object-cache.effects.ts
src/app/core/cache/object-cache.reducer.spec.ts
src/app/core/cache/object-cache.reducer.ts
src/app/core/cache/object-cache.service.spec.ts
src/app/core/cache/object-cache.service.ts
src/app/core/cache/response.models.ts
src/app/core/cache/server-sync-buffer.actions.ts
src/app/core/cache/server-sync-buffer.effects.spec.ts
src/app/core/cache/server-sync-buffer.effects.ts
src/app/core/cache/server-sync-buffer.reducer.spec.ts
src/app/core/cache/server-sync-buffer.reducer.ts
src/app/core/cache/typed-object.model.ts
src/app/core/coar-notify/notify-info/notify-info.guard.spec.ts
src/app/core/coar-notify/notify-info/notify-info.guard.ts
src/app/core/coar-notify/notify-info/notify-info.service.spec.ts
src/app/core/coar-notify/notify-info/notify-info.service.ts
src/app/core/config/bulk-access-config-data.service.ts
src/app/core/config/config-data.service.spec.ts
src/app/core/config/config-data.service.ts
src/app/core/config/models/bulk-access-condition-options.model.ts
src/app/core/config/models/config-access-condition-option.model.ts
src/app/core/config/models/config-accesses-conditions-options.model.ts
src/app/core/config/models/config-submission-access.model.ts
src/app/core/config/models/config-submission-accesses.model.ts
src/app/core/config/models/config-submission-definition.model.ts
src/app/core/config/models/config-submission-definitions.model.ts
src/app/core/config/models/config-submission-form.model.ts
src/app/core/config/models/config-submission-forms.model.ts
src/app/core/config/models/config-submission-section.model.ts
src/app/core/config/models/config-submission-sections.model.ts
src/app/core/config/models/config-submission-upload.model.ts
src/app/core/config/models/config-submission-uploads.model.ts
src/app/core/config/models/config-type.ts
src/app/core/config/models/config.model.ts
src/app/core/config/submission-accesses-config-data.service.ts
src/app/core/config/submission-forms-config-data.service.ts
src/app/core/config/submission-uploads-config-data.service.ts
src/app/core/core-state.model.ts
src/app/core/core.effects.ts
src/app/core/core.module.ts
src/app/core/core.reducers.ts
src/app/core/core.selectors.ts
src/app/core/data-services-map.ts
src/app/core/data/access-status-data.service.spec.ts
src/app/core/data/access-status-data.service.ts
src/app/core/data/array-move-change-analyzer.service.spec.ts
src/app/core/data/array-move-change-analyzer.service.ts
src/app/core/data/base-response-parsing.service.spec.ts
src/app/core/data/base-response-parsing.service.ts
src/app/core/data/base/base-data.service.spec.ts
src/app/core/data/base/base-data.service.ts
src/app/core/data/base/create-data.spec.ts
src/app/core/data/base/create-data.ts
src/app/core/data/base/data-service.decorator.spec.ts
src/app/core/data/base/data-service.decorator.ts
src/app/core/data/base/delete-data.spec.ts
src/app/core/data/base/delete-data.ts
src/app/core/data/base/find-all-data.spec.ts
src/app/core/data/base/find-all-data.ts
src/app/core/data/base/hal-data-service.interface.ts
src/app/core/data/base/identifiable-data.service.spec.ts
src/app/core/data/base/identifiable-data.service.ts
src/app/core/data/base/patch-data.spec.ts
src/app/core/data/base/patch-data.ts
src/app/core/data/base/put-data.spec.ts
src/app/core/data/base/put-data.ts
src/app/core/data/base/search-data.spec.ts
src/app/core/data/base/search-data.ts
src/app/core/data/bitstream-data.service.spec.ts
src/app/core/data/bitstream-data.service.ts
src/app/core/data/bitstream-format-data.service.spec.ts
src/app/core/data/bitstream-format-data.service.ts
src/app/core/data/browse-response-parsing.service.spec.ts
src/app/core/data/browse-response-parsing.service.ts
src/app/core/data/bundle-data.service.spec.ts
src/app/core/data/bundle-data.service.ts
src/app/core/data/change-analyzer.ts
src/app/core/data/collection-data.service.spec.ts
src/app/core/data/collection-data.service.ts
src/app/core/data/comcol-data.service.spec.ts
src/app/core/data/comcol-data.service.ts
src/app/core/data/community-data.service.ts
src/app/core/data/configuration-data.service.spec.ts
src/app/core/data/configuration-data.service.ts
src/app/core/data/content-source-response-parsing.service.ts
src/app/core/data/debug-response-parsing.service.ts
src/app/core/data/default-change-analyzer.service.ts
src/app/core/data/dso-change-analyzer.service.ts
src/app/core/data/dso-redirect.service.spec.ts
src/app/core/data/dso-redirect.service.ts
src/app/core/data/dso-response-parsing.service.ts
src/app/core/data/dspace-object-data.service.spec.ts
src/app/core/data/dspace-object-data.service.ts
src/app/core/data/dspace-rest-response-parsing.service.ts
src/app/core/data/endpoint-map-response-parsing.service.ts
src/app/core/data/entity-type-data.service.spec.ts
src/app/core/data/entity-type-data.service.ts
src/app/core/data/eperson-registration.service.spec.ts
src/app/core/data/eperson-registration.service.ts
src/app/core/data/external-source-data.service.spec.ts
src/app/core/data/external-source-data.service.ts
src/app/core/data/facet-config-response-parsing.service.ts
src/app/core/data/facet-value-response-parsing.service.ts
src/app/core/data/feature-authorization/authorization-data.service.spec.ts
src/app/core/data/feature-authorization/authorization-data.service.ts
src/app/core/data/feature-authorization/authorization-search-params.ts
src/app/core/data/feature-authorization/authorization-utils.ts
src/app/core/data/feature-authorization/feature-authorization-guard/collection-administrator.guard.ts
src/app/core/data/feature-authorization/feature-authorization-guard/community-administrator.guard.ts
src/app/core/data/feature-authorization/feature-authorization-guard/dso-page-single-feature.guard.spec.ts
src/app/core/data/feature-authorization/feature-authorization-guard/dso-page-single-feature.guard.ts
src/app/core/data/feature-authorization/feature-authorization-guard/dso-page-some-feature.guard.spec.ts
src/app/core/data/feature-authorization/feature-authorization-guard/dso-page-some-feature.guard.ts
src/app/core/data/feature-authorization/feature-authorization-guard/group-administrator.guard.ts
src/app/core/data/feature-authorization/feature-authorization-guard/single-feature-authorization.guard.spec.ts
src/app/core/data/feature-authorization/feature-authorization-guard/single-feature-authorization.guard.ts
src/app/core/data/feature-authorization/feature-authorization-guard/site-administrator.guard.ts
src/app/core/data/feature-authorization/feature-authorization-guard/site-register.guard.ts
src/app/core/data/feature-authorization/feature-authorization-guard/some-feature-authorization.guard.spec.ts
src/app/core/data/feature-authorization/feature-authorization-guard/some-feature-authorization.guard.ts
src/app/core/data/feature-authorization/feature-authorization-guard/statistics-administrator.guard.ts
src/app/core/data/feature-authorization/feature-data.service.ts
src/app/core/data/feature-authorization/feature-id.ts
src/app/core/data/filtered-discovery-page-response-parsing.service.spec.ts
src/app/core/data/filtered-discovery-page-response-parsing.service.ts
src/app/core/data/find-list-options.model.ts
src/app/core/data/href-only-data.service.spec.ts
src/app/core/data/href-only-data.service.ts
src/app/core/data/identifier-data.service.ts
src/app/core/data/item-data.service.spec.ts
src/app/core/data/item-data.service.ts
src/app/core/data/item-request-data.service.spec.ts
src/app/core/data/item-request-data.service.ts
src/app/core/data/item-template-data.service.spec.ts
src/app/core/data/item-template-data.service.ts
src/app/core/data/lookup-relation.service.spec.ts
src/app/core/data/lookup-relation.service.ts
src/app/core/data/metadata-field-data.service.spec.ts
src/app/core/data/metadata-field-data.service.ts
src/app/core/data/metadata-schema-data.service.spec.ts
src/app/core/data/metadata-schema-data.service.ts
src/app/core/data/mydspace-response-parsing.service.ts
src/app/core/data/notify-services-status-data.service.spec.ts
src/app/core/data/notify-services-status-data.service.ts
src/app/core/data/object-updates/field-change-type.model.ts
src/app/core/data/object-updates/field-update.model.ts
src/app/core/data/object-updates/field-updates.model.ts
src/app/core/data/object-updates/identifiable.model.ts
src/app/core/data/object-updates/object-updates.actions.ts
src/app/core/data/object-updates/object-updates.effects.spec.ts
src/app/core/data/object-updates/object-updates.effects.ts
src/app/core/data/object-updates/object-updates.reducer.spec.ts
src/app/core/data/object-updates/object-updates.reducer.ts
src/app/core/data/object-updates/object-updates.service.spec.ts
src/app/core/data/object-updates/object-updates.service.stub.ts
src/app/core/data/object-updates/object-updates.service.ts
src/app/core/data/object-updates/patch-operation-service/metadata-patch-operation.service.spec.ts
src/app/core/data/object-updates/patch-operation-service/metadata-patch-operation.service.ts
src/app/core/data/object-updates/patch-operation-service/operations/metadata/metadata-patch-add-operation.model.ts
src/app/core/data/object-updates/patch-operation-service/operations/metadata/metadata-patch-move-operation.model.ts
src/app/core/data/object-updates/patch-operation-service/operations/metadata/metadata-patch-operation.model.ts
src/app/core/data/object-updates/patch-operation-service/operations/metadata/metadata-patch-remove-operation.model.ts
src/app/core/data/object-updates/patch-operation-service/operations/metadata/metadata-patch-replace-operation.model.ts
src/app/core/data/object-updates/patch-operation-service/patch-operation.service.ts
src/app/core/data/paginated-list.model.ts
src/app/core/data/paginated-list.resource-type.ts
src/app/core/data/parsing.service.ts
src/app/core/data/primary-bitstream.service.spec.ts
src/app/core/data/primary-bitstream.service.ts
src/app/core/data/processes/process-data.service.spec.ts
src/app/core/data/processes/process-data.service.ts
src/app/core/data/processes/script-data.service.spec.ts
src/app/core/data/processes/script-data.service.ts
src/app/core/data/registration-response-parsing.service.spec.ts
src/app/core/data/registration-response-parsing.service.ts
src/app/core/data/relationship-data.service.spec.ts
src/app/core/data/relationship-data.service.ts
src/app/core/data/relationship-type-data.service.spec.ts
src/app/core/data/relationship-type-data.service.ts
src/app/core/data/remote-data.ts
src/app/core/data/request-entry-state.model.spec.ts
src/app/core/data/request-entry-state.model.ts
src/app/core/data/request-entry.model.ts
src/app/core/data/request-error.model.ts
src/app/core/data/request-state.model.ts
src/app/core/data/request.actions.ts
src/app/core/data/request.effects.ts
src/app/core/data/request.models.ts
src/app/core/data/request.reducer.spec.ts
src/app/core/data/request.reducer.ts
src/app/core/data/request.service.spec.ts
src/app/core/data/request.service.ts
src/app/core/data/response-state.model.ts
src/app/core/data/rest-request-method.ts
src/app/core/data/rest-request-with-response-parser.model.ts
src/app/core/data/rest-request.model.ts
src/app/core/data/root-data.service.spec.ts
src/app/core/data/root-data.service.ts
src/app/core/data/root.model.ts
src/app/core/data/root.resource-type.ts
src/app/core/data/search-response-parsing.service.ts
src/app/core/data/signposting-data.service.spec.ts
src/app/core/data/signposting-data.service.ts
src/app/core/data/signposting-links.model.ts
src/app/core/data/site-data.service.spec.ts
src/app/core/data/site-data.service.ts
src/app/core/data/status-code-only-response-parsing.service.spec.ts
src/app/core/data/status-code-only-response-parsing.service.ts
src/app/core/data/system-wide-alert-data.service.spec.ts
src/app/core/data/system-wide-alert-data.service.ts
src/app/core/data/update-data.service.spec.ts
src/app/core/data/update-data.service.ts
src/app/core/data/version-data.service.spec.ts
src/app/core/data/version-data.service.ts
src/app/core/data/version-history-data.service.spec.ts
src/app/core/data/version-history-data.service.ts
src/app/core/data/workflow-action-data.service.ts
src/app/core/drag.service.ts
src/app/core/dspace-rest/dspace-not-null.serializer.ts
src/app/core/dspace-rest/dspace-rest.interceptor.spec.ts
src/app/core/dspace-rest/dspace-rest.interceptor.ts
src/app/core/dspace-rest/dspace-rest.schema.json
src/app/core/dspace-rest/dspace-rest.service.spec.ts
src/app/core/dspace-rest/dspace-rest.service.ts
src/app/core/dspace-rest/dspace-rest.validator.ts
src/app/core/dspace-rest/dspace.serializer.spec.ts
src/app/core/dspace-rest/dspace.serializer.ts
src/app/core/dspace-rest/raw-rest-response.model.ts
src/app/core/end-user-agreement/abstract-end-user-agreement.guard.ts
src/app/core/end-user-agreement/end-user-agreement-cookie.guard.spec.ts
src/app/core/end-user-agreement/end-user-agreement-cookie.guard.ts
src/app/core/end-user-agreement/end-user-agreement-current-user.guard.spec.ts
src/app/core/end-user-agreement/end-user-agreement-current-user.guard.ts
src/app/core/end-user-agreement/end-user-agreement.guard.ts
src/app/core/end-user-agreement/end-user-agreement.service.spec.ts
src/app/core/end-user-agreement/end-user-agreement.service.ts
src/app/core/eperson/eperson-data.service.spec.ts
src/app/core/eperson/eperson-data.service.ts
src/app/core/eperson/group-data.service.spec.ts
src/app/core/eperson/group-data.service.ts
src/app/core/eperson/models/eperson-dto.model.ts
src/app/core/eperson/models/eperson.model.ts
src/app/core/eperson/models/eperson.resource-type.ts
src/app/core/eperson/models/group-dto.model.ts
src/app/core/eperson/models/group.model.ts
src/app/core/eperson/models/group.resource-type.ts
src/app/core/eperson/models/workflowitem.resource-type.ts
src/app/core/eperson/models/workspaceitem.resource-type.ts
src/app/core/feedback/feedback-data.service.spec.ts
src/app/core/feedback/feedback-data.service.ts
src/app/core/feedback/feedback.guard.ts
src/app/core/feedback/models/feedback.model.ts
src/app/core/feedback/models/feedback.resource-type.ts
src/app/core/forward-client-ip/forward-client-ip.interceptor.spec.ts
src/app/core/forward-client-ip/forward-client-ip.interceptor.ts
src/app/core/google-recaptcha/google-recaptcha.module.ts