Author: lewismc
Date: Sun Mar 18 15:02:50 2012
New Revision: 1302134

URL: http://svn.apache.org/viewvc?rev=1302134&view=rev
Log:
incremental commit to update Javadocs

Modified:
    nutch/trunk/build.xml
    nutch/trunk/default.properties
    nutch/trunk/src/java/overview.html

Modified: nutch/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/nutch/trunk/build.xml?rev=1302134&r1=1302133&r2=1302134&view=diff
==============================================================================
--- nutch/trunk/build.xml (original)
+++ nutch/trunk/build.xml Sun Mar 18 15:02:50 2012
@@ -15,7 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
-<project name="Nutch" default="runtime" xmlns:ivy="antlib:org.apache.ivy.ant" 
xmlns:artifact="antlib:org.apache.maven.artifact.ant">
+<project name="${name}" default="runtime" 
xmlns:ivy="antlib:org.apache.ivy.ant" 
xmlns:artifact="antlib:org.apache.maven.artifact.ant">
 
   <!-- Load all the default properties, and any the user wants    -->
   <!-- to contribute (without having to type -D or edit this file -->
@@ -125,7 +125,7 @@
   <!-- ================================================================== -->
   <!--                                                                    -->
   <!-- ================================================================== -->  
-  <target name="release" depends="compile-core" description="--> generate the 
release distribution">
+  <target name="release" depends="compile-core" description="generate the 
release distribution">
     <copy file="${conf.dir}/nutch-default.xml"
           todir="${build.classes}"/>
     <copy file="${conf.dir}/nutch-site.xml"
@@ -141,8 +141,8 @@
       author="true"
       version="true"
       use="true"
-      windowtitle="${Name} ${version} API"
-      doctitle="${Name} ${version} API"
+      windowtitle="${name} ${version} API"
+      doctitle="${name} ${version} API"
       bottom="Copyright &amp;copy; ${year} The Apache Software Foundation"
       >
         <arg value="${javadoc.proxy.host}"/>
@@ -205,7 +205,7 @@
   <!-- ================================================================== -->
   <!--                                                                    -->
   <!-- ================================================================== -->  
-  <target name="deploy" depends="release" description="--> deploy to Apache 
Nexus">
+  <target name="deploy" depends="release" description="deploy to Apache Nexus">
        
        <!-- generate a pom file -->
        <ivy:makepom ivyfile="${ivy.file}" pomfile="${basedir}/pom.xml" 
templatefile="ivy/mvn.template">
@@ -460,7 +460,7 @@
   </target>
 
   <!-- target: ivy-download  ============================================ -->
-  <target name="ivy-download" description="--> download ivy">
+  <target name="ivy-download" description="Download ivy">
     <available file="${ivy.jar}" property="ivy.jar.found"/>
     <antcall target="-ivy-download-unchecked"/>
   </target>
@@ -499,8 +499,8 @@
       author="true"
       version="true"
       use="true"
-      windowtitle="${Name} ${version} API"
-      doctitle="${Name} ${version} API"
+      windowtitle="${name} ${version} API"
+      doctitle="${name} ${version} API"
       bottom="Copyright &amp;copy; ${year} The Apache Software Foundation"
       >
         <arg value="${javadoc.proxy.host}"/>
@@ -673,7 +673,7 @@
 
   <!-- target: clean-cache  ============================================= -->
   <target name="clean-cache" depends=""
-                        description="--> delete ivy cache">
+                        description="delete ivy cache">
     <ivy:cleancache />
   </target>
 
@@ -693,7 +693,7 @@
   </target>
 
   <target name="rat-sources" depends="rat-sources-typedef"
-         description="--> runs the tasks over src/java">
+         description="runs the tasks over src/java">
     <rat:report xmlns:rat="antlib:org.apache.rat.anttasks">
       <fileset dir="src">
        <include name="java/**/*"/>

Modified: nutch/trunk/default.properties
URL: 
http://svn.apache.org/viewvc/nutch/trunk/default.properties?rev=1302134&r1=1302133&r2=1302134&view=diff
==============================================================================
--- nutch/trunk/default.properties (original)
+++ nutch/trunk/default.properties Sun Mar 18 15:02:50 2012
@@ -1,7 +1,7 @@
 name=nutch
 version=1.5-SNAPSHOT
 final.name=${name}-${version}
-year=2011
+year=2012
 
 basedir = ./
 src.dir = ./src/java
@@ -78,31 +78,59 @@ plugins.protocol=\
 #
 plugins.urlfilter=\
    org.apache.nutch.urlfilter.automaton*:\
+   org.apache.nutch.urlfilter.domain*:\
    org.apache.nutch.urlfilter.prefix*:\
-   org.apache.nutch.urlfilter.regex*
+   org.apache.nutch.urlfilter.regex*\
+   org.apache.nutch.urlfilter.suffix*:\
+   org.apache.nutch.urlfilter.validator*
+
+#
+# URL Normalizer Plugins
+#
+plugins.urlfilter=\
+   org.apache.nutch.net.urlnormalizer.basic*:\
+   org.apache.nutch.net.urlnormalizer.pass*:\
+   org.apache.nutch.net.urlnormalizer.regex*
 
 #
 # Scoring Plugins
 #
 plugins.scoring=\
-   org.apache.nutch.scoring.opic*
-
+   org.apache.nutch.scoring.link*:\
+   org.apache.nutch.scoring.opic*:\
+   org.apache.nutch.scoring.tld*:\
+   org.apache.nutch.scoring.urlmeta*
+   
 #
 # Parse Plugins
 #
 plugins.parse=\
    org.apache.nutch.parse.ext*:\
+   org.apache.nutch.parse.feed*:\
+   org.apache.nutch.parse.html*:\
    org.apache.nutch.parse.js:\
    org.apache.nutch.parse.swf*:\
    org.apache.nutch.parse.tika:\
    org.apache.nutch.parse.zip
+   
+#
+# Parse Filter Plugins
+#
+plugins.parse=\
+   org.apache.nutch.parse.headings*
 
 #
 # Indexing Filter Plugins
 #
 plugins.index=\
+   org.apache.nutch.indexer.anchor*:\
    org.apache.nutch.indexer.basic*:\
-   org.apache.nutch.indexer.more*
+   org.apache.nutch.indexer.feed*:\
+   org.apache.nutch.indexer.metadata*:\
+   org.apache.nutch.indexer.static*:\
+   org.apache.nutch.indexer.subcollection*:\
+   org.apache.nutch.indexer.tld*:\
+   org.apache.nutch.indexer.urlmeta*
 
 #
 # Misc. Plugins
@@ -112,5 +140,8 @@ plugins.index=\
 # many extension points)
 #
 plugins.misc=\
-   org.apache.nutch.microformats.reltag*:\
+   org.apache.nutch.collection*:\
+   org.apache.nutch.analysis.lang*:\
    org.creativecommons.nutch*
+   org.apache.nutch.microformats.reltag*:\
+   

Modified: nutch/trunk/src/java/overview.html
URL: 
http://svn.apache.org/viewvc/nutch/trunk/src/java/overview.html?rev=1302134&r1=1302133&r2=1302134&view=diff
==============================================================================
--- nutch/trunk/src/java/overview.html (original)
+++ nutch/trunk/src/java/overview.html Sun Mar 18 15:02:50 2012
@@ -1,9 +1,9 @@
 <html>
 <head>
-   <title>Nutch</title>
+   <title>Apache Nutch</title>
 </head>
 <body>
-Nutch is the open-source search engine.<p>
+<p>Apache Nutch is an open source web-search software project. </p>
+<p>Nutch is a project of the Apache Software Foundation and is part of the 
larger Apache community of developers and users.</p>
 </body>
 </html>
-


Reply via email to