Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
31f660b
Port CLARIN frontend image assets (mime icons, flags, branding)
milanmajchrak Jun 18, 2026
9c8dfed
Port CLARIN frontend core layer (models + data services) to angular 9
milanmajchrak Jun 19, 2026
b3a7ff3
Port CLARIN clarin-licenses feature module to angular 9 (standalone)
milanmajchrak Jun 22, 2026
b5e2a6c
Fix clarin-licenses templates for v9 lint gate (control-flow, dsBtnDi…
milanmajchrak Jun 22, 2026
e0c1270
Port CLARIN handle-page (handle management) to angular 9 (standalone)
milanmajchrak Jun 22, 2026
7c5a6aa
Port CLARIN epic-handle (EPIC PID management) to angular 9 (standalone)
milanmajchrak Jun 22, 2026
5ece6b0
Port CLARIN share-submission + change-submitter to angular 9 (standal…
milanmajchrak Jun 22, 2026
d851181
Port CLARIN contact-page + static-page to angular 9 (standalone + the…
milanmajchrak Jun 22, 2026
30e665c
Fix FE runtime defects found by independent review (DI providers, *ng…
milanmajchrak Jun 22, 2026
4939a01
Port CLARIN i18n keys into en.json5 (FE tranche 8)
milanmajchrak Jun 24, 2026
ac9a7a3
Port CLARIN license-contract-page (FE tranche 9, standalone)
milanmajchrak Jun 24, 2026
77c7c92
Port CLARIN admin-update-config (FE tranche 10, standalone)
milanmajchrak Jun 24, 2026
e07722e
Port CLARIN bitstream-page (license-gated download) + tombstone clust…
milanmajchrak Jun 24, 2026
87722f2
Port CLARIN shared foundation + item-display chain (FE tranche 12, st…
milanmajchrak Jun 24, 2026
eeec254
Port CLARIN ref-box cluster (FE tranche 13, standalone)
milanmajchrak Jun 24, 2026
9b2eafe
Port CLARIN item-field display components (FE tranche 14, standalone)
milanmajchrak Jun 24, 2026
6eb82bf
Port CLARIN cc-license-field + item-page-citation + matomo-subscripti…
milanmajchrak Jun 24, 2026
56e5f66
Port CLARIN item-license-mapper + access-status-badge + dso-page-subs…
milanmajchrak Jun 24, 2026
2f5cce5
Fix FE lint errors across CLARIN tranches 9-16 (ng lint gate)
milanmajchrak Jun 24, 2026
f3a9e92
Port CLARIN login outcome pages (FE tranche 17, standalone)
milanmajchrak Jun 25, 2026
3ef742c
Fix FE build breakage (dsBtnDisabled directive + login imports) — pro…
milanmajchrak Jun 25, 2026
98b2a4d
Add CLARIN-DSpace FE npm dependencies (unblocks charts/toggle/discoju…
milanmajchrak Jun 25, 2026
c4d6d4e
FE: port views/downloads statistics page (d3 charts) + per-item button
milanmajchrak Jun 25, 2026
8351e2e
FE: port clarin-notice submission section (uses @nth-cloud/ng-toggle)
milanmajchrak Jun 25, 2026
1274f16
FE: port CLARIN/LINDAT top navbar (language toggle + AAI discojuice s…
milanmajchrak Jun 25, 2026
27dfcfe
FE: port CLARIN form-builder custom field types (autocomplete / spons…
milanmajchrak Jun 25, 2026
50b10f8
FE: port BitstreamUrlSerializer (percent-encode /bitstream/ download …
milanmajchrak Jun 25, 2026
eb55520
FE: port CLARIN license submission sections (clarin-license-resource …
milanmajchrak Jun 25, 2026
f9b8fb6
Fix FE CI: repair package-lock so `npm clean-install` passes again
milanmajchrak Jun 25, 2026
364dd53
FE: make item.component APP_CONFIG injection optional (unbreak item-t…
milanmajchrak Jun 25, 2026
77a8252
Fix FE circular dependencies (check-circ-deps CI step)
milanmajchrak Jun 26, 2026
558a8cc
Force-add ufal-theme.css (gitignored *.css) so the prod build finds it
milanmajchrak Jun 26, 2026
d563a12
Fix FE e2e regressions: don't override vanilla License section + navb…
milanmajchrak Jun 26, 2026
54b1b5a
Port CLARIN file-preview FE cluster (I2 frontend) to v9 standalone
milanmajchrak Jun 26, 2026
c89dd0d
Fix FE unit specs broken by the file-preview cluster wiring
milanmajchrak Jun 26, 2026
de5ae7c
Fix import placement in item-page specs (was inserted inside a multi-…
milanmajchrak Jun 26, 2026
0aa256b
Wire CLARIN distribution-license submission section (S6)
milanmajchrak Jun 29, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion cypress/e2e/my-dspace.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ describe('My DSpace page', () => {
cy.get('#dc_date_issued_year').type(currentYear.toString());
cy.get('input[name="dc.type"]').click();
cy.get('.dropdown-menu').should('be.visible').contains('button', 'Other').click();
cy.get('#granted').check();
cy.get('ds-clarin-license-distribution ng-toggle').click();

//Press deposit button
cy.get('button[data-test="deposit"]').click();
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/submission.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ describe('New Submission page', () => {

// Confirm the required license by checking checkbox
// (NOTE: requires "force:true" cause Cypress claims this checkbox is covered by its own <span>)
cy.get('input#granted').check( { force: true } );
cy.get('ds-clarin-license-distribution ng-toggle').click();

// Before using Cypress drag & drop, we have to manually trigger the "dragover" event.
// This ensures our UI displays the dropzone that covers the entire submission page.
Expand Down
Loading