diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index cc281204..9aa4598d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -57,9 +57,9 @@ jobs: run: npm install -g @angular/cli - name: Install Dependencies - working-directory: ./nuxeo-admin-console-ui//nuxeo-admin-console-web + working-directory: nuxeo-admin-console-web/ang-src run: npm install - name: Build Angular Project - working-directory: ./nuxeo-admin-console-ui//nuxeo-admin-console-web + working-directory: nuxeo-admin-console-web/ang-src run: npm run build \ No newline at end of file diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 4426b2cc..0065e88d 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -45,9 +45,9 @@ jobs: run: npm install -g @angular/cli - name: Install Dependencies - working-directory: ./nuxeo-admin-console-ui//nuxeo-admin-console-web + working-directory: nuxeo-admin-console-web/ang-src run: npm install - name: Lint - working-directory: ./nuxeo-admin-console-ui//nuxeo-admin-console-web + working-directory: nuxeo-admin-console-web/ang-src run: npm run lint \ No newline at end of file diff --git a/.github/workflows/utest.yaml b/.github/workflows/utest.yaml index 271b0550..e2c97818 100644 --- a/.github/workflows/utest.yaml +++ b/.github/workflows/utest.yaml @@ -45,7 +45,7 @@ jobs: - name: Install Dependencies - working-directory: ./nuxeo-admin-console-ui//nuxeo-admin-console-web + working-directory: nuxeo-admin-console-web/ang-src run: npm install - name: Install Chrome and Chromedriver @@ -58,6 +58,6 @@ jobs: run: google-chrome --version - name: Unit tests - working-directory: ./nuxeo-admin-console-ui//nuxeo-admin-console-web + working-directory: nuxeo-admin-console-web/ang-src run: | xvfb-run --auto-servernum --server-args="-screen 0 1024x768x24" npm test diff --git a/.gitignore b/.gitignore index f9d19a58..c69a7306 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ dist +node node_modules target .env diff --git a/nuxeo-admin-console-package/src/main/assemble/assembly.xml b/nuxeo-admin-console-package/src/main/assemble/assembly.xml index 0e35a664..df5d4d2d 100644 --- a/nuxeo-admin-console-package/src/main/assemble/assembly.xml +++ b/nuxeo-admin-console-package/src/main/assemble/assembly.xml @@ -20,9 +20,8 @@ - - - + + @@ -36,7 +35,6 @@ - @@ -62,7 +60,6 @@ - @@ -137,7 +134,7 @@ - + diff --git a/nuxeo-admin-console-package/src/main/resources/install/templates/admin-console-package/nuxeo.defaults b/nuxeo-admin-console-package/src/main/resources/install/templates/admin-console-package/nuxeo.defaults deleted file mode 100644 index 7e096d70..00000000 --- a/nuxeo-admin-console-package/src/main/resources/install/templates/admin-console-package/nuxeo.defaults +++ /dev/null @@ -1,7 +0,0 @@ -## Edit this file to customize your configuration ## -#admin-console-package.target= - -# Set list of templates to include, comma separated values. -nuxeo.template.includes=common - -# org.nuxeo.ecm.instance.description=Nuxeo ECM customized with admin-console-package diff --git a/nuxeo-admin-console-package/src/main/resources/package.xml b/nuxeo-admin-console-package/src/main/resources/package.xml index deec8246..ca566cd2 100644 --- a/nuxeo-admin-console-package/src/main/resources/package.xml +++ b/nuxeo-admin-console-package/src/main/resources/package.xml @@ -2,7 +2,7 @@ Nuxeo Admin Console UI package -

Nuxeo Admin console UI is a standard base web application for Nuxeo admin useres.

+

Nuxeo Admin console UI is a standard base web application for Nuxeo admin users.

