Revision: 19829
http://sourceforge.net/p/gate/code/19829
Author: markagreenwood
Date: 2016-11-28 09:39:04 +0000 (Mon, 28 Nov 2016)
Log Message:
-----------
mavenized but needs updating as creole metadata is still in creole.xml which
goes agsint current philosophy and openminted requirements
Modified Paths:
--------------
gate/branches/sawdust2/plugins/Alignment/.classpath
gate/branches/sawdust2/plugins/Alignment/.project
Added Paths:
-----------
gate/branches/sawdust2/plugins/Alignment/src/main/
gate/branches/sawdust2/plugins/Alignment/src/main/java/
gate/branches/sawdust2/plugins/Alignment/src/main/java/gate/
gate/branches/sawdust2/plugins/Alignment/src/main/resources/
gate/branches/sawdust2/plugins/Alignment/src/main/resources/creole.xml
gate/branches/sawdust2/plugins/Alignment/src/main/resources/resources/
Removed Paths:
-------------
gate/branches/sawdust2/plugins/Alignment/build.xml
gate/branches/sawdust2/plugins/Alignment/creole.xml
gate/branches/sawdust2/plugins/Alignment/doc/
gate/branches/sawdust2/plugins/Alignment/resources/
gate/branches/sawdust2/plugins/Alignment/src/gate/
Property Changed:
----------------
gate/branches/sawdust2/plugins/Alignment/
Index: gate/branches/sawdust2/plugins/Alignment
===================================================================
--- gate/branches/sawdust2/plugins/Alignment 2016-11-28 09:09:41 UTC (rev
19828)
+++ gate/branches/sawdust2/plugins/Alignment 2016-11-28 09:39:04 UTC (rev
19829)
Property changes on: gate/branches/sawdust2/plugins/Alignment
___________________________________________________________________
Modified: svn:ignore
## -1,3 +1,2 ##
-classes
-aligntools.jar
+target
.settings
Modified: gate/branches/sawdust2/plugins/Alignment/.classpath
===================================================================
--- gate/branches/sawdust2/plugins/Alignment/.classpath 2016-11-28 09:09:41 UTC
(rev 19828)
+++ gate/branches/sawdust2/plugins/Alignment/.classpath 2016-11-28 09:39:04 UTC
(rev 19829)
@@ -1,7 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="src"/>
- <classpathentry kind="con"
path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
- <classpathentry combineaccessrules="false" exported="true" kind="src"
path="/GATE"/>
- <classpathentry kind="output" path="classes"/>
+ <classpathentry kind="src" output="target/classes" path="src/main/java">
+ <attributes>
+ <attribute name="optional" value="true"/>
+ <attribute name="maven.pomderived" value="true"/>
+ </attributes>
+ </classpathentry>
+ <classpathentry excluding="**" kind="src" output="target/classes"
path="src/main/resources">
+ <attributes>
+ <attribute name="maven.pomderived" value="true"/>
+ </attributes>
+ </classpathentry>
+ <classpathentry kind="src" output="target/test-classes"
path="src/test/java">
+ <attributes>
+ <attribute name="optional" value="true"/>
+ <attribute name="maven.pomderived" value="true"/>
+ </attributes>
+ </classpathentry>
+ <classpathentry kind="con"
path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
+ <attributes>
+ <attribute name="maven.pomderived" value="true"/>
+ </attributes>
+ </classpathentry>
+ <classpathentry kind="con"
path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
+ <attributes>
+ <attribute name="maven.pomderived" value="true"/>
+ </attributes>
+ </classpathentry>
+ <classpathentry kind="output" path="target/classes"/>
</classpath>
Modified: gate/branches/sawdust2/plugins/Alignment/.project
===================================================================
--- gate/branches/sawdust2/plugins/Alignment/.project 2016-11-28 09:09:41 UTC
(rev 19828)
+++ gate/branches/sawdust2/plugins/Alignment/.project 2016-11-28 09:39:04 UTC
(rev 19829)
@@ -10,8 +10,14 @@
<arguments>
</arguments>
</buildCommand>
+ <buildCommand>
+ <name>org.eclipse.m2e.core.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
Deleted: gate/branches/sawdust2/plugins/Alignment/build.xml
===================================================================
--- gate/branches/sawdust2/plugins/Alignment/build.xml 2016-11-28 09:09:41 UTC
(rev 19828)
+++ gate/branches/sawdust2/plugins/Alignment/build.xml 2016-11-28 09:39:04 UTC
(rev 19829)
@@ -1,86 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<project basedir="." default="build" name="aligntools">
- <!-- Prevent Ant from warning about includeantruntime not being set -->
- <property name="build.sysclasspath" value="ignore" />
-
- <property name="jdk.home" value="${JAVA_HOME}"/>
- <property name="dest" value="classes"/>
- <property name="gatehome" value="../.."/>
- <property name="src" value="src"/>
- <property name="doc.dir" location="doc" />
- <property name="javadoc.dir" location="${doc.dir}/javadoc" />
- <property name="gate.compile.maxwarnings" value="10000" />
-
- <fileset id="gatelib.classpath" dir="${gatehome}/lib">
- <include name="*.jar"/>
- <include name="*.zip"/>
- </fileset>
-
- <fileset id="gate.classpath" dir="${gatehome}/bin">
- <include name="*.jar"/>
- <include name="*.zip"/>
- </fileset>
-
- <path id="compile.classpath">
- <fileset refid="gatelib.classpath"/>
- <fileset refid="gate.classpath"/>
- </path>
-
- <target name="jar" depends="compile">
- <jar compress="false" destfile="aligntools.jar">
- <fileset dir="${dest}"/>
- </jar>
- </target>
-
-
- <target name="compile" depends="init">
- <javac classpathref="compile.classpath" source="1.7"
target="1.7"
- debug="true" deprecation="true" destdir="${dest}"
- nowarn="false" encoding="UTF-8">
- <src path="${src}"/>
- <compilerarg value="-Xmaxwarns" />
- <compilerarg value="${gate.compile.maxwarnings}" />
- <compilerarg value="-Xlint:all" />
- </javac>
- </target>
-
- <!-- Build JavaDoc documentation -->
- <target name="doc.prepare">
- <mkdir dir="${javadoc.dir}" />
- </target>
-
- <target name="javadoc" depends="doc.prepare">
- <javadoc destdir="${javadoc.dir}" packagenames="*"
- classpathref="compile.classpath"
- encoding="UTF-8"
- windowtitle="${plugin.name} JavaDoc"
- source="1.7">
- <sourcepath>
- <pathelement location="${src}" />
- </sourcepath>
- <link href="http://docs.oracle.com/javase/7/docs/api/"
/>
- <link href="http://gate.ac.uk/gate/doc/javadoc/" />
- </javadoc>
- </target>
-
- <target name="clean.classes">
- <delete failonerror="false" includeemptydirs="true">
- <fileset dir="${dest}"/>
- </delete>
- </target>
-
- <target name="clean" depends="clean.classes">
- <delete file="aligntools.jar"/>
- </target>
-
- <target name="init">
- <mkdir dir="${dest}"/>
- </target>
-
- <!-- targets required by the top-level build file -->
- <target name="build" depends="jar"/>
- <target name="distro.prepare" depends="clean.classes" />
- <target name="test" />
-
-</project>
Deleted: gate/branches/sawdust2/plugins/Alignment/creole.xml
===================================================================
--- gate/branches/sawdust2/plugins/Alignment/creole.xml 2016-11-28 09:09:41 UTC
(rev 19828)
+++ gate/branches/sawdust2/plugins/Alignment/creole.xml 2016-11-28 09:39:04 UTC
(rev 19829)
@@ -1,126 +0,0 @@
-<?xml version="1.0"?>
-<CREOLE-DIRECTORY>
-
- <JAR scan="true">aligntools.jar</JAR>
-
- <CREOLE>
- <RESOURCE>
- <NAME>Compound Document</NAME>
- <CLASS>gate.compound.impl.CompoundDocumentImpl</CLASS>
- <JAR>aligntools.jar</JAR>
- <INTERFACE>gate.compound.CompoundDocument</INTERFACE>
- <COMMENT>GATE Compound Document.</COMMENT>
-
<HELPURL>http://gate.ac.uk/userguide/sec:alignment:compounddocument</HELPURL>
- <PARAMETER NAME="sourceUrl"
-
SUFFIXES="txt;text;xml;xhtm;xhtml;html;htm;sgml;sgm;mail;email;eml;rtf;pdf;doc"
- COMMENT="Source URL" OPTIONAL="true">java.net.URL</PARAMETER>
- <PARAMETER COMMENT="Should the document read the original markup"
- NAME="markupAware" DEFAULT="true">java.lang.Boolean</PARAMETER>
- <PARAMETER NAME="encoding" OPTIONAL="false" COMMENT="Encoding"
DEFAULT="UTF-8">
- java.lang.String</PARAMETER>
- <PARAMETER NAME="preserveOriginalContent"
- COMMENT="Should the document preserve the original content"
- DEFAULT="false">java.lang.Boolean</PARAMETER>
- <PARAMETER NAME="collectRepositioningInfo"
- COMMENT="Should the document collect repositioning information"
- DEFAULT="false">java.lang.Boolean</PARAMETER>
- <PARAMETER COMMENT="Languages"
- NAME="documentIDs" OPTIONAL="true">java.util.ArrayList</PARAMETER>
- <ICON>lr.gif</ICON>
- </RESOURCE>
-
- <RESOURCE>
- <NAME>Compound Document From Xml</NAME>
- <CLASS>gate.compound.impl.CompoundDocumentFromXml</CLASS>
- <JAR>aligntools.jar</JAR>
- <INTERFACE>gate.compound.CompoundDocument</INTERFACE>
- <COMMENT>GATE Compound Document.</COMMENT>
-
<HELPURL>http://gate.ac.uk/userguide/sec:alignment:compounddocument</HELPURL>
- <PARAMETER NAME="compoundDocumentUrl"
- SUFFIXES="xml"
- COMMENT="Source URL">java.net.URL</PARAMETER>
- <PARAMETER NAME="encoding" OPTIONAL="false" COMMENT="Encoding"
DEFAULT="UTF-8">
- java.lang.String</PARAMETER>
- <ICON>lr.gif</ICON>
- </RESOURCE>
-
- <RESOURCE>
- <NAME>Compound Document Editor</NAME>
- <JAR>aligntools.jar</JAR>
- <CLASS>gate.compound.gui.CompoundDocumentEditor</CLASS>
- <COMMENT>Editor for compound documents.</COMMENT>
-
<HELPURL>http://gate.ac.uk/userguide/sec:alignment:compounddoceditor</HELPURL>
- <GUI TYPE="large">
- <MAIN_VIEWER/>
- <RESOURCE_DISPLAYED>gate.compound.CompoundDocument</RESOURCE_DISPLAYED>
- </GUI>
- </RESOURCE>
-
- <RESOURCE>
- <NAME>GATE Composite document</NAME>
- <CLASS>gate.composite.impl.CompositeDocumentImpl</CLASS>
- <INTERFACE>gate.Document</INTERFACE>
- <COMMENT>GATE Composite document.</COMMENT>
- <HELPURL>http://gate.ac.uk/userguide/sec:alignment:compositedoc</HELPURL>
- <ICON>document</ICON>
- <PRIVATE/>
- </RESOURCE>
-
- <RESOURCE>
- <NAME>Switch Member PR</NAME>
- <CLASS>gate.compound.impl.SwitchMemberPR</CLASS>
- <COMMENT>Sets the focus of a compound document to a specified member
document.</COMMENT>
-
<HELPURL>http://gate.ac.uk/userguide/sec:alignment:switchmembers</HELPURL>
- <JAR>aligntools.jar</JAR>
- <PARAMETER NAME="document"
- COMMENT="The document to be processed"
- RUNTIME="true">gate.Document</PARAMETER>
- <PARAMETER NAME="documentID" RUNTIME="true">java.lang.String</PARAMETER>
- <ICON>pr.gif</ICON>
- </RESOURCE>
-
- <RESOURCE>
- <NAME>Delete Member PR</NAME>
- <CLASS>gate.compound.impl.DeleteMemberPR</CLASS>
- <COMMENT>Deletes one member document from a compound doc.</COMMENT>
-
<HELPURL>http://gate.ac.uk/userguide/sec:alignment:deletemembers</HELPURL>
- <JAR>aligntools.jar</JAR>
- <PARAMETER NAME="document"
- COMMENT="The document to be processed"
- RUNTIME="true">gate.Document</PARAMETER>
- <PARAMETER NAME="documentID" RUNTIME="true">java.lang.String</PARAMETER>
- <ICON>pr.gif</ICON>
- </RESOURCE>
-
- <RESOURCE>
- <NAME>Combine Members PR</NAME>
- <CLASS>gate.composite.impl.CombineMembersPR</CLASS>
- <COMMENT>Combines documents in a composite document.</COMMENT>
- <HELPURL>http://gate.ac.uk/userguide/sec:alignment:compositedoc</HELPURL>
- <JAR>aligntools.jar</JAR>
- <PARAMETER NAME="document"
- COMMENT="The document to be processed"
- RUNTIME="true">gate.Document</PARAMETER>
- <PARAMETER NAME="combiningMethod" RUNTIME="false"
DEFAULT="gate.composite.impl.DefaultCombiningMethod">java.lang.String</PARAMETER>
- <PARAMETER NAME="parameters" RUNTIME="true"
DEFAULT="unitAnnotationType=Sentence;inputASName=;copyUnderlyingAnnotations=true;">java.lang.String</PARAMETER>
- <ICON>pr.gif</ICON>
- </RESOURCE>
-
- <RESOURCE>
- <NAME>Segment Processing PR</NAME>
- <CLASS>gate.composite.impl.SegmentProcessingPR</CLASS>
- <COMMENT>Processes individual segments as separate documents</COMMENT>
-
<HELPURL>http://gate.ac.uk/userguide/sec:alignment:segment-processing</HELPURL>
- <JAR>aligntools.jar</JAR>
- <PARAMETER NAME="document"
- COMMENT="The document to be processed"
- RUNTIME="true">gate.Document</PARAMETER>
- <PARAMETER NAME="segmentAnnotationType" RUNTIME="true"
DEFAULT="Section">java.lang.String</PARAMETER>
- <PARAMETER NAME="segmentAnnotationFeatureName" RUNTIME="true"
OPTIONAL="true">java.lang.String</PARAMETER>
- <PARAMETER NAME="segmentAnnotationFeatureValue" RUNTIME="true"
OPTIONAL="true">java.lang.String</PARAMETER>
- <PARAMETER NAME="inputASName" RUNTIME="true"
OPTIONAL="true">java.lang.String</PARAMETER>
- <PARAMETER NAME="analyser"
RUNTIME="true">gate.LanguageAnalyser</PARAMETER>
- <ICON>pr.gif</ICON>
- </RESOURCE>
- </CREOLE>
-</CREOLE-DIRECTORY>
Copied: gate/branches/sawdust2/plugins/Alignment/src/main/resources/creole.xml
(from rev 19828, gate/branches/sawdust2/plugins/Alignment/creole.xml)
===================================================================
--- gate/branches/sawdust2/plugins/Alignment/src/main/resources/creole.xml
(rev 0)
+++ gate/branches/sawdust2/plugins/Alignment/src/main/resources/creole.xml
2016-11-28 09:39:04 UTC (rev 19829)
@@ -0,0 +1,117 @@
+<?xml version="1.0"?>
+<CREOLE-DIRECTORY>
+
+ <CREOLE>
+ <RESOURCE>
+ <NAME>Compound Document</NAME>
+ <CLASS>gate.compound.impl.CompoundDocumentImpl</CLASS>
+ <INTERFACE>gate.compound.CompoundDocument</INTERFACE>
+ <COMMENT>GATE Compound Document.</COMMENT>
+
<HELPURL>http://gate.ac.uk/userguide/sec:alignment:compounddocument</HELPURL>
+ <PARAMETER NAME="sourceUrl"
+
SUFFIXES="txt;text;xml;xhtm;xhtml;html;htm;sgml;sgm;mail;email;eml;rtf;pdf;doc"
+ COMMENT="Source URL" OPTIONAL="true">java.net.URL</PARAMETER>
+ <PARAMETER COMMENT="Should the document read the original markup"
+ NAME="markupAware" DEFAULT="true">java.lang.Boolean</PARAMETER>
+ <PARAMETER NAME="encoding" OPTIONAL="false" COMMENT="Encoding"
DEFAULT="UTF-8">
+ java.lang.String</PARAMETER>
+ <PARAMETER NAME="preserveOriginalContent"
+ COMMENT="Should the document preserve the original content"
+ DEFAULT="false">java.lang.Boolean</PARAMETER>
+ <PARAMETER NAME="collectRepositioningInfo"
+ COMMENT="Should the document collect repositioning information"
+ DEFAULT="false">java.lang.Boolean</PARAMETER>
+ <PARAMETER COMMENT="Languages"
+ NAME="documentIDs" OPTIONAL="true">java.util.ArrayList</PARAMETER>
+ <ICON>lr.gif</ICON>
+ </RESOURCE>
+
+ <RESOURCE>
+ <NAME>Compound Document From Xml</NAME>
+ <CLASS>gate.compound.impl.CompoundDocumentFromXml</CLASS>
+ <INTERFACE>gate.compound.CompoundDocument</INTERFACE>
+ <COMMENT>GATE Compound Document.</COMMENT>
+
<HELPURL>http://gate.ac.uk/userguide/sec:alignment:compounddocument</HELPURL>
+ <PARAMETER NAME="compoundDocumentUrl"
+ SUFFIXES="xml"
+ COMMENT="Source URL">java.net.URL</PARAMETER>
+ <PARAMETER NAME="encoding" OPTIONAL="false" COMMENT="Encoding"
DEFAULT="UTF-8">
+ java.lang.String</PARAMETER>
+ <ICON>lr.gif</ICON>
+ </RESOURCE>
+
+ <RESOURCE>
+ <NAME>Compound Document Editor</NAME>
+ <CLASS>gate.compound.gui.CompoundDocumentEditor</CLASS>
+ <COMMENT>Editor for compound documents.</COMMENT>
+
<HELPURL>http://gate.ac.uk/userguide/sec:alignment:compounddoceditor</HELPURL>
+ <GUI TYPE="large">
+ <MAIN_VIEWER/>
+ <RESOURCE_DISPLAYED>gate.compound.CompoundDocument</RESOURCE_DISPLAYED>
+ </GUI>
+ </RESOURCE>
+
+ <RESOURCE>
+ <NAME>GATE Composite document</NAME>
+ <CLASS>gate.composite.impl.CompositeDocumentImpl</CLASS>
+ <INTERFACE>gate.Document</INTERFACE>
+ <COMMENT>GATE Composite document.</COMMENT>
+ <HELPURL>http://gate.ac.uk/userguide/sec:alignment:compositedoc</HELPURL>
+ <ICON>document</ICON>
+ <PRIVATE/>
+ </RESOURCE>
+
+ <RESOURCE>
+ <NAME>Switch Member PR</NAME>
+ <CLASS>gate.compound.impl.SwitchMemberPR</CLASS>
+ <COMMENT>Sets the focus of a compound document to a specified member
document.</COMMENT>
+
<HELPURL>http://gate.ac.uk/userguide/sec:alignment:switchmembers</HELPURL>
+ <PARAMETER NAME="document"
+ COMMENT="The document to be processed"
+ RUNTIME="true">gate.Document</PARAMETER>
+ <PARAMETER NAME="documentID" RUNTIME="true">java.lang.String</PARAMETER>
+ <ICON>pr.gif</ICON>
+ </RESOURCE>
+
+ <RESOURCE>
+ <NAME>Delete Member PR</NAME>
+ <CLASS>gate.compound.impl.DeleteMemberPR</CLASS>
+ <COMMENT>Deletes one member document from a compound doc.</COMMENT>
+
<HELPURL>http://gate.ac.uk/userguide/sec:alignment:deletemembers</HELPURL>
+ <PARAMETER NAME="document"
+ COMMENT="The document to be processed"
+ RUNTIME="true">gate.Document</PARAMETER>
+ <PARAMETER NAME="documentID" RUNTIME="true">java.lang.String</PARAMETER>
+ <ICON>pr.gif</ICON>
+ </RESOURCE>
+
+ <RESOURCE>
+ <NAME>Combine Members PR</NAME>
+ <CLASS>gate.composite.impl.CombineMembersPR</CLASS>
+ <COMMENT>Combines documents in a composite document.</COMMENT>
+ <HELPURL>http://gate.ac.uk/userguide/sec:alignment:compositedoc</HELPURL>
+ <PARAMETER NAME="document"
+ COMMENT="The document to be processed"
+ RUNTIME="true">gate.Document</PARAMETER>
+ <PARAMETER NAME="combiningMethod" RUNTIME="false"
DEFAULT="gate.composite.impl.DefaultCombiningMethod">java.lang.String</PARAMETER>
+ <PARAMETER NAME="parameters" RUNTIME="true"
DEFAULT="unitAnnotationType=Sentence;inputASName=;copyUnderlyingAnnotations=true;">java.lang.String</PARAMETER>
+ <ICON>pr.gif</ICON>
+ </RESOURCE>
+
+ <RESOURCE>
+ <NAME>Segment Processing PR</NAME>
+ <CLASS>gate.composite.impl.SegmentProcessingPR</CLASS>
+ <COMMENT>Processes individual segments as separate documents</COMMENT>
+
<HELPURL>http://gate.ac.uk/userguide/sec:alignment:segment-processing</HELPURL>
+ <PARAMETER NAME="document"
+ COMMENT="The document to be processed"
+ RUNTIME="true">gate.Document</PARAMETER>
+ <PARAMETER NAME="segmentAnnotationType" RUNTIME="true"
DEFAULT="Section">java.lang.String</PARAMETER>
+ <PARAMETER NAME="segmentAnnotationFeatureName" RUNTIME="true"
OPTIONAL="true">java.lang.String</PARAMETER>
+ <PARAMETER NAME="segmentAnnotationFeatureValue" RUNTIME="true"
OPTIONAL="true">java.lang.String</PARAMETER>
+ <PARAMETER NAME="inputASName" RUNTIME="true"
OPTIONAL="true">java.lang.String</PARAMETER>
+ <PARAMETER NAME="analyser"
RUNTIME="true">gate.LanguageAnalyser</PARAMETER>
+ <ICON>pr.gif</ICON>
+ </RESOURCE>
+ </CREOLE>
+</CREOLE-DIRECTORY>
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs