This repository has been archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #94 from vivo-project/sprint-i18n
Merge sprint/i18n into main. Resolves https://jira.lyrasis.org/browse/VIVO-1958 in conjunction with: vivo-project/Vitro-languages#43 vivo-project/VIVO#215 vivo-project/Vitro#209
- Loading branch information
Showing
166 changed files
with
33,609 additions
and
1,148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ utilities/rdbmigration/.work | |
**/.idea | ||
**/*.iml | ||
**/target | ||
*~ | ||
|
||
**/overlays | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
<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"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>org.vivoweb</groupId> | ||
<artifactId>vivo-languages-home-core</artifactId> | ||
<version>1.11.2-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
|
||
<parent> | ||
<groupId>org.vivoweb</groupId> | ||
<artifactId>vivo-languages-core</artifactId> | ||
<version>1.11.2-SNAPSHOT</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
|
||
<name>VIVO Languages for Home CORE</name> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.vivoweb</groupId> | ||
<artifactId>vivo-languages-home-en_US</artifactId> | ||
<version>${project.version}</version> | ||
<type>tar.gz</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.vivoweb</groupId> | ||
<artifactId>vivo-languages-home-de_DE</artifactId> | ||
<version>${project.version}</version> | ||
<type>tar.gz</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.vivoweb</groupId> | ||
<artifactId>vivo-languages-home-es</artifactId> | ||
<version>${project.version}</version> | ||
<type>tar.gz</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.vivoweb</groupId> | ||
<artifactId>vivo-languages-home-fr_CA</artifactId> | ||
<version>${project.version}</version> | ||
<type>tar.gz</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.vivoweb</groupId> | ||
<artifactId>vivo-languages-home-pt_BR</artifactId> | ||
<version>${project.version}</version> | ||
<type>tar.gz</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.vivoweb</groupId> | ||
<artifactId>vivo-languages-home-en_CA</artifactId> | ||
<version>${project.version}</version> | ||
<type>tar.gz</type> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<configuration> | ||
<tarLongFileMode>posix</tarLongFileMode> | ||
<descriptors> | ||
<descriptor>src/main/assembly/home.xml</descriptor> | ||
</descriptors> | ||
<appendAssemblyId>false</appendAssemblyId> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>build-helper-maven-plugin</artifactId> | ||
<extensions>true</extensions> | ||
<executions> | ||
<execution> | ||
<id>attach-artifacts</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>attach-artifact</goal> | ||
</goals> | ||
<configuration> | ||
<artifacts> | ||
<artifact> | ||
<file>target/${project.artifactId}-${project.version}.tar.gz</file> | ||
<type>tar.gz</type> | ||
<!-- classifier>optional</classifier --> | ||
</artifact> | ||
</artifacts> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
This directory contains "ABox" files with with RDF assertions about named individuals to be loaded by the VIVO application when it starts. There is a companion "tbox" directory that contains ontology class and property definitions. | ||
|
||
The TBox and ABox are separated because VIVO caches ontology classes and properties in memory for improved performance. The contents of this directory will not be added to the cache. | ||
|
||
Each file in this directory corresponds to a single graph in the VIVO graph store. For example, the contents of a file in this directory named example.owl would be loaded into graph named: | ||
|
||
http://vitro.mannlib.cornell.edu/filegraph/abox/example.owl | ||
|
||
At next startup, this graph will be checked against the contents of the file in the directory. If the two are not isomorphic, the graph in the store will be cleared and reloaded to match the current contents of the file. If the file no longer exists in the directory, the graph will be dropped entirely. | ||
|
||
If a file contains any syntax errors, it will not be able to be parsed and its corresponding graph will not be updated at all. The parse error will be logged in vivo.all.log. | ||
|
||
The following file formats are supported: | ||
|
||
RDF/XML (.rdf or .owl) | ||
N3 (.n3) | ||
Turtle (.ttl) | ||
N-triples (.nt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
This directory contains ontology "TBox" files with class and property definitions to be loaded by the VIVO application when it starts. There is a companion "abox" directory that contains RDF assertions about named individuals. | ||
|
||
The TBox and ABox are separated because VIVO caches ontology classes and properties in memory for improved performance. The contents of TBox directory will be added to this cache, while the ABox data will not. | ||
|
||
Each file in this directory corresponds to a single graph in the VIVO graph store. For example, the contents of a file in this directory named example.owl would be loaded into graph named: | ||
|
||
http://vitro.mannlib.cornell.edu/filegraph/tbox/example.owl | ||
|
||
At next startup, this graph will be checked against the contents of the file in the directory. If the two are not isomorphic, the graph in the store will be cleared and reloaded to match the current contents of the file. If the file no longer exists in the directory, the graph will be dropped entirely. | ||
|
||
If a file contains any syntax errors, it will not be able to be parsed and its corresponding graph will not be updated at all. The parse error will be logged in vivo.all.log. | ||
|
||
The following file formats are supported: | ||
|
||
* RDF/XML (.rdf or .owl) | ||
* N3 (.n3) | ||
* Turtle (.ttl) | ||
* N-triples (.nt) | ||
|
||
The file ontologies.owl is required and lists the ontologies that will appear in the VIVO | ||
ontology list. Labels and prefixes for these ontologies can be found in | ||
tbox/firsttime/vitroAnnotations.n3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
This directory contains ontology "TBox" files with class and property definitions. | ||
These are loaded by the VIVO application when it starts for the first time, after | ||
the initial installation or after an upgrade installation that involves changes | ||
to these files. | ||
|
||
See ../filegraph/README.md for more information about "TBox" files. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,233 @@ | ||
<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"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>org.vivoweb</groupId> | ||
<artifactId>vivo-languages-core</artifactId> | ||
<version>1.11.2-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<parent> | ||
<groupId>org.vivoweb</groupId> | ||
<artifactId>vivo-languages</artifactId> | ||
<version>1.11.2-SNAPSHOT</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
<name>VIVO Languages CORE</name> | ||
<description>VIVO Languages</description> | ||
<url>http://vivoweb.org/</url> | ||
|
||
<licenses> | ||
<license> | ||
<name>BSD 3-Clause License</name> | ||
<url>https://raw.github.com/vivo-project/VIVO/develop/LICENSE</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Graham Triggs</name> | ||
<email>[email protected]</email> | ||
<organization>DuraSpace</organization> | ||
<organizationUrl>http://vivoweb.org/</organizationUrl> | ||
</developer> | ||
<developer> | ||
<name>Jim Blake</name> | ||
<email>[email protected]</email> | ||
<organization>Cornell University Library</organization> | ||
<organizationUrl>https://github.com/j2blake</organizationUrl> | ||
</developer> | ||
<developer> | ||
<name>John Fereira</name> | ||
<email>[email protected]</email> | ||
<organization>Cornell University</organization> | ||
<organizationUrl>https://github.com/fereira</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<!-- | ||
The SCM repository location is used by Continuum to update against | ||
when changes have occurred. This spawns a new build cycle and releases | ||
snapshots into the snapshot repository below. | ||
--> | ||
<scm> | ||
<connection>scm:git:[email protected]:vivo-project/VIVO-languages.git</connection> | ||
<developerConnection>scm:git:[email protected]:vivo-project/VIVO-languages.git</developerConnection> | ||
<url>[email protected]:vivo-project/VIVO-languages.git</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<properties> | ||
<vitro-version>${project.version}</vitro-version> | ||
<vivo-dir>${basedir}</vivo-dir> | ||
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format> | ||
<build.timestamp>${maven.build.timestamp}</build.timestamp> | ||
<maven-site-plugin.skip>false</maven-site-plugin.skip> | ||
<stagingBase>/</stagingBase> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
<modules> | ||
<module>home</module> | ||
<module>webapp</module> | ||
</modules> | ||
|
||
<profiles> | ||
<profile> | ||
<id>release-sign-artifacts</id> | ||
<activation> | ||
<property> | ||
<name>performRelease</name> | ||
<value>true</value> | ||
</property> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<!-- plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<quiet>true</quiet> | ||
<additionalparam>${javadoc.opts}</additionalparam> | ||
</configuration> | ||
</plugin --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar-no-fork</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>ossrh</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>true</autoReleaseAfterClose> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>buildnumber-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<phase>validate</phase> | ||
<goals> | ||
<goal>create</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<doCheck>false</doCheck> | ||
<doUpdate>false</doUpdate> | ||
<shortRevisionLength>7</shortRevisionLength> | ||
<revisionOnScmFailure>Detached</revisionOnScmFailure> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>3.1.1</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-clean-plugin</artifactId> | ||
<version>3.1.0</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>3.1.2</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>1.6</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>3.1.0</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-war-plugin</artifactId> | ||
<version>3.2.3</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>build-helper-maven-plugin</artifactId> | ||
<version>3.0.0</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>buildnumber-maven-plugin</artifactId> | ||
<version>1.4</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.8</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
|
||
<distributionManagement> | ||
<site> | ||
<id>vivo-project</id> | ||
<url>https://vivo-project.github.io/</url> | ||
</site> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
</project> |
0
update-versions.sh → core/update-versions.sh
100755 → 100644
File renamed without changes.
0
vivo-rc-script-languages.sh → core/vivo-rc-script-languages.sh
100755 → 100644
File renamed without changes.
Oops, something went wrong.