@pristy/pristy-libvue 0.13.2 → 0.13.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -33,36 +33,3 @@ npm run build:library
33
33
  ```
34
34
 
35
35
  The pristy-libvue package of the package.json will be overloaded by the local library.
36
-
37
- ## Versions
38
-
39
- | Version | Commits |
40
- |---------|:----------------------------------------------------------------|
41
- | 0.1.4 | First stable release |
42
- | 0.2.0 | Add copy and move nodes functions, Error management corrections |
43
- | 0.2.3 | Add workspaceService |
44
- | 0.2.4 | Adding the publication of an act |
45
- | 0.2.5 | Update Readme and licence in package.json |
46
- | 0.2.6 | Update wording |
47
- | 0.2.7 | Fix import of TrashCanApi |
48
- | 0.3.0 | Build with vite and linter and alfresco js-api version 5.0.0 |
49
- | 0.3.3 | Add FavoriteService |
50
- | 0.4.0 | Add CollaboraAccessService and CollaboraExtensionService |
51
- | 0.4.1 | Gestion des erreurs 502/504 |
52
- | | Add workspace to favorites |
53
- | 0.5.0 | Mise en place de vitest |
54
- | | Workspace Service traitement des erreurs |
55
- | | Add options for updateContentNode |
56
- | 0.5.2 | Mise en place traduction sur ErrorService |
57
- | 0.6.0 | Ajout des icones de fichiers |
58
- | 0.6.1 | Added icone service with file identification + translation |
59
- | | Update @alfresco/js-api 5.1.0 |
60
- | 0.6.2 | Fix bug with upload error 409 |
61
- | 0.7.0 | Retrieve user language from localStorage or window language |
62
- | | Preparing for easy inclusion of new languages |
63
- | | Add property "path" for getNode and getParents functions |
64
- | 0.8.0 | Add Keycloak / OIDC Authentication |
65
- | | Updates dependencies vite=3.2.5; axios=1.2.2; |
66
- | | alfresco/js-api=5.2.0; primevue=3.22.1 |
67
- | | Better error ma,agement when Alfresco is down |
68
-
@@ -1704,15 +1704,13 @@ q.default = q;
1704
1704
  const fe = q, et = Fc({
1705
1705
  id: "ConfigStore",
1706
1706
  state: () => ({
1707
- APP_ROOT: "/espaces/",
1708
- APP_ROOT_TITLE: "Pristy Espace",
1709
- ALFRESCO_HOST: "http://localhost:80",
1710
- ACA_HOST: "http://localhost:80",
1711
- ESPACES_HOST: "http://localhost:80",
1712
- ACTES_HOST: "http://localhost:80",
1713
- PORTAIL_HOST: "http://localhost:80",
1714
- KEYCLOAK_HOST: "http://localhost:80",
1715
- KEYCLOAK_REALM: "pristy",
1707
+ APP_ROOT: "/",
1708
+ APP_ROOT_TITLE: "Pristy Root",
1709
+ ALFRESCO_HOST: "http://alfresco",
1710
+ ESPACES_HOST: "http://espaces",
1711
+ ACTES_HOST: "http://actes",
1712
+ PORTAIL_HOST: "http://portail",
1713
+ COLLABORA_HOST: "http://collabora:9980",
1716
1714
  ALFRESCO_AUTH: "BASIC",
1717
1715
  ALFRESCO_ROOT: "alfresco",
1718
1716
  AUTH: "basic",
@@ -6822,7 +6820,9 @@ const Zu = new Kb();
6822
6820
  class $b {
6823
6821
  loadExtensionsXML() {
6824
6822
  const t = et();
6825
- return fe.get(`${t.ALFRESCO_HOST}/collabora/hosting/discovery`).then((c) => new DOMParser().parseFromString(c.data, "text/xml")).catch((c) => {
6823
+ return console.log(
6824
+ `Loading collabora extensions: ${t.COLLABORA_HOST}/hosting/discovery`
6825
+ ), fe.get(`${t.COLLABORA_HOST}/hosting/discovery`).then((c) => new DOMParser().parseFromString(c.data, "text/xml")).catch((c) => {
6826
6826
  Rb(c);
6827
6827
  });
6828
6828
  }