This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a commit to annotated tag 0.8 in repository https://gitbox.apache.org/repos/asf/sis.git
commit 2971042adcc661db3330789dc9b1349b1cc049f1 Author: Martin Desruisseaux <[email protected]> AuthorDate: Fri Nov 10 13:00:14 2017 +0000 Add a description and license information. git-svn-id: https://svn.apache.org/repos/asf/sis/branches/0.8@1814843 13f79535-47bb-0310-9956-ffa450edef68 --- .../sis-openoffice/src/main/unopkg/Referencing.xcu | 2 +- .../sis-openoffice/src/main/unopkg/description.txt | 1 + .../sis-openoffice/src/main/unopkg/description.xml | 20 ++++++++++++++++---- .../sis-openoffice/src/main/unopkg/license.txt | 13 +++++++++++++ .../java/org/apache/sis/internal/unopkg/UnoPkg.java | 1 + 5 files changed, 32 insertions(+), 5 deletions(-) diff --git a/application/sis-openoffice/src/main/unopkg/Referencing.xcu b/application/sis-openoffice/src/main/unopkg/Referencing.xcu index e90d96a..76b41aa 100644 --- a/application/sis-openoffice/src/main/unopkg/Referencing.xcu +++ b/application/sis-openoffice/src/main/unopkg/Referencing.xcu @@ -77,7 +77,7 @@ </node> </node> - <node oor:name="getScope" oor:op="replace"> + <node oor:name="getDomainOfValidity" oor:op="replace"> <prop oor:name="DisplayName"> <value xml:lang="en">REGION.NAME</value> <value xml:lang="fr">NOM.REGION</value> diff --git a/application/sis-openoffice/src/main/unopkg/description.txt b/application/sis-openoffice/src/main/unopkg/description.txt new file mode 100644 index 0000000..3eeebc5 --- /dev/null +++ b/application/sis-openoffice/src/main/unopkg/description.txt @@ -0,0 +1 @@ +Provide coordinate operation services as formulas inside the Calc spreadsheet. diff --git a/application/sis-openoffice/src/main/unopkg/description.xml b/application/sis-openoffice/src/main/unopkg/description.xml index 803d965..5d61053 100644 --- a/application/sis-openoffice/src/main/unopkg/description.xml +++ b/application/sis-openoffice/src/main/unopkg/description.xml @@ -28,7 +28,7 @@ <platform value="all"/> <publisher> - <name lang="en" xlink:href="http://sis.apache.org/openoffice/">Apache SIS</name> + <name lang="en" xlink:href="http://sis.apache.org/openoffice/index.html">Apache SIS</name> </publisher> <display-name> @@ -40,14 +40,26 @@ <default xlink:href="sis.png" /> </icon> + <extension-description> + <src lang="en" xlink:href="description.txt"/> + </extension-description> + + <registration> + <simple-license accept-by="admin" suppress-on-update="true" suppress-if-required="true"> + <license-text lang="en" xlink:href="license.txt"/> + </simple-license> + </registration> + + <dependencies> + <OpenOffice.org-minimal-version value="3.3" d:name="OpenOffice.org 3.3"/> + </dependencies> + <release-notes> - <src lang="en" xlink:href="http://sis.apache.org/openoffice/"/> + <src lang="en" xlink:href="http://sis.apache.org/openoffice/index.html"/> </release-notes> -<!-- <update-information> <src xlink:href="http://sis.apache.org/openoffice/update.xml"/> </update-information> ---> </description> diff --git a/application/sis-openoffice/src/main/unopkg/license.txt b/application/sis-openoffice/src/main/unopkg/license.txt new file mode 100644 index 0000000..de53cac --- /dev/null +++ b/application/sis-openoffice/src/main/unopkg/license.txt @@ -0,0 +1,13 @@ +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + +─────────────────────────────────────────────────────── + +This software may contain geodetic dataset distributed under EPSG terms of use. You may not use the EPSG Facilities or any of them in whole or in part unless you agree to these Terms of Use. You may obtain a copy of EPSG terms of use at + + http://www.epsg.org/termsofuse + +Data and information provided in the EPSG facilities are provided "as is" without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. diff --git a/core/sis-build-helper/src/main/java/org/apache/sis/internal/unopkg/UnoPkg.java b/core/sis-build-helper/src/main/java/org/apache/sis/internal/unopkg/UnoPkg.java index a0fc687..2184c78 100644 --- a/core/sis-build-helper/src/main/java/org/apache/sis/internal/unopkg/UnoPkg.java +++ b/core/sis-build-helper/src/main/java/org/apache/sis/internal/unopkg/UnoPkg.java @@ -133,6 +133,7 @@ public final class UnoPkg extends AbstractMojo implements FilenameFilter { name.endsWith(".rdb") || name.endsWith(".RDB") || name.endsWith(".xml") || name.endsWith(".XML") || name.endsWith(".xcu") || name.endsWith(".XCU") || + name.endsWith(".txt") || name.endsWith(".TXT") || name.endsWith(".png") || name.endsWith(".PNG"); }
