]> git.aero2k.de Git - tmp/jakarta-migration.git/commitdiff
DRYD-908: Update ui package versions.
authorRay Lee <ray.lee@lyrasis.org>
Sat, 17 Oct 2020 02:04:30 +0000 (22:04 -0400)
committerRay Lee <ray.lee@lyrasis.org>
Sat, 17 Oct 2020 02:04:30 +0000 (22:04 -0400)
build.properties
cspace-ui/anthro/build.properties
cspace-ui/bonsai/build.properties
cspace-ui/botgarden/build.properties
cspace-ui/fcart/build.properties
cspace-ui/herbarium/WEB-INF/web.xml [new file with mode: 0644]
cspace-ui/herbarium/build.properties [new file with mode: 0644]
cspace-ui/herbarium/index.html [new file with mode: 0644]
cspace-ui/lhmc/build.properties

index 7fe1e54778dd117e2b2a7f07430c1c52fe90f69a..d2cf59cca4eea1ffe49c14edc35e1d530cca01bf 100644 (file)
@@ -21,7 +21,7 @@ domain.nuxeo=nuxeo-server
 
 # UI settings
 cspace.ui.library.name=cspaceUI
-cspace.ui.version=5.1.1
+cspace.ui.version=5.1.3
 
 #nuxeo
 nuxeo.release=9.10-HF30
index 3c12c59947292a40f2d232898536c5c90bb9b57b..5077cbe402e0dd67e730284e6dc09fea70837871 100644 (file)
@@ -3,4 +3,4 @@ tenant.ui.basename=/cspace/${tenant.shortname}
 
 tenant.ui.profile.plugin.package.name=cspace-ui-plugin-profile-anthro
 tenant.ui.profile.plugin.library.name=cspaceUIPluginProfileAnthro
-tenant.ui.profile.plugin.version=4.1.1
+tenant.ui.profile.plugin.version=4.1.2
index c788086834fb49602eef0636dd21eea7bc45b69e..898fff5f7aecdc03fea78211a67e24ab8f559458 100644 (file)
@@ -3,4 +3,4 @@ tenant.ui.basename=/cspace/${tenant.shortname}
 
 tenant.ui.profile.plugin.package.name=cspace-ui-plugin-profile-bonsai
 tenant.ui.profile.plugin.library.name=cspaceUIPluginProfileBonsai
-tenant.ui.profile.plugin.version=4.1.0
+tenant.ui.profile.plugin.version=4.1.1
index 46373aaffaaabd2c8c99ef2d99215e26a5e7cba5..1ddb8cc5a457dae58dde984408a600400228cfc7 100644 (file)
@@ -3,4 +3,4 @@ tenant.ui.basename=/cspace/${tenant.shortname}
 
 tenant.ui.profile.plugin.package.name=cspace-ui-plugin-profile-botgarden
 tenant.ui.profile.plugin.library.name=cspaceUIPluginProfileBotGarden
-tenant.ui.profile.plugin.version=2.0.0
+tenant.ui.profile.plugin.version=2.0.1
index 842fdadbebbf9648bdcc748732844c3202fc92fe..f19eaf65b326b58a84c6c98404e8e8e8dca6a1fb 100644 (file)
@@ -3,4 +3,4 @@ tenant.ui.basename=/cspace/${tenant.shortname}
 
 tenant.ui.profile.plugin.package.name=cspace-ui-plugin-profile-fcart
 tenant.ui.profile.plugin.library.name=cspaceUIPluginProfileFCart
-tenant.ui.profile.plugin.version=3.0.0
+tenant.ui.profile.plugin.version=3.0.1
diff --git a/cspace-ui/herbarium/WEB-INF/web.xml b/cspace-ui/herbarium/WEB-INF/web.xml
new file mode 100644 (file)
index 0000000..3c1a184
--- /dev/null
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<web-app xmlns="http://java.sun.com/xml/ns/javaee" version="3.0" metadata-complete="true">
+        <filter>
+                <filter-name>FallbackResourceFilter</filter-name>
+                <filter-class>org.collectionspace.services.common.filter.FallbackResourceFilter</filter-class>
+        </filter>
+        <filter-mapping>
+                <filter-name>FallbackResourceFilter</filter-name>
+                <url-pattern>/*</url-pattern>
+        </filter-mapping>
+        <filter>
+                <filter-name>ExpiresFilter</filter-name>
+                <filter-class>org.apache.catalina.filters.ExpiresFilter</filter-class>
+                <init-param>
+                        <param-name>ExpiresDefault</param-name>
+                        <param-value>access plus 2 hours</param-value>
+                </init-param>
+        </filter>
+        <filter-mapping>
+                <filter-name>ExpiresFilter</filter-name>
+                <url-pattern>/*</url-pattern>
+        </filter-mapping>
+</web-app>
diff --git a/cspace-ui/herbarium/build.properties b/cspace-ui/herbarium/build.properties
new file mode 100644 (file)
index 0000000..78432bf
--- /dev/null
@@ -0,0 +1,6 @@
+tenant.ui.webapp.dir=cspace#${tenant.shortname}
+tenant.ui.basename=/cspace/${tenant.shortname}
+
+tenant.ui.profile.plugin.package.name=cspace-ui-plugin-profile-herbarium
+tenant.ui.profile.plugin.library.name=cspaceUIPluginProfileHerbarium
+tenant.ui.profile.plugin.version=1.1.1
diff --git a/cspace-ui/herbarium/index.html b/cspace-ui/herbarium/index.html
new file mode 100644 (file)
index 0000000..1a3b160
--- /dev/null
@@ -0,0 +1,20 @@
+<html>
+       <head>
+               <meta charset="UTF-8" />
+       </head>
+       <body>
+               <div id="cspace"></div>
+               <script src="/cspace-ui/@UI_FILENAME@"></script>
+               <script src="/cspace-ui/@UI_PROFILE_PLUGIN_FILENAME@"></script>
+               <script>
+                       cspaceUI({
+                               basename: '@BASENAME@',
+                               plugins: [
+                                       @UI_PROFILE_PLUGIN_LIBRARY_NAME@(),
+                               ],
+                               prettyUrls: true,
+                               tenantId: '@TENANT_ID@',
+                       });
+               </script>
+       </body>
+</html>
index 7438dd5fafcd029ed5960859fdf54a66e8524c9d..033412adad60d1d35fde8a9292443cd12293ef42 100644 (file)
@@ -3,4 +3,4 @@ tenant.ui.basename=/cspace/${tenant.shortname}
 
 tenant.ui.profile.plugin.package.name=cspace-ui-plugin-profile-lhmc
 tenant.ui.profile.plugin.library.name=cspaceUIPluginProfileLHMC
-tenant.ui.profile.plugin.version=3.1.0
+tenant.ui.profile.plugin.version=3.1.1