svn commit: r378214 - in /lucene/nutch/trunk/src/plugin: ./ clustering-carrot2/ lib-commons-httpclient/ lib-commons-httpclient/lib/ parse-rss/lib/ protocol-httpclient/ protocol-httpclient/lib/

2006-02-16 Thread jerome
Author: jerome
Date: Thu Feb 16 02:10:23 2006
New Revision: 378214

URL: http://svn.apache.org/viewcvs?rev=378214view=rev
Log:
NUTCH-196 : add a httpclient library (lib-commons-httpclient)

Added:
lucene/nutch/trunk/src/plugin/lib-commons-httpclient/
lucene/nutch/trunk/src/plugin/lib-commons-httpclient/build.xml   (with 
props)
lucene/nutch/trunk/src/plugin/lib-commons-httpclient/lib/

lucene/nutch/trunk/src/plugin/lib-commons-httpclient/lib/commons-httpclient-3.0.jar
   (with props)
lucene/nutch/trunk/src/plugin/lib-commons-httpclient/plugin.xml   (with 
props)
Removed:
lucene/nutch/trunk/src/plugin/parse-rss/lib/commons-httpclient-3.0-beta1.jar

lucene/nutch/trunk/src/plugin/protocol-httpclient/lib/commons-httpclient-3.0.jar
Modified:
lucene/nutch/trunk/src/plugin/build.xml
lucene/nutch/trunk/src/plugin/clustering-carrot2/build.xml
lucene/nutch/trunk/src/plugin/clustering-carrot2/plugin.xml
lucene/nutch/trunk/src/plugin/protocol-httpclient/build.xml
lucene/nutch/trunk/src/plugin/protocol-httpclient/plugin.xml

Modified: lucene/nutch/trunk/src/plugin/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/build.xml?rev=378214r1=378213r2=378214view=diff
==
--- lucene/nutch/trunk/src/plugin/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/build.xml Thu Feb 16 02:10:23 2006
@@ -11,6 +11,7 @@
  ant dir=index-basic target=deploy/
  ant dir=index-more target=deploy/
  ant dir=languageidentifier target=deploy/
+ ant dir=lib-commons-httpclient target=deploy/
  ant dir=lib-http target=deploy/
  ant dir=lib-jakarta-poi target=deploy/
  ant dir=lib-log4j target=deploy/
@@ -77,6 +78,7 @@
 ant dir=index-basic target=clean/
 ant dir=index-more target=clean/
 ant dir=languageidentifier target=clean/
+ant dir=lib-commons-httpclient target=clean/
 ant dir=lib-http target=clean/
 ant dir=lib-jakarta-poi target=clean/
 ant dir=lib-log4j target=clean/

Modified: lucene/nutch/trunk/src/plugin/clustering-carrot2/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/clustering-carrot2/build.xml?rev=378214r1=378213r2=378214view=diff
==
--- lucene/nutch/trunk/src/plugin/clustering-carrot2/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/clustering-carrot2/build.xml Thu Feb 16 
02:10:23 2006
@@ -5,8 +5,9 @@
   import file=../build-plugin.xml/
 
   path id=plugin.deps
-fileset dir=../lib-log4j/lib
-  include name=*.jar /
+fileset dir=${nutch.root}/build
+  include name=**/lib-log4j/*.jar /
+  include name=**/lib-commons-httpclient/*.jar /
 /fileset
   /path
 

Modified: lucene/nutch/trunk/src/plugin/clustering-carrot2/plugin.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/clustering-carrot2/plugin.xml?rev=378214r1=378213r2=378214view=diff
==
--- lucene/nutch/trunk/src/plugin/clustering-carrot2/plugin.xml (original)
+++ lucene/nutch/trunk/src/plugin/clustering-carrot2/plugin.xml Thu Feb 16 
02:10:23 2006
@@ -30,6 +30,7 @@
requires
   import plugin=nutch-extensionpoints/
   import plugin=lib-log4j/
+  import plugin=lib-commons-httpclient/
/requires
 
extension id=org.apache.nutch.clustering.carrot2

Added: lucene/nutch/trunk/src/plugin/lib-commons-httpclient/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/lib-commons-httpclient/build.xml?rev=378214view=auto
==
--- lucene/nutch/trunk/src/plugin/lib-commons-httpclient/build.xml (added)
+++ lucene/nutch/trunk/src/plugin/lib-commons-httpclient/build.xml Thu Feb 16 
02:10:23 2006
@@ -0,0 +1,21 @@
+?xml version=1.0?
+
+project name=lib-commons-httpclient default=jar
+
+  import file=../build-plugin.xml/
+
+  !--
+   ! Override the compile and jar targets,
+   ! since there is nothing to compile here.   
  
+   ! --
+  target name=compile depends=init
+echo message=Compiling plugin: ${name}/
+  /target
+
+  target name=jar depends=compile
+copy todir=${build.dir} verbose=true
+  fileset dir=./lib includes=**/*.jar/
+/copy
+  /target
+
+/project