http://localhost:8080/nuxeo/admin-console nuxeo @@ -10,8 +10,8 @@ Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 - lts - [2021.1,2023) + @DISTRIBUTION_NAME@ + [@NUXEO_PLATFORM_VERSION@,2023.0) PUBLIC diff --git a/nuxeo-admin-console-web/LICENSE b/nuxeo-admin-console-web/ang-src/LICENSE similarity index 100% rename from nuxeo-admin-console-web/LICENSE rename to nuxeo-admin-console-web/ang-src/LICENSE diff --git a/nuxeo-admin-console-web/PROJECT_STRUCTURE.md b/nuxeo-admin-console-web/ang-src/PROJECT_STRUCTURE.md similarity index 100% rename from nuxeo-admin-console-web/PROJECT_STRUCTURE.md rename to nuxeo-admin-console-web/ang-src/PROJECT_STRUCTURE.md diff --git a/nuxeo-admin-console-web/README.md b/nuxeo-admin-console-web/ang-src/README.md similarity index 100% rename from nuxeo-admin-console-web/README.md rename to nuxeo-admin-console-web/ang-src/README.md diff --git a/nuxeo-admin-console-web/angular.json b/nuxeo-admin-console-web/ang-src/angular.json similarity index 100% rename from nuxeo-admin-console-web/angular.json rename to nuxeo-admin-console-web/ang-src/angular.json diff --git a/nuxeo-admin-console-web/karma.conf.js b/nuxeo-admin-console-web/ang-src/karma.conf.js similarity index 100% rename from nuxeo-admin-console-web/karma.conf.js rename to nuxeo-admin-console-web/ang-src/karma.conf.js diff --git a/nuxeo-admin-console-web/package.json b/nuxeo-admin-console-web/ang-src/package.json similarity index 97% rename from nuxeo-admin-console-web/package.json rename to nuxeo-admin-console-web/ang-src/package.json index cc3b9155..cd5847ad 100644 --- a/nuxeo-admin-console-web/package.json +++ b/nuxeo-admin-console-web/ang-src/package.json @@ -4,7 +4,7 @@ "scripts": { "ng": "ng", "start": "ng serve", - "build": "ng build", + "build": "ng build --base-href=/nuxeo/admin-console/", "watch": "ng build --watch --configuration development", "test": "ng test --code-coverage --watch=false", "lint": "ng lint", diff --git a/nuxeo-admin-console-web/src/main/app/app/app-routing.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/app-routing.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/app-routing.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/app-routing.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/app.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/app.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/app.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/app.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/app.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/app.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/app.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/app.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/app.component.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/app.component.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/app.component.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/app.component.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/app.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/app.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/app.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/app.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/app.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/app.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/app.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/app.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/auth/auth-routing.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/auth/auth-routing.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/auth/auth-routing.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/auth/auth-routing.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/auth/auth.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/auth/auth.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/auth/auth.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/auth/auth.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/auth/components/SSO/hylandSSOManager.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/auth/components/SSO/hylandSSOManager.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/auth/components/SSO/hylandSSOManager.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/auth/components/SSO/hylandSSOManager.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/auth/components/SSO/hylandSSOManager.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/auth/components/SSO/hylandSSOManager.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/auth/components/SSO/hylandSSOManager.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/auth/components/SSO/hylandSSOManager.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/auth/services/auth-interceptor.service.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/auth/services/auth-interceptor.service.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/auth/services/auth-interceptor.service.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/auth/services/auth-interceptor.service.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/auth/services/auth.service.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/auth/services/auth.service.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/auth/services/auth.service.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/auth/services/auth.service.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/auth/store/actions.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/auth/store/actions.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/auth/store/actions.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/auth/store/actions.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/auth/store/effects.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/auth/store/effects.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/auth/store/effects.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/auth/store/effects.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/auth/store/reducers.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/auth/store/reducers.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/auth/store/reducers.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/auth/store/reducers.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/auth/types/authResponse.interface.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/auth/types/authResponse.interface.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/auth/types/authResponse.interface.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/auth/types/authResponse.interface.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/auth/types/authState.interface.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/auth/types/authState.interface.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/auth/types/authState.interface.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/auth/types/authState.interface.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/auth/types/hylandSSORequest.interface.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/auth/types/hylandSSORequest.interface.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/auth/types/hylandSSORequest.interface.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/auth/types/hylandSSORequest.interface.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/bulk-action-monitoring/bulk-action-monitoring-routing.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/bulk-action-monitoring/bulk-action-monitoring-routing.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/bulk-action-monitoring/bulk-action-monitoring-routing.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/bulk-action-monitoring/bulk-action-monitoring-routing.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/bulk-action-monitoring/bulk-action-monitoring.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/bulk-action-monitoring/bulk-action-monitoring.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/bulk-action-monitoring/bulk-action-monitoring.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/bulk-action-monitoring/bulk-action-monitoring.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/bulk-action-monitoring/components/bulk-action-monitoring.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/bulk-action-monitoring/components/bulk-action-monitoring.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/bulk-action-monitoring/components/bulk-action-monitoring.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/bulk-action-monitoring/components/bulk-action-monitoring.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/bulk-action-monitoring/components/bulk-action-monitoring.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/bulk-action-monitoring/components/bulk-action-monitoring.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/bulk-action-monitoring/components/bulk-action-monitoring.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/bulk-action-monitoring/components/bulk-action-monitoring.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/elastic-search-reindex.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/elastic-search-reindex.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/elastic-search-reindex.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/elastic-search-reindex.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/elastic-search-reindex.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/elastic-search-reindex.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/elastic-search-reindex.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/elastic-search-reindex.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/folder-es-reindex/folder-es-reindex.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/nxql-es-reindex/nxql-es-reindex.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/components/single-doc-es-reindex/single-doc-es-reindex.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex-routing.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex-routing.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex-routing.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex-routing.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex.constants.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex.constants.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex.constants.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex.constants.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex.interface.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex.interface.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex.interface.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex.interface.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/elastic-search-reindex.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/services/elastic-search-reindex.service.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/services/elastic-search-reindex.service.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/services/elastic-search-reindex.service.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/services/elastic-search-reindex.service.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/services/elastic-search-reindex.service.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/services/elastic-search-reindex.service.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/services/elastic-search-reindex.service.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/services/elastic-search-reindex.service.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/store/actions.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/store/actions.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/store/actions.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/store/actions.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/store/actions.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/store/actions.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/store/actions.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/store/actions.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/store/effects.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/store/effects.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/store/effects.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/store/effects.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/store/effects.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/store/effects.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/store/effects.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/store/effects.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/store/reducers.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/store/reducers.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/store/reducers.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/store/reducers.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/store/reducers.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/store/reducers.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/elastic-search-reindex/store/reducers.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/elastic-search-reindex/store/reducers.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/full-text-reindex/components/full-text-reindex.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/full-text-reindex/components/full-text-reindex.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/full-text-reindex/components/full-text-reindex.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/full-text-reindex/components/full-text-reindex.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/full-text-reindex/components/full-text-reindex.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/full-text-reindex/components/full-text-reindex.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/full-text-reindex/components/full-text-reindex.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/full-text-reindex/components/full-text-reindex.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/full-text-reindex/full-text-reindex-routing.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/full-text-reindex/full-text-reindex-routing.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/full-text-reindex/full-text-reindex-routing.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/full-text-reindex/full-text-reindex-routing.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/full-text-reindex/full-text-reindex.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/full-text-reindex/full-text-reindex.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/full-text-reindex/full-text-reindex.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/full-text-reindex/full-text-reindex.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/components/home.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/home.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/components/home.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/home.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/components/home.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/home.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/components/home.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/home.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/components/home.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/home.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/components/home.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/home.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/components/probes-summary/probes-summary.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/probes-summary/probes-summary.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/components/probes-summary/probes-summary.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/probes-summary/probes-summary.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/components/probes-summary/probes-summary.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/probes-summary/probes-summary.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/components/probes-summary/probes-summary.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/probes-summary/probes-summary.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/components/probes-summary/probes-summary.component.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/probes-summary/probes-summary.component.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/components/probes-summary/probes-summary.component.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/probes-summary/probes-summary.component.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/components/probes-summary/probes-summary.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/probes-summary/probes-summary.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/components/probes-summary/probes-summary.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/probes-summary/probes-summary.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/components/registration-version/registration-version.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/registration-version/registration-version.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/components/registration-version/registration-version.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/registration-version/registration-version.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/components/registration-version/registration-version.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/registration-version/registration-version.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/components/registration-version/registration-version.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/registration-version/registration-version.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/components/registration-version/registration-version.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/registration-version/registration-version.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/components/registration-version/registration-version.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/registration-version/registration-version.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/components/registration-version/registration-version.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/registration-version/registration-version.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/components/registration-version/registration-version.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/components/registration-version/registration-version.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/home-routing.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/home-routing.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/home-routing.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/home-routing.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/home.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/home.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/home.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/home.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/services/home.service.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/services/home.service.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/services/home.service.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/services/home.service.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/services/home.service.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/services/home.service.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/services/home.service.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/services/home.service.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/store/actions.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/store/actions.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/store/actions.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/store/actions.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/store/actions.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/store/actions.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/store/actions.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/store/actions.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/store/effects.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/store/effects.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/store/effects.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/store/effects.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/store/effects.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/store/effects.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/store/effects.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/store/effects.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/store/reducers.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/store/reducers.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/store/reducers.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/store/reducers.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/home/store/reducers.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/store/reducers.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/home/store/reducers.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/home/store/reducers.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/picture-render-generation/components/picture-render-generation.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/picture-render-generation/components/picture-render-generation.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/picture-render-generation/components/picture-render-generation.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/picture-render-generation/components/picture-render-generation.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/picture-render-generation/components/picture-render-generation.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/picture-render-generation/components/picture-render-generation.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/picture-render-generation/components/picture-render-generation.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/picture-render-generation/components/picture-render-generation.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/picture-render-generation/picture-render-generation-routing.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/picture-render-generation/picture-render-generation-routing.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/picture-render-generation/picture-render-generation-routing.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/picture-render-generation/picture-render-generation-routing.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/picture-render-generation/picture-render-generation.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/picture-render-generation/picture-render-generation.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/picture-render-generation/picture-render-generation.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/picture-render-generation/picture-render-generation.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/system-information/components/system-information.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/system-information/components/system-information.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/system-information/components/system-information.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/system-information/components/system-information.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/system-information/components/system-information.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/system-information/components/system-information.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/system-information/components/system-information.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/system-information/components/system-information.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/system-information/system-information-routing.modules.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/system-information/system-information-routing.modules.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/system-information/system-information-routing.modules.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/system-information/system-information-routing.modules.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/system-information/system-information.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/system-information/system-information.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/system-information/system-information.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/system-information/system-information.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/thumbnail-generation/components/thumbnail-generation.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/thumbnail-generation/components/thumbnail-generation.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/thumbnail-generation/components/thumbnail-generation.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/thumbnail-generation/components/thumbnail-generation.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/thumbnail-generation/components/thumbnail-generation.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/thumbnail-generation/components/thumbnail-generation.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/thumbnail-generation/components/thumbnail-generation.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/thumbnail-generation/components/thumbnail-generation.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/thumbnail-generation/thumbnail-generation-routing.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/thumbnail-generation/thumbnail-generation-routing.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/thumbnail-generation/thumbnail-generation-routing.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/thumbnail-generation/thumbnail-generation-routing.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/thumbnail-generation/thumbnail-generation.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/thumbnail-generation/thumbnail-generation.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/thumbnail-generation/thumbnail-generation.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/thumbnail-generation/thumbnail-generation.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/video-render-generation/components/video-render-generation.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/video-render-generation/components/video-render-generation.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/video-render-generation/components/video-render-generation.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/video-render-generation/components/video-render-generation.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/video-render-generation/components/video-render-generation.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/video-render-generation/components/video-render-generation.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/video-render-generation/components/video-render-generation.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/video-render-generation/components/video-render-generation.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/video-render-generation/video-render-generation-routing.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/video-render-generation/video-render-generation-routing.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/video-render-generation/video-render-generation-routing.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/video-render-generation/video-render-generation-routing.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/video-render-generation/video-render-generation.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/video-render-generation/video-render-generation.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/video-render-generation/video-render-generation.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/video-render-generation/video-render-generation.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/warning/warning.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/warning/warning.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/warning/warning.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/warning/warning.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/features/warning/warning.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/warning/warning.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/warning/warning.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/warning/warning.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/features/warning/warning.component.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/warning/warning.component.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/warning/warning.component.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/warning/warning.component.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/features/warning/warning.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/features/warning/warning.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/features/warning/warning.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/features/warning/warning.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/base-layout/base-layout.module.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/base-layout/base-layout.module.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/base-layout/base-layout.module.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/base-layout/base-layout.module.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/base-layout/components/base-layout.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/base-layout/components/base-layout.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/base-layout/components/base-layout.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/base-layout/components/base-layout.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/base-layout/components/base-layout.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/base-layout/components/base-layout.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/base-layout/components/base-layout.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/base-layout/components/base-layout.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/base-layout/components/base-layout.component.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/base-layout/components/base-layout.component.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/base-layout/components/base-layout.component.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/base-layout/components/base-layout.component.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/base-layout/components/base-layout.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/base-layout/components/base-layout.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/base-layout/components/base-layout.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/base-layout/components/base-layout.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/header-bar/header-bar.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/header-bar/header-bar.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/header-bar/header-bar.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/header-bar/header-bar.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/header-bar/header-bar.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/header-bar/header-bar.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/header-bar/header-bar.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/header-bar/header-bar.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/header-bar/header-bar.component.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/header-bar/header-bar.component.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/header-bar/header-bar.component.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/header-bar/header-bar.component.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/header-bar/header-bar.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/header-bar/header-bar.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/header-bar/header-bar.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/header-bar/header-bar.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/menu-bar/menu-bar.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/menu-bar/menu-bar.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/menu-bar/menu-bar.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/menu-bar/menu-bar.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/menu-bar/menu-bar.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/menu-bar/menu-bar.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/menu-bar/menu-bar.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/menu-bar/menu-bar.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/menu-bar/menu-bar.component.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/menu-bar/menu-bar.component.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/menu-bar/menu-bar.component.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/menu-bar/menu-bar.component.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/menu-bar/menu-bar.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/menu-bar/menu-bar.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/menu-bar/menu-bar.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/menu-bar/menu-bar.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/layouts/menu-bar/menu-bar.constants.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/menu-bar/menu-bar.constants.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/layouts/menu-bar/menu-bar.constants.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/layouts/menu-bar/menu-bar.constants.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/backendErrorMessages/backendErrorMessages.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/backendErrorMessages/backendErrorMessages.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/backendErrorMessages/backendErrorMessages.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/backendErrorMessages/backendErrorMessages.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/backendErrorMessages/backendErrorMessages.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/backendErrorMessages/backendErrorMessages.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/backendErrorMessages/backendErrorMessages.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/backendErrorMessages/backendErrorMessages.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-confirmation-modal/reindex-confirmation-modal.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-error-modal/reindex-error-modal.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.html b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.html rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.html diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.scss b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.scss diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/components/reindex/reindex-launched-modal/reindex-launched-modal.component.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/services/common.service.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/services/common.service.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/services/common.service.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/services/common.service.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/services/common.service.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/services/common.service.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/services/common.service.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/services/common.service.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/services/persistence.service.spec.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/services/persistence.service.spec.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/services/persistence.service.spec.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/services/persistence.service.spec.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/services/persistence.service.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/services/persistence.service.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/services/persistence.service.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/services/persistence.service.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/types/backendErrors.interface.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/types/backendErrors.interface.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/types/backendErrors.interface.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/types/backendErrors.interface.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/types/user.interface.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/types/user.interface.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/types/user.interface.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/types/user.interface.ts diff --git a/nuxeo-admin-console-web/src/main/app/app/shared/types/version-info.interface.ts b/nuxeo-admin-console-web/ang-src/src/main/app/app/shared/types/version-info.interface.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/app/shared/types/version-info.interface.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/app/shared/types/version-info.interface.ts diff --git a/nuxeo-admin-console-web/src/main/app/assets/.gitkeep b/nuxeo-admin-console-web/ang-src/src/main/app/assets/.gitkeep similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/.gitkeep rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/.gitkeep diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/OFL.txt b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/OFL.txt similarity index 97% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/OFL.txt rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/OFL.txt index 4fc61702..cb7002a8 100644 --- a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/OFL.txt +++ b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/OFL.txt @@ -1,93 +1,93 @@ -Copyright 2020 The Open Sans Project Authors (https://github.com/googlefonts/opensans) - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -https://openfontlicense.org - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. +Copyright 2020 The Open Sans Project Authors (https://github.com/googlefonts/opensans) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/OpenSans-Italic-VariableFont_wdth,wght.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/OpenSans-Italic-VariableFont_wdth,wght.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/OpenSans-Italic-VariableFont_wdth,wght.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/OpenSans-Italic-VariableFont_wdth,wght.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/README.txt b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/README.txt similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/README.txt rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/README.txt diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Bold.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Bold.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Bold.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Bold.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-BoldItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-BoldItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-BoldItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-BoldItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-ExtraBold.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-ExtraBold.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-ExtraBold.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-ExtraBold.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-ExtraBoldItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-ExtraBoldItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-ExtraBoldItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-ExtraBoldItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Italic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Italic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Italic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Italic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Light.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Light.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Light.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Light.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-LightItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-LightItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-LightItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-LightItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Medium.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Medium.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Medium.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Medium.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-MediumItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-MediumItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-MediumItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-MediumItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Regular.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Regular.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Regular.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-Regular.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-SemiBold.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-SemiBold.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-SemiBold.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-SemiBold.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-SemiBoldItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-SemiBoldItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans-SemiBoldItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans-SemiBoldItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Bold.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Bold.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Bold.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Bold.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-BoldItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-BoldItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-BoldItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-BoldItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-ExtraBold.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-ExtraBold.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-ExtraBold.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-ExtraBold.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-ExtraBoldItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-ExtraBoldItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-ExtraBoldItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-ExtraBoldItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Italic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Italic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Italic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Italic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Light.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Light.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Light.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Light.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-LightItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-LightItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-LightItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-LightItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Medium.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Medium.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Medium.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Medium.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-MediumItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-MediumItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-MediumItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-MediumItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Regular.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Regular.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Regular.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-Regular.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-SemiBold.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-SemiBold.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-SemiBold.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-SemiBold.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-SemiBoldItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-SemiBoldItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-SemiBoldItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_Condensed-SemiBoldItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Bold.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Bold.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Bold.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Bold.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-BoldItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-BoldItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-BoldItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-BoldItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-ExtraBold.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-ExtraBold.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-ExtraBold.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-ExtraBold.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-ExtraBoldItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-ExtraBoldItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-ExtraBoldItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-ExtraBoldItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Italic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Italic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Italic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Italic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Light.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Light.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Light.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Light.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-LightItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-LightItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-LightItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-LightItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Medium.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Medium.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Medium.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Medium.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-MediumItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-MediumItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-MediumItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-MediumItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Regular.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Regular.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Regular.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-Regular.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-SemiBold.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-SemiBold.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-SemiBold.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-SemiBold.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-SemiBoldItalic.ttf b/nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-SemiBoldItalic.ttf similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-SemiBoldItalic.ttf rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/fonts/Open_Sans/static/OpenSans_SemiCondensed-SemiBoldItalic.ttf diff --git a/nuxeo-admin-console-web/src/main/app/assets/images/logo.svg b/nuxeo-admin-console-web/ang-src/src/main/app/assets/images/logo.svg similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/images/logo.svg rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/images/logo.svg diff --git a/nuxeo-admin-console-web/src/main/app/assets/images/user-profile.svg b/nuxeo-admin-console-web/ang-src/src/main/app/assets/images/user-profile.svg similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/images/user-profile.svg rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/images/user-profile.svg diff --git a/nuxeo-admin-console-web/src/main/app/assets/user.json b/nuxeo-admin-console-web/ang-src/src/main/app/assets/user.json similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/user.json rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/user.json diff --git a/nuxeo-admin-console-web/src/main/app/assets/version-info.json b/nuxeo-admin-console-web/ang-src/src/main/app/assets/version-info.json similarity index 100% rename from nuxeo-admin-console-web/src/main/app/assets/version-info.json rename to nuxeo-admin-console-web/ang-src/src/main/app/assets/version-info.json diff --git a/nuxeo-admin-console-web/src/main/app/devtools/ngrx-devtools.development.ts b/nuxeo-admin-console-web/ang-src/src/main/app/devtools/ngrx-devtools.development.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/devtools/ngrx-devtools.development.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/devtools/ngrx-devtools.development.ts diff --git a/nuxeo-admin-console-web/src/main/app/devtools/ngrx-devtools.ts b/nuxeo-admin-console-web/ang-src/src/main/app/devtools/ngrx-devtools.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/devtools/ngrx-devtools.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/devtools/ngrx-devtools.ts diff --git a/nuxeo-admin-console-web/src/main/app/environments/environment.development.ts b/nuxeo-admin-console-web/ang-src/src/main/app/environments/environment.development.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/environments/environment.development.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/environments/environment.development.ts diff --git a/nuxeo-admin-console-web/src/main/app/environments/environment.ts b/nuxeo-admin-console-web/ang-src/src/main/app/environments/environment.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/environments/environment.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/environments/environment.ts diff --git a/nuxeo-admin-console-web/src/main/app/index.html b/nuxeo-admin-console-web/ang-src/src/main/app/index.html similarity index 100% rename from nuxeo-admin-console-web/src/main/app/index.html rename to nuxeo-admin-console-web/ang-src/src/main/app/index.html diff --git a/nuxeo-admin-console-web/src/main/app/main.ts b/nuxeo-admin-console-web/ang-src/src/main/app/main.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/main.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/main.ts diff --git a/nuxeo-admin-console-web/src/main/app/polyfills.ts b/nuxeo-admin-console-web/ang-src/src/main/app/polyfills.ts similarity index 100% rename from nuxeo-admin-console-web/src/main/app/polyfills.ts rename to nuxeo-admin-console-web/ang-src/src/main/app/polyfills.ts diff --git a/nuxeo-admin-console-web/src/main/app/proxy.conf.json b/nuxeo-admin-console-web/ang-src/src/main/app/proxy.conf.json similarity index 100% rename from nuxeo-admin-console-web/src/main/app/proxy.conf.json rename to nuxeo-admin-console-web/ang-src/src/main/app/proxy.conf.json diff --git a/nuxeo-admin-console-web/src/main/app/styles.scss b/nuxeo-admin-console-web/ang-src/src/main/app/styles.scss similarity index 100% rename from nuxeo-admin-console-web/src/main/app/styles.scss rename to nuxeo-admin-console-web/ang-src/src/main/app/styles.scss diff --git a/nuxeo-admin-console-web/ang-src/src/main/resources/META-INF/MANIFEST.MF b/nuxeo-admin-console-web/ang-src/src/main/resources/META-INF/MANIFEST.MF new file mode 100644 index 00000000..7ec82c12 --- /dev/null +++ b/nuxeo-admin-console-web/ang-src/src/main/resources/META-INF/MANIFEST.MF @@ -0,0 +1,9 @@ +Bundle-ActivationPolicy: lazy +Bundle-ClassPath: . +Manifest-Version: 1.0 +Bundle-Vendor: org.nuxeo.admin.console +Bundle-Version: 1.0.0 +Bundle-Name: nuxeo-admin-console-web +Bundle-ManifestVersion: 2 +Bundle-SymbolicName: org.nuxeo.admin.console.nuxeo-admin-console-web;singleton=true +Nuxeo-Component: OSGI-INF/admin-console-auth-contrib.xml diff --git a/nuxeo-admin-console-web/src/main/resources/OSGI-INF/admin-console-auth-contrib.xml b/nuxeo-admin-console-web/ang-src/src/main/resources/OSGI-INF/admin-console-auth-contrib.xml similarity index 100% rename from nuxeo-admin-console-web/src/main/resources/OSGI-INF/admin-console-auth-contrib.xml rename to nuxeo-admin-console-web/ang-src/src/main/resources/OSGI-INF/admin-console-auth-contrib.xml diff --git a/nuxeo-admin-console-web/ang-src/src/main/resources/OSGI-INF/deployment-fragment.xml b/nuxeo-admin-console-web/ang-src/src/main/resources/OSGI-INF/deployment-fragment.xml new file mode 100644 index 00000000..3f57eae0 --- /dev/null +++ b/nuxeo-admin-console-web/ang-src/src/main/resources/OSGI-INF/deployment-fragment.xml @@ -0,0 +1,19 @@ + + + + + + + nuxeo.war/** + + + + + + NuxeoAuthenticationFilter + /app/* + REQUEST + FORWARD + + + diff --git a/nuxeo-admin-console-web/tsconfig.app.json b/nuxeo-admin-console-web/ang-src/tsconfig.app.json similarity index 100% rename from nuxeo-admin-console-web/tsconfig.app.json rename to nuxeo-admin-console-web/ang-src/tsconfig.app.json diff --git a/nuxeo-admin-console-web/tsconfig.spec.json b/nuxeo-admin-console-web/ang-src/tsconfig.spec.json similarity index 100% rename from nuxeo-admin-console-web/tsconfig.spec.json rename to nuxeo-admin-console-web/ang-src/tsconfig.spec.json diff --git a/nuxeo-admin-console-web/build.xml b/nuxeo-admin-console-web/build.xml deleted file mode 100644 index 680f8a0f..00000000 --- a/nuxeo-admin-console-web/build.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/nuxeo-admin-console-web/pom.xml b/nuxeo-admin-console-web/pom.xml index 428432af..4efe9a3d 100644 --- a/nuxeo-admin-console-web/pom.xml +++ b/nuxeo-admin-console-web/pom.xml @@ -12,26 +12,75 @@ 1.0-SNAPSHOT + + ang-src + + + com.github.eirslett + frontend-maven-plugin + 1.11.0 + + v20.12.2 + ${angular.project.location} + + + + install node and npm + + install-node-and-npm + + generate-resources + + + npm install + + npm + + generate-resources + + install + + + + npm run build + + npm + + + run build + + generate-resources + + + + org.apache.maven.plugins - maven-antrun-plugin + maven-resources-plugin + 2.4.2 - - npm-build - process-resources - - - - - - - run - - + + default-copy-resources + process-resources + + copy-resources + + + true + ${project.build.directory}/classes/web/nuxeo.war/admin-console/ + + + ${project.basedir}/${angular.project.location}/dist/admin_console_ui + + + + - - - + + + + + diff --git a/nuxeo-admin-console-web/src/main/resources/META-INF/MANIFEST.MF b/nuxeo-admin-console-web/src/main/resources/META-INF/MANIFEST.MF index 7ec82c12..3c673681 100644 --- a/nuxeo-admin-console-web/src/main/resources/META-INF/MANIFEST.MF +++ b/nuxeo-admin-console-web/src/main/resources/META-INF/MANIFEST.MF @@ -1,9 +1,8 @@ -Bundle-ActivationPolicy: lazy -Bundle-ClassPath: . Manifest-Version: 1.0 -Bundle-Vendor: org.nuxeo.admin.console -Bundle-Version: 1.0.0 -Bundle-Name: nuxeo-admin-console-web -Bundle-ManifestVersion: 2 -Bundle-SymbolicName: org.nuxeo.admin.console.nuxeo-admin-console-web;singleton=true -Nuxeo-Component: OSGI-INF/admin-console-auth-contrib.xml +Bundle-Vendor: Nuxeo +Nuxeo-RequiredBy: org.nuxeo.ecm.war +Bundle-Version: 0.0.1 +Bundle-Name: Nuxeo Admin Console +Bundle-ManifestVersion: 1 +Bundle-SymbolicName: org.nuxeo.admin.console.web;singleton:=true +Nuxeo-Component: OSGI-INF/auth-config.xml diff --git a/nuxeo-admin-console-web/src/main/resources/OSGI-INF/auth-config.xml b/nuxeo-admin-console-web/src/main/resources/OSGI-INF/auth-config.xml new file mode 100644 index 00000000..bd98d78e --- /dev/null +++ b/nuxeo-admin-console-web/src/main/resources/OSGI-INF/auth-config.xml @@ -0,0 +1,17 @@ + + + + + + admin-console + + + + + + + ${org.nuxeo.ecm.contextPath}/admin-console/assets/.* + + + + diff --git a/nuxeo-admin-console-web/src/main/resources/OSGI-INF/deployment-fragment.xml b/nuxeo-admin-console-web/src/main/resources/OSGI-INF/deployment-fragment.xml index 3f57eae0..7fcd8b3c 100644 --- a/nuxeo-admin-console-web/src/main/resources/OSGI-INF/deployment-fragment.xml +++ b/nuxeo-admin-console-web/src/main/resources/OSGI-INF/deployment-fragment.xml @@ -3,17 +3,18 @@ - - nuxeo.war/** + + web/nuxeo.war/** NuxeoAuthenticationFilter - /app/* + /admin-console/* REQUEST FORWARD + diff --git a/nuxeo-admin-console-web/tsconfig.json b/nuxeo-admin-console-web/tsconfig.json deleted file mode 100644 index 4cf4f514..00000000 --- a/nuxeo-admin-console-web/tsconfig.json +++ /dev/null @@ -1,34 +0,0 @@ -/* To learn more about this file see: https://angular.io/config/tsconfig. */ -{ - "extends": "./node_modules/@hylandsoftware/hy-ui-standards/angular/tsconfig.json", - "compileOnSave": false, - "compilerOptions": { - "baseUrl": "./", - "outDir": "./dist/out-tsc", - "forceConsistentCasingInFileNames": true, - "strict": true, - "noImplicitOverride": true, - "noPropertyAccessFromIndexSignature": true, - "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true, - "sourceMap": true, - "declaration": false, - "downlevelIteration": true, - "experimentalDecorators": true, - "moduleResolution": "node", - "importHelpers": true, - "target": "ES2022", - "module": "ES2022", - "useDefineForClassFields": false, - "lib": ["ES2022", "dom"] - }, - "angularCompilerOptions": { - "enableI18nLegacyMessageIdFormat": false, - "strictInjectionParameters": true, - "strictInputAccessModifiers": true, - "strictTemplates": true - }, - "include": ["src/main/app/main.ts", "src/main/app/polyfills.ts"], - "files": ["src/main/app/polyfills.ts"], - "styles": ["src/main/app/styles.scss"] -} diff --git a/pom.xml b/pom.xml index 92370ff8..644c43c3 100644 --- a/pom.xml +++ b/pom.xml @@ -17,7 +17,6 @@ true - 2021.0