Revision: 16515
          http://sourceforge.net/p/gate/code/16515
Author:   adamfunk
Date:     2013-02-08 12:11:38 +0000 (Fri, 08 Feb 2013)
Log Message:
-----------
Adding Format_Twitter to plugins to build and the eclipse config;
suppressin debugging output.

Modified Paths:
--------------
    gate/trunk/.classpath
    gate/trunk/build.xml
    gate/trunk/plugins/Format_Twitter/src/gate/corpora/JSONTweetFormat.java

Modified: gate/trunk/.classpath
===================================================================
--- gate/trunk/.classpath       2013-02-08 11:56:19 UTC (rev 16514)
+++ gate/trunk/.classpath       2013-02-08 12:11:38 UTC (rev 16515)
@@ -32,6 +32,7 @@
        <classpathentry kind="src" path="plugins/Language_Identification/src"/>
        <classpathentry kind="src" output="plugins/Tagger_Numbers/classes" 
path="plugins/Tagger_Numbers/src"/>
        <classpathentry kind="src" output="plugins/TermRaider/classes" 
path="plugins/TermRaider/src"/>
+       <classpathentry kind="src" output="plugins/Format_Twitter/classes" 
path="plugins/Format_Twitter/src"/>
        <classpathentry kind="lib" 
path="plugins/Gazetteer_Ontology_Based/lib/oro-2.0.8.jar"/>
        <classpathentry kind="lib" path="plugins/WordNet/lib/jwnl.jar"/>
        <classpathentry kind="lib" 
path="plugins/LingPipe/lib/lingpipe-4.0.1.jar"/>
@@ -40,6 +41,9 @@
        <classpathentry kind="lib" 
path="plugins/Ontology/lib/slf4j-api-1.5.6.jar"/>
        <classpathentry kind="lib" 
path="plugins/Ontology/lib/slf4j-jdk14-1.5.6.jar"/>
        <classpathentry kind="lib" 
path="plugins/OpenNLP/lib/opennlp-tools-1.5.2-incubating.jar"/>
+       <classpathentry kind="lib" 
path="plugins/Format_Twitter/lib/jackson-annotations-2.1.1.jar"/>
+       <classpathentry kind="lib" 
path="plugins/Format_Twitter/lib/jackson-core-2.1.1.jar"/>
+       <classpathentry kind="lib" 
path="plugins/Format_Twitter/lib/jackson-databind-2.1.1.jar"/>
        <classpathentry kind="con" 
path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
        <classpathentry kind="lib" path="plugins/Learning/lib/weka.jar"/>
        <classpathentry kind="lib" 
path="plugins/Web_Crawler_Websphinx/lib/websphinx.jar"/>

Modified: gate/trunk/build.xml
===================================================================
--- gate/trunk/build.xml        2013-02-08 11:56:19 UTC (rev 16514)
+++ gate/trunk/build.xml        2013-02-08 12:11:38 UTC (rev 16515)
@@ -363,8 +363,9 @@
   <!-- Plugins -->
   <!-- Learning plugin needs to be before Lang_Chinese -->
   <filelist id="plugins.to.build" dir="plugins" files="
-      Alignment Annotation_Merging Copy_Annots_Between_Docs Coref_Tools 
Format_MediaWiki
-      Format_PubMed Gazetteer_LKB Gazetteer_Ontology_Based GENIA Groovy
+      Alignment Annotation_Merging Copy_Annots_Between_Docs Coref_Tools 
+      Format_MediaWiki Format_PubMed Format_Twitter
+      Gazetteer_LKB Gazetteer_Ontology_Based GENIA Groovy
       Inter_Annotator_Agreement JAPE_Plus Keyphrase_Extraction_Algorithm
       Lang_Arabic Lang_Cebuano Learning Lang_Chinese Lang_French Lang_German
       Lang_Hindi Lang_Romanian Language_Identification LingPipe

Modified: 
gate/trunk/plugins/Format_Twitter/src/gate/corpora/JSONTweetFormat.java
===================================================================
--- gate/trunk/plugins/Format_Twitter/src/gate/corpora/JSONTweetFormat.java     
2013-02-08 11:56:19 UTC (rev 16514)
+++ gate/trunk/plugins/Format_Twitter/src/gate/corpora/JSONTweetFormat.java     
2013-02-08 12:11:38 UTC (rev 16515)
@@ -114,7 +114,7 @@
     //Tweet tweet = new Tweet(); 
     String[] lines = string.split("[\\n\\r]+");
     for (String line : lines) {
-      System.out.println("Item " + i + "\n" + line);
+      //System.out.println("Item " + i + "\n" + line);
       if (line.length() > 0) {
         JsonNode jnode = mapper.readTree(line);
         tweets.add(new Tweet(jnode));

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


------------------------------------------------------------------------------
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to