Propchange: lucene/nutch/trunk/src/plugin/lib-commons-httpclient/build.xml
--
svn:eol-style = native

Added: 
lucene/nutch/trunk/src/plugin/lib-commons-httpclient/lib/commons-httpclient-3.0.jar
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/lib-commons-httpclient/lib/commons-httpclient-3.0.jar?rev=378214view=auto
==
Binary file - no diff available.

Propchange: 

svn commit: r378215 - /lucene/nutch/trunk/src/plugin/protocol-httpclient/plugin.xml

2006-02-16 Thread jerome
Author: jerome
Date: Thu Feb 16 02:22:10 2006
New Revision: 378215

URL: http://svn.apache.org/viewcvs?rev=378215view=rev
Log:
remove the unused httpclient library declaration

Modified:
lucene/nutch/trunk/src/plugin/protocol-httpclient/plugin.xml

Modified: lucene/nutch/trunk/src/plugin/protocol-httpclient/plugin.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/protocol-httpclient/plugin.xml?rev=378215r1=378214r2=378215view=diff
==
--- lucene/nutch/trunk/src/plugin/protocol-httpclient/plugin.xml (original)
+++ lucene/nutch/trunk/src/plugin/protocol-httpclient/plugin.xml Thu Feb 16 
02:22:10 2006
@@ -10,7 +10,6 @@
  export name=*/
   /library
   library name=commons-codec.jar /
-  library name=commons-httpclient-3.0.jar /
/runtime
 
requires




svn commit: r378222 - /lucene/nutch/trunk/src/plugin/build.xml

2006-02-16 Thread jerome
Author: jerome
Date: Thu Feb 16 02:51:14 2006
New Revision: 378222

URL: http://svn.apache.org/viewcvs?rev=378222view=rev
Log:
add lib-nekohtml to deploy and clean and force the lib plugins to be builded 
first

Modified:
lucene/nutch/trunk/src/plugin/build.xml

Modified: lucene/nutch/trunk/src/plugin/build.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/build.xml?rev=378222r1=378221r2=378222view=diff
==
--- lucene/nutch/trunk/src/plugin/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/build.xml Thu Feb 16 02:51:14 2006
@@ -6,17 +6,18 @@
   !-- Build  deploy all the plugin jars.--
   !-- == --
   target name=deploy
- ant dir=clustering-carrot2 target=deploy/
- ant dir=creativecommons target=deploy/
- ant dir=index-basic target=deploy/
- ant dir=index-more target=deploy/
- ant dir=languageidentifier target=deploy/
  ant dir=lib-commons-httpclient target=deploy/
  ant dir=lib-http target=deploy/
  ant dir=lib-jakarta-poi target=deploy/
  ant dir=lib-log4j target=deploy/
  ant dir=lib-lucene-analyzers target=deploy/
+ ant dir=lib-nekohtml target=deploy/
  ant dir=lib-parsems target=deploy/
+ ant dir=clustering-carrot2 target=deploy/
+ ant dir=creativecommons target=deploy/
+ ant dir=index-basic target=deploy/
+ ant dir=index-more target=deploy/
+ ant dir=languageidentifier target=deploy/
  ant dir=nutch-extensionpoints target=deploy/
  ant dir=ontology target=deploy/
  ant dir=protocol-file target=deploy/
@@ -83,6 +84,7 @@
 ant dir=lib-jakarta-poi target=clean/
 ant dir=lib-log4j target=clean/
 ant dir=lib-lucene-analyzers target=clean/
+ant dir=lib-nekohtml target=clean/
 ant dir=lib-parsems target=clean/
 ant dir=nutch-extensionpoints target=clean/
 ant dir=ontology target=clean/




svn commit: r378381 - /lucene/nutch/trunk/src/site/src/documentation/content/xdocs/tabs.xml

2006-02-16 Thread cutting
Author: cutting
Date: Thu Feb 16 14:24:47 2006
New Revision: 378381

URL: http://svn.apache.org/viewcvs?rev=378381view=rev
Log:
Fix to work with Forrest 0.7, where ext: links seem to no longer work
in tabs.xml.

Modified:
lucene/nutch/trunk/src/site/src/documentation/content/xdocs/tabs.xml

Modified: lucene/nutch/trunk/src/site/src/documentation/content/xdocs/tabs.xml
URL: 
http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/site/src/documentation/content/xdocs/tabs.xml?rev=378381r1=378380r2=378381view=diff
==
--- lucene/nutch/trunk/src/site/src/documentation/content/xdocs/tabs.xml 
(original)
+++ lucene/nutch/trunk/src/site/src/documentation/content/xdocs/tabs.xml Thu 
Feb 16 14:24:47 2006
@@ -15,6 +15,6 @@
   --
 
   tab label=Main dir=/  
-  tab label=Wiki href=ext:wiki/
+  tab label=Wiki href=http://wiki.apache.org/nutch//
   
 /tabs