Revision: 16016
          http://gate.svn.sourceforge.net/gate/?rev=16016&view=rev
Author:   markagreenwood
Date:     2012-08-15 18:00:43 +0000 (Wed, 15 Aug 2012)
Log Message:
-----------
documented the features created by the date normalizer

Modified Paths:
--------------
    userguide/trunk/misc-creole.tex

Modified: userguide/trunk/misc-creole.tex
===================================================================
--- userguide/trunk/misc-creole.tex     2012-08-15 15:41:34 UTC (rev 16015)
+++ userguide/trunk/misc-creole.tex     2012-08-15 18:00:43 UTC (rev 16016)
@@ -858,6 +858,22 @@
 uses ANNIE Dates to add new DocumentDate annotations and to delete other
 Date annotations can be a useful step before running this PR.
 
+The annotations created by this PR have the following features:
+
+\begin{itemize}
+\item \textbf{normalize:} the normalized date in the format specified through 
the
+relevant runtime parameters of the PR.
+\item \textbf{inferred:} an integer which specifies which specifes which parts 
of the
+date had to be inferred. The value is actually a bit mask created from the 
following
+flagd: day = 1, month = 2, and year = 4. You can find which (if any) flags are 
set
+by using the code \texttt{(inferred \& FLAG) == FLAG}, i.e. to see if the day 
of the month
+had to be inferred you would do \texttt{(inferred \& 1) == 1}.
+\item \textbf{complete:} if no part of the date had to be inferred (i.e. 
inferred = 0) then
+this will be true, false otherwise.
+\item \textbf{relative:} can take the values past, present or future to show 
how this
+specific date relates to the document date.
+\end{itemize}
+
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 \sect[sec:parsers:stemmer]{Snowball Based Stemmers}
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
GATE-cvs mailing list
GATE-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to