Skip to content

Commit

Permalink
Change required by #3569
Browse files Browse the repository at this point in the history
See metadata101/iso19115-3.2018@daabbbe

Note dos2unix was used to resolve inconsistent linefeeds, prevening some schemas files to be added.
  • Loading branch information
jodygarnett committed Sep 24, 2020
1 parent 6f73f17 commit afc2e36
Show file tree
Hide file tree
Showing 324 changed files with 179,185 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:include href="../../../WEB-INF/data/config/schema_plugins/iso19115-3.2018/convert/ISO19139/fromISO19115-3.2014.xsl"/>
</xsl:stylesheet>
5 changes: 5 additions & 0 deletions schemas/iso19115-3.2018/ISO19139-to-ISO19115-3-2018.xsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:include href="../../../WEB-INF/data/config/schema_plugins/iso19115-3.2018/convert/ISO19139/fromISO19139.xsl"/>
</xsl:stylesheet>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
500 changes: 500 additions & 0 deletions schemas/iso19115-3.2018/doc/tpl.xml

Large diffs are not rendered by default.

68 changes: 68 additions & 0 deletions schemas/iso19115-3.2018/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<parent>
<artifactId>schemas</artifactId>
<groupId>org.geonetwork-opensource</groupId>
<version>3.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>schema-iso19115-3.2018</artifactId>
<name>GeoNetwork schema plugin for ISO19115-3:2018 standard</name>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>schema-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<build>
<resources>
<resource>
<directory>src/main/config/translations</directory>
<targetPath>META-INF/catalog/locales</targetPath>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>test-jar</id>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>run-static-analysis</id>
<activation>
<property>
<name>!skipTests</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
package org.fao.geonet.schema.iso19115_3_2018;

import org.jdom.Namespace;

/**
* Created by francois on 3/26/14.
*/
public class ISO19115_3_2018Namespaces {
public static final Namespace GCO =
Namespace.getNamespace("gco",
"http://standards.iso.org/iso/19115/-3/gco/1.0");
public static final Namespace MDB =
Namespace.getNamespace("mdb",
"http://standards.iso.org/iso/19115/-3/mdb/2.0");
public static final Namespace MRI =
Namespace.getNamespace("mri",
"http://standards.iso.org/iso/19115/-3/mri/1.0");
public static final Namespace SRV =
Namespace.getNamespace("srv",
"http://standards.iso.org/iso/19115/-3/srv/2.1");
public static final Namespace GEX =
Namespace.getNamespace("gex",
"http://standards.iso.org/iso/19115/-3/gex/1.0");
public static final Namespace MRC =
Namespace.getNamespace("mrc",
"http://standards.iso.org/iso/19115/-3/mrc/2.0");
public static final Namespace MRL =
Namespace.getNamespace("mrl",
"http://standards.iso.org/iso/19115/-3/mrl/2.0");
public static final Namespace LAN =
Namespace.getNamespace("lan",
"http://standards.iso.org/iso/19115/-3/lan/1.0");
public static final Namespace GCX =
Namespace.getNamespace("gcx",
"http://standards.iso.org/iso/19115/-3/gcx/1.0");
public static final Namespace XLINK =
Namespace.getNamespace("xlink", "http://www.w3.org/1999/xlink");
}
Loading

0 comments on commit afc2e36

Please sign in to comment.