Revision: 13804
http://gate.svn.sourceforge.net/gate/?rev=13804&view=rev
Author: ian_roberts
Date: 2011-05-06 11:25:33 +0000 (Fri, 06 May 2011)
Log Message:
-----------
Merged 6.1 changelog from branch.
Modified Paths:
--------------
userguide/trunk/changes.tex
userguide/trunk/recent-changes.tex
userguide/trunk/tao_main.tex
Property Changed:
----------------
userguide/trunk/
Property changes on: userguide/trunk
___________________________________________________________________
Modified: svn:ignore
- *.aux
*.bbl
*.blg
*.css
*.gif
*.html
*.lg
*.log
*.out
*.sav
*.tmp
*.toc
*.tpt
shortc.tex
utils.tex
tao.pdf
sections.idx
big.bib
*.4ct
*.4tc
cmsy10-c-32.png
tao_main*x.png
tao_main.xref
tao_main.dvi
tao_main.idv
split*x.png
split.xref
split.dvi
split.idv
+ *.aux
*.bbl
*.blg
*.css
*.gif
*.html
*.lg
*.log
*.out
*.sav
*.tmp
*.toc
*.tpt
shortc.tex
utils.tex
tao.pdf
tao-book.pdf
sections.idx
big.bib
*.4ct
*.4tc
cmsy10-c-32.png
tao_main*x.png
tao_main.xref
tao_main.dvi
tao_main.idv
split*x.png
split.xref
split.dvi
split.idv
Modified: userguide/trunk/changes.tex
===================================================================
--- userguide/trunk/changes.tex 2011-05-06 10:50:26 UTC (rev 13803)
+++ userguide/trunk/changes.tex 2011-05-06 11:25:33 UTC (rev 13804)
@@ -19,7 +19,145 @@
%NEW CHANGES SHOULD BE ADDED IN `recent-changes.tex' NOT HERE!!!
\input{recent-changes}
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\rcSect[6.0]{Version 6.0 (November
2010)}\ifnested\label{subsec:changes:6.0b1}\else\label{sec:changes:6.0b1}\fi
+\rcSubsect{Major new features}
+
+Added an annotation tool for the document editor: the Relation Annotation
+Tool (RAT). It is designed to annotate a document with ontology instances
+and to create relations between annotations with ontology object
+properties. It is close and compatible with the Ontology Annotation Tool
+(OAT) but focus on relations between annotations. See
+section~\ref{sec:ontologies:rat} for details.
+
+Added a new \emph{scriptable controller} to the Groovy plugin, whose execution
+strategy is controlled by a simple Groovy DSL. This supports more powerful
+conditional execution than is possible with the standard conditional
+controllers (for example, based on the presence or absence of a particular
+annotation, or a combination of several document feature values), rich flow
+control using Groovy loops, etc. See
+section~\ref{sec:api:groovy:controller} for details.
+
+A new version of Alignment Editor has been added to the GATE distribution. It
+consists of several new features such as the new alignment viewer, ability to
+create alignment tasks and store in xml files, three different views to align
+the text (links view and matrix view - suitable for character, word and phrase
+alignments, parallel view - suitable for sentence or long text alignment), an
+alignment exporter and many more. See chapter \ref{chap:alignment} for more
+information.
+
+MetaMap, from the National Library of Medicine (NLM), maps biomedical text to
+the \textbf{UMLS Metathesaurus} and allows Metathesaurus concepts to be
+discovered in a text corpus. The Tagger\_MetaMap plugin for GATE wraps the
+MetaMap Java API client to allow GATE to communicate with a remote (or local)
+MetaMap PrologBeans \textbf{mmserver} and MetaMap distribution. This allows
the
+content of specified annotations (or the entire document content) to be
+processed by MetaMap and the results converted to GATE annotations and
features.
+See section~\ref{sec:misc-creole:metamap} for details.
+
+A new plugin called Web\_Translate\_Google has been added with a PR called
+Google Translator PR in it. It allows users to translate text using the
+Google translation services. See section
\ref{sec:misc-creole:google-translate}
+for more information.
+
+New Gazetteer Editor for ANNIE Gazetteer that can be used instead of
+Gaze. It uses tables instead of text area to display the gazetteer
+definition and lists, allows sorting on any column, filtering of the lists,
+reloading a list, etc. See section~\ref{sec:gazetteers:anniegazeditor}.
+
+\rcSubsect{Breaking changes}
+
+This release contains a few small changes that are not backwards-compatible:
+\begin{itemize}
+\item Changed the semantics of the ontology-aware matching mode in JAPE to take
+account of the default namespace in an ontology. Now {\tt class} feature
+values that are not complete URIs will be treated as naming classes within the
+default namespace of the target ontology only, and not (as previously) any
+class whose URI ends with the specified name. This is more consistent with the
+way OWL normally works, as well as being much more efficient to execute. See
+section~\ref{sec:ontologies:ontology-aware-jape} for more details.
+
+\item Updated the WordNet plugin to support more recent releases of WordNet
+than 1.6. The format of the configuration file has changed, if you are using
+the previous WordNet 1.6 support you will need to update your configuration.
+See section~\ref{sec:misc-creole:wn} for details.
+
+\item The deprecated Tagger\_TreeTagger plugin has been removed, applications
+that used it will need to be updated to use the Tagger\_Framework plugin
+instead. See section~\ref{sec:parsers:taggerframework} for details of how to
+do this.
+\end{itemize}
+
+\rcSubsect{Other new features and bugfixes}
+
+The concept of {\it templates} has been introduced to JAPE. This is a way to
+declare named ``variables'' in a JAPE grammar that can contain placeholders
+that are filled in when the template is referenced. See
+section~\ref{sec:jape:templates} for full details.
+
+Added a JAPE operator to get the string covered by a left-hand-side label and
+assign it to a feature of a new annotation on the right hand side (see
+section~\ref{sec:jape:metaproperties}).
+
+Added a new API to the CREOLE registry to permit plugins that live
+entirely on the classpath. {\tt CreoleRegister.registerComponent} instructs
+the registry to scan a single java Class for annotations, adding it to the
+set of registered plugins. See section~\ref{sec:api:plugins} for details.
+
+Maven artifacts for GATE are now published to the central Maven
+repository. See section~\ref{sec:gettingstarted:maven} for details.
+
+Bugfix: {\tt DocumentImpl} no longer changes its {\tt stringContent} parameter
+value whenever the document's content changes. Among other things, this means
+that saved application states will no longer contain the full text of the
+documents in their corpus, and documents containing XML or HTML tags that were
+originally created from string content (rather than a URL) can now safely be
+stored in saved application states and the GATE Developer saved session.
+
+A processing resource called Quality Assurance PR has been added in the Tools
+plugin. The PR wraps the functionality of the Quality Assurance Tool
+(section \ref{sec:eval:corpusqualityassurance}).
+
+A new section for using the Corpus Quality Assurance from GATE Embedded has
+been written. See section~\ref{sec:eval:corpusqualityassurance}.
+
+The Generic Tagger PR (in the Tagger\_Framework plugin) now allows more
+flexible specification of the input to the tagger, and is no longer limited to
+passing just the ``string'' feature from the input annotations. See
+section~\ref{sec:parsers:taggerframework} for details.
+
+Added new parameters and options to the LingPipe Language Identifier PR.
+(section~\ref{sec:misc-creole:lingpipe:langid}), and corrected the
+documentation for the LingPipe POS Tagger
+(section~\ref{sec:misc-creole:lingpipe:postagger}).
+
+In the document editor, fixed several exceptions to make editing text with
+annotations highlighted working. So you should now be able to edit the text
+and the annotations should behave correctly that is to say move, expand or
+disappear according to the text insertions and deletions.
+
+Options for document editor: read-only and insert append/prepend have been
+moved from the options dialogue to the document editor toolbar at the top
+right on the triangle icon that display a menu with the options. See
+section~\ref{sec:developer:documents}.
+
+Added new parameters and options to the Crawl PR and document features to its
+output; see section~\ref{sec:misc-creole:crawler} for details.
+
+Fixed a bug where ontology-aware JAPE rules worked correctly when the target
+annotation's class was a subclass of the class specified in the rule, but
+failed when the two class names matched exactly.
+
+Improved support for conditional pipelines containing non-LanguageAnalyser
+processing resources.
+
+Added the current {\tt Corpus} to the script binding for the Groovy Script PR,
+allowing a Groovy script to access and set corpus-level features. Also added
+callbacks that a Groovy script can implement to do additional pre- or
+post-processing before the first and after the last document in a corpus. See
+section~\ref{sec:api:groovy} for details.
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\sect[sec:changes:5.2.1]{Version 5.2.1 (May 2010)}
Modified: userguide/trunk/recent-changes.tex
===================================================================
--- userguide/trunk/recent-changes.tex 2011-05-06 10:50:26 UTC (rev 13803)
+++ userguide/trunk/recent-changes.tex 2011-05-06 11:25:33 UTC (rev 13804)
@@ -19,7 +19,57 @@
\def\rcSubsubsect#1{\subsubsect{#1}}
\fi
-\rcSectNoLabel{April 2011}
+\rcSect[6.1]{Version 6.1 (April 2011)}
+
+\rcSubsect{New CREOLE Plugins}
+
+\textbf{Tagger\_Numbers} to annotate many kinds of numbers in documents and
+determine their numeric values. The tagger can annotate numbers expressed in
+many forms including Arabic and Roman numerals, words (in English, French,
+German and Spanish) and scientific notation (4.3e6 = 4300000). See
+section~\ref{sec:misc-creole:numbers} for full details.
+
+\textbf{Tagger\_Measurements} to annotate many different forms of measurement
+expressions (``5.5 metres'', ``1 minute 30 seconds'', ``10 to 15 pounds'',
+etc.) along with their normalized values in SI units. See
+section~\ref{sec:misc-creole:measurements} for full details.
+
+\textbf{Tagger\_Boilerpipe}, which contains a
+boilerpipe\footnote{\htlinkplain{http://code.google.com/p/boilerpipe/}} based
+PR for performing content detection. See
+section~\ref{sec:misc-creole:boilerpipe} for full details.
+
+\textbf{Tagger\_DateNormalizer} to annotate and normalize dates within a
+document. See section~\ref{sec:misc-creole:datenormalizer} for full details.
+
+\textbf{Schema\_Tools} providing a ``Schema Enforcer'' PR that can be used to
+create a clean output annotation set based on a set of annotation schemas. See
+section~\ref{sec:misc-creole:schemaenforcer} for full details.
+
+\textbf{Teamware\_Tools} providing a new PR called QA Summariser for Teamware.
+When documents are annotated using GATE Teamware, this PR can be used for
+generating a summary of agreements among annotators. See
+section~\ref{sec:eval:qaForTW} for full details.
+
+\textbf{Tagger\_MetaMap} has been rewritten to make use of the new MetaMap Java
+API features. There are numerous performance enhancements and bug fixes
+detailed in section~\ref{sec:misc-creole:metamap}. Note that this version of
+the plugin is \emph{not} compatible with the version provided in GATE 6.0,
+though this earlier version is still available in the Obsolete directory if
+required.
+
+\rcSubsect{Other new features and improvements}
+
+Added support for handling controller events to JAPE by making it possible
+to define \texttt{ControllerStarted}, \texttt{ControllerFinished}, and
+\texttt{ControllerAborted} code blocks in a JAPE file (see
+section~\ref{sec:jape:javarhsoverview}).
+
+JAPE Java right-hand-side code can now access an \texttt{ActionContext} object
+through the predefined field \texttt{ctx} which allows access to the corpus LR
+and the transducer PR and their features (see
+section~\ref{sec:jape:javarhsoverview}).
+
Three new optional attributes can be specified in {\tt<GATECONFIG>}
element of {\tt gate.xml} or local configuration file:
@@ -29,244 +79,46 @@
\item \textbf{namespacePrefix} - The feature name to use that will hold the
namespace prefix of the element, e.g. "prefix"
\end{itemize}
-Setting these attributes will alter GATE's default namespace deserialization
-behaviour to remove the namespace prefix and add it as a feature, along with
the namespace URI.
-This allows namespace-prefixed elements in the \textbf{Original markups}
annotation set to be matched
-with JAPE expressions, and also allows namespace scope to be added to new
annotations
-when serialized to XML. See \ref{sec:corpora:input} for details.
+Setting these attributes will alter GATE's default namespace deserialization
+behaviour to remove the namespace prefix and add it as a feature, along with
+the namespace URI. This allows namespace-prefixed elements in the
+\textbf{Original markups} annotation set to be matched with JAPE expressions,
+and also allows namespace scope to be added to new annotations when serialized
+to XML. See \ref{sec:corpora:input} for details.
Searchable Serial Datastores (Lucene-based) are now portable and can be moved
across different systems. Also, several GUI improvements have been made to ease
-the creation of Lucene datastores. See \ref{chap:annic} for details.
+the creation of Lucene datastores. See chapter~\ref{chap:annic} for details.
-The Websphinx Crawler PR (section~\ref{sec:misc-creole:crawler}) has new
runtime
-parameters for controlling the maximum page size and spoofing the user-agent.
-
-
-\rcSectNoLabel{March 2011}
-
-A new creole repository, Teamware\_Tools, contains a new PR called QA
Summariser
-for Teamware. When documents are annotated using Teamware, this PR can be used
-for generating a summary of agreements among annotators. It does this by
pairing
-individual annotators. It also compares each individual annotator's
annotations
-with those available in the consensus annotation set in the respective
documents.
-See Section \ref{sec:eval:qaForTW} for full details.
-
-A new creole repository, Tagger\_Measurements, contains a new PR for
annotating and
-normalizing measurements within a document. See Section
\ref{sec:misc-creole:measurements}
-for full details.
-
-A new creole repository, Tagger\_DateNormalizer, contains a new PR for
annotating
-and normalizing dates within a document. See Section
\ref{sec:misc-creole:datenormalizer}
-for full details.
-
The populate method that allowed populating corpus from a trecweb file has been
made more generic to accept a tag. The method extracts content between the
start
and end of this tag to create new documents. In GATE Developer, right-clicking
on an instance of the Corpus and choosing the option ``Populate from Single
Concatenated File" allows users to populate the corpus using this
functionality.
See Section \ref{sec:api:corpora} for more details.
-\rcSectNoLabel{February 2011}
-GATE now requires Java 6 or above.
-
Fixed a regression in the JAPE parser that prevented the use of RHS macros that
refer to a LHS label (named blocks \verb|:label { ... }| and assignments
\verb|:label.Type = {}|
-A new creole repository, Tagger\_Numbers, containing a number of PRs for
annotating
-numbers with their numeric value. See Section \ref{sec:misc-creole:numbers}
for full details.
-
-A new creole repository, Tagger\_Boilerpipe, which contains a
boilerpipe\footnote{\htlinkplain{http://code.google.com/p/boilerpipe/}}
-based PR for performing content detection. See Section
\ref{sec:misc-creole:boilerpipe} for full details.
-
-The Tagger\_MetaMap plugin has been rewritten to make use of the new MetaMap
Java API features.
-There are numerous performance enhancements and a bug fix where changes to the
\verb+metaMapOptions+
-run-time parameter were previously not enacted. The previous version of the
plugin has been moved to plugins/Obsolete.
-
-Please note that the updated Tagger\_MetaMap plugin
-is not parameter-compatible with the previous version, so your application
pipelines will need to be updated.
-Specifically, the following parameters have been removed: \verb+mmServerHost
+, \verb+mmServerPort +, \verb+mmServerTimeout +, \verb+excludeSemanticTypes+,
\verb+restrictSemanticTypes+, \verb+scoreThreshold+.
-
-These can now be specified using the \texttt{--metamap\_server\_host},
-\texttt{--metamap\_server\_port}, \texttt{--metamap\_server\_timeout},
- \texttt{-k}, \texttt{-J} and \texttt{-r} options in the
-\verb+metaMapOptions+ run-time parameter string.
-
-\begin{itemize}
-\item \verb+outputASType+ has been made a run-time parameter.
-\item \verb+useNegEx+ has been renamed to \verb+annotateNegEx+
-\end{itemize}
-
-The following changes have been made to \verb+outputMode+
-\begin{itemize}
-\item \verb+MappingsOnly+ has been renamed to \verb+AllMappings+
-\item \verb+CandidatesOnly+ has been renamed to \verb+AllCandidates+
-\item \verb+CandidatesAndMappings+ has been renamed to
\verb+AllCandidatesAndMappings+
-\end{itemize}
-
-In addition, new parameters have been added. See Section
\ref{sec:misc-creole:metamap} for full details.
-
-\rcSectNoLabel{January 2011}
-
-Added a new Schema Enforcer PR that can be used to create a `clean' output
annotation set based
-on a set of annotation schemas. See Section
\ref{sec:misc-creole:schemaenforcer} for full details.
-
Enhanced the Groovy scriptable controller with some features inspired by the
realtime controller, in particular the ability to ignore exceptions thrown by
PRs and the ability to limit the running time of certain PRs. See
section~\ref{sec:api:groovy:controller} for details.
+The Ontology and Gazetteer\_LKB plugins have been upgraded to use Sesame 3.2.3
+and OWLIM 3.5.
+
+The Websphinx Crawler PR (section~\ref{sec:misc-creole:crawler}) has new
runtime
+parameters for controlling the maximum page size and spoofing the user-agent.
+
A few bug fixes and improvements to the ``recover'' logic of the
\texttt{packagegapp} Ant task (see section~\ref{sec:ant:packagegapp}).
-\rcSectNoLabel{December 2010}
+\ldots and many other smaller bugfixes.
-Added support for handling controller events to JAPE by making it possible
-to define \texttt{ControllerStarted}, \texttt{ControllerFinished}, and
-\texttt{ControllerAborted} code blocks in a JAPE file (see
-section~\ref{sec:jape:javarhsoverview}).
+\textbf{Note: As of version 6.1, GATE Developer and Embedded require Java 6 or
+later and will no longer run on Java 5}. If you require Java 5 compatibility
+you should use GATE 6.0.
-JAPE Java right-hand-side code can now access an \texttt{ActionContext} object
-through the predefined field \texttt{ctx} which allows access to the corpus LR
-and the transducer PR and their features (see
section~\ref{sec:jape:javarhsoverview}).
-
-\rcSect[6.0]{Version 6.0 (November
2010)}\ifnested\label{subsec:changes:6.0b1}\else\label{sec:changes:6.0b1}\fi
-
-\rcSubsect{Major new features}
-
-Added an annotation tool for the document editor: the Relation Annotation
-Tool (RAT). It is designed to annotate a document with ontology instances
-and to create relations between annotations with ontology object
-properties. It is close and compatible with the Ontology Annotation Tool
-(OAT) but focus on relations between annotations. See
-section~\ref{sec:ontologies:rat} for details.
-
-Added a new \emph{scriptable controller} to the Groovy plugin, whose execution
-strategy is controlled by a simple Groovy DSL. This supports more powerful
-conditional execution than is possible with the standard conditional
-controllers (for example, based on the presence or absence of a particular
-annotation, or a combination of several document feature values), rich flow
-control using Groovy loops, etc. See
-section~\ref{sec:api:groovy:controller} for details.
-
-A new version of Alignment Editor has been added to the GATE distribution. It
-consists of several new features such as the new alignment viewer, ability to
-create alignment tasks and store in xml files, three different views to align
-the text (links view and matrix view - suitable for character, word and phrase
-alignments, parallel view - suitable for sentence or long text alignment), an
-alignment exporter and many more. See chapter \ref{chap:alignment} for more
-information.
-
-MetaMap, from the National Library of Medicine (NLM), maps biomedical text to
-the \textbf{UMLS Metathesaurus} and allows Metathesaurus concepts to be
-discovered in a text corpus. The Tagger\_MetaMap plugin for GATE wraps the
-MetaMap Java API client to allow GATE to communicate with a remote (or local)
-MetaMap PrologBeans \textbf{mmserver} and MetaMap distribution. This allows
the
-content of specified annotations (or the entire document content) to be
-processed by MetaMap and the results converted to GATE annotations and
features.
-See section~\ref{sec:misc-creole:metamap} for details.
-
-A new plugin called Web\_Translate\_Google has been added with a PR called
-Google Translator PR in it. It allows users to translate text using the
-Google translation services. See section
\ref{sec:misc-creole:google-translate}
-for more information.
-
-New Gazetteer Editor for ANNIE Gazetteer that can be used instead of
-Gaze. It uses tables instead of text area to display the gazetteer
-definition and lists, allows sorting on any column, filtering of the lists,
-reloading a list, etc. See section~\ref{sec:gazetteers:anniegazeditor}.
-
-\rcSubsect{Breaking changes}
-
-This release contains a few small changes that are not backwards-compatible:
-\begin{itemize}
-\item Changed the semantics of the ontology-aware matching mode in JAPE to take
-account of the default namespace in an ontology. Now {\tt class} feature
-values that are not complete URIs will be treated as naming classes within the
-default namespace of the target ontology only, and not (as previously) any
-class whose URI ends with the specified name. This is more consistent with the
-way OWL normally works, as well as being much more efficient to execute. See
-section~\ref{sec:ontologies:ontology-aware-jape} for more details.
-
-\item Updated the WordNet plugin to support more recent releases of WordNet
-than 1.6. The format of the configuration file has changed, if you are using
-the previous WordNet 1.6 support you will need to update your configuration.
-See section~\ref{sec:misc-creole:wn} for details.
-
-\item The deprecated Tagger\_TreeTagger plugin has been removed, applications
-that used it will need to be updated to use the Tagger\_Framework plugin
-instead. See section~\ref{sec:parsers:taggerframework} for details of how to
-do this.
-\end{itemize}
-
-\rcSubsect{Other new features and bugfixes}
-
-The concept of {\it templates} has been introduced to JAPE. This is a way to
-declare named ``variables'' in a JAPE grammar that can contain placeholders
-that are filled in when the template is referenced. See
-section~\ref{sec:jape:templates} for full details.
-
-Added a JAPE operator to get the string covered by a left-hand-side label and
-assign it to a feature of a new annotation on the right hand side (see
-section~\ref{sec:jape:metaproperties}).
-
-Added a new API to the CREOLE registry to permit plugins that live
-entirely on the classpath. {\tt CreoleRegister.registerComponent} instructs
-the registry to scan a single java Class for annotations, adding it to the
-set of registered plugins. See section~\ref{sec:api:plugins} for details.
-
-Maven artifacts for GATE are now published to the central Maven
-repository. See section~\ref{sec:gettingstarted:maven} for details.
-
-Bugfix: {\tt DocumentImpl} no longer changes its {\tt stringContent} parameter
-value whenever the document's content changes. Among other things, this means
-that saved application states will no longer contain the full text of the
-documents in their corpus, and documents containing XML or HTML tags that were
-originally created from string content (rather than a URL) can now safely be
-stored in saved application states and the GATE Developer saved session.
-
-A processing resource called Quality Assurance PR has been added in the Tools
-plugin. The PR wraps the functionality of the Quality Assurance Tool
-(section \ref{sec:eval:corpusqualityassurance}).
-
-A new section for using the Corpus Quality Assurance from GATE Embedded has
-been written. See section~\ref{sec:eval:corpusqualityassurance}.
-
-The Generic Tagger PR (in the Tagger\_Framework plugin) now allows more
-flexible specification of the input to the tagger, and is no longer limited to
-passing just the ``string'' feature from the input annotations. See
-section~\ref{sec:parsers:taggerframework} for details.
-
-Added new parameters and options to the LingPipe Language Identifier PR.
-(section~\ref{sec:misc-creole:lingpipe:langid}), and corrected the
-documentation for the LingPipe POS Tagger
-(section~\ref{sec:misc-creole:lingpipe:postagger}).
-
-In the document editor, fixed several exceptions to make editing text with
-annotations highlighted working. So you should now be able to edit the text
-and the annotations should behave correctly that is to say move, expand or
-disappear according to the text insertions and deletions.
-
-Options for document editor: read-only and insert append/prepend have been
-moved from the options dialogue to the document editor toolbar at the top
-right on the triangle icon that display a menu with the options. See
-section~\ref{sec:developer:documents}.
-
-Added new parameters and options to the Crawl PR and document features to its
-output; see section~\ref{sec:misc-creole:crawler} for details.
-
-Fixed a bug where ontology-aware JAPE rules worked correctly when the target
-annotation's class was a subclass of the class specified in the rule, but
-failed when the two class names matched exactly.
-
-Improved support for conditional pipelines containing non-LanguageAnalyser
-processing resources.
-
-Added the current {\tt Corpus} to the script binding for the Groovy Script PR,
-allowing a Groovy script to access and set corpus-level features. Also added
-callbacks that a Groovy script can implement to do additional pre- or
-post-processing before the first and after the last document in a corpus. See
-section~\ref{sec:api:groovy} for details.
-
% vim:ft=tex:
Modified: userguide/trunk/tao_main.tex
===================================================================
--- userguide/trunk/tao_main.tex 2011-05-06 10:50:26 UTC (rev 13803)
+++ userguide/trunk/tao_main.tex 2011-05-06 11:25:33 UTC (rev 13804)
@@ -18,7 +18,7 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% GATE version this manual is for.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-\newcommand{\gateversion}{6.1}
+\newcommand{\gateversion}{6.2}
\newif\ifgaterelease
@@ -528,7 +528,7 @@
\ifprintedbook
\textbf{Text Processing with GATE (Version 6)}
\else
- \textbf{Developing Language Processing Components with GATE Version 6.0}
+ \textbf{Developing Language Processing Components with GATE Version 6}
\fi
\textbf{\copyright 2011 The University of Sheffield, Department of Computer
Science}
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network
management toolset available today. Delivers lowest initial
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs