You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/09/13 14:12:11 UTC

svn commit: r1384293 - in /lucene/dev/trunk: dev-tools/eclipse/dot.classpath dev-tools/scripts/smokeTestRelease.py lucene/build.xml lucene/classification/src/java/org/apache/lucene/classification/package.html

Author: rmuir
Date: Thu Sep 13 12:12:10 2012
New Revision: 1384293

URL: http://svn.apache.org/viewvc?rev=1384293&view=rev
Log:
LUCENE-4345: javadocs-lint, eclipse, smokeTester

Added:
    lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/package.html   (with props)
Modified:
    lucene/dev/trunk/dev-tools/eclipse/dot.classpath
    lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py
    lucene/dev/trunk/lucene/build.xml

Modified: lucene/dev/trunk/dev-tools/eclipse/dot.classpath
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/eclipse/dot.classpath?rev=1384293&r1=1384292&r2=1384293&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/eclipse/dot.classpath (original)
+++ lucene/dev/trunk/dev-tools/eclipse/dot.classpath Thu Sep 13 12:12:10 2012
@@ -46,6 +46,8 @@
   <classpathentry kind="src" path="lucene/benchmark/src/java"/>
   <classpathentry kind="src" path="lucene/benchmark/src/test"/>
   <classpathentry excluding="src" including="conf/**" kind="src" path="lucene/benchmark"/>
+  <classpathentry kind="src" path="lucene/classification/src/java"/>
+  <classpathentry kind="src" path="lucene/classification/src/test"/>
   <classpathentry kind="src" path="lucene/facet/src/java"/>
   <classpathentry kind="src" path="lucene/facet/src/examples"/>
   <classpathentry kind="src" path="lucene/facet/src/test"/>

Modified: lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py?rev=1384293&r1=1384292&r2=1384293&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py (original)
+++ lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py Thu Sep 13 12:12:10 2012
@@ -441,7 +441,7 @@ def verifyUnpacked(project, artifact, un
 
   if project == 'lucene':
     # TODO: clean this up to not be a list of modules that we must maintain
-    extras = ('analysis', 'benchmark', 'codecs', 'core', 'demo', 'docs', 'facet', 'grouping', 'highlighter', 'join', 'memory', 'misc', 'queries', 'queryparser', 'sandbox', 'spatial', 'suggest', 'test-framework', 'licenses')
+    extras = ('analysis', 'benchmark', 'classification' 'codecs', 'core', 'demo', 'docs', 'facet', 'grouping', 'highlighter', 'join', 'memory', 'misc', 'queries', 'queryparser', 'sandbox', 'spatial', 'suggest', 'test-framework', 'licenses')
     if isSrc:
       extras += ('build.xml', 'common-build.xml', 'module-build.xml', 'ivy-settings.xml', 'backwards', 'tools', 'site')
   else:

Modified: lucene/dev/trunk/lucene/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/build.xml?rev=1384293&r1=1384292&r2=1384293&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/build.xml (original)
+++ lucene/dev/trunk/lucene/build.xml Thu Sep 13 12:12:10 2012
@@ -243,6 +243,7 @@
       <check-missing-javadocs dir="build/docs/analyzers-stempel" level="class"/>
       <check-missing-javadocs dir="build/docs/analyzers-uima" level="class"/>
       <check-missing-javadocs dir="build/docs/benchmark" level="class"/>
+      <check-missing-javadocs dir="build/docs/classification" level="class"/>
       <check-missing-javadocs dir="build/docs/codecs" level="class"/>
       <check-missing-javadocs dir="build/docs/core" level="class"/>
       <check-missing-javadocs dir="build/docs/demo" level="class"/>

Added: lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/package.html?rev=1384293&view=auto
==============================================================================
--- lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/package.html (added)
+++ lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/package.html Thu Sep 13 12:12:10 2012
@@ -0,0 +1,23 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<html>
+<body>
+Uses already seen data (the indexed documents) to classify new documents.
+Currently only contains a (simplistic) Lucene based Naive Bayes classifier 
+but more implementations will be added in the future.
+</body>
+</html>



Re: svn commit: r1384293 - in /lucene/dev/trunk: dev-tools/eclipse/dot.classpath dev-tools/scripts/smokeTestRelease.py lucene/build.xml lucene/classification/src/java/org/apache/lucene/classification/package.html

Posted by Tommaso Teofili <to...@gmail.com>.
thanks Robert :)

2012/9/13 <rm...@apache.org>

> Author: rmuir
> Date: Thu Sep 13 12:12:10 2012
> New Revision: 1384293
>
> URL: http://svn.apache.org/viewvc?rev=1384293&view=rev
> Log:
> LUCENE-4345: javadocs-lint, eclipse, smokeTester
>
> Added:
>
> lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/package.html
>   (with props)
> Modified:
>     lucene/dev/trunk/dev-tools/eclipse/dot.classpath
>     lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py
>     lucene/dev/trunk/lucene/build.xml
>
> Modified: lucene/dev/trunk/dev-tools/eclipse/dot.classpath
> URL:
> http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/eclipse/dot.classpath?rev=1384293&r1=1384292&r2=1384293&view=diff
>
> ==============================================================================
> --- lucene/dev/trunk/dev-tools/eclipse/dot.classpath (original)
> +++ lucene/dev/trunk/dev-tools/eclipse/dot.classpath Thu Sep 13 12:12:10
> 2012
> @@ -46,6 +46,8 @@
>    <classpathentry kind="src" path="lucene/benchmark/src/java"/>
>    <classpathentry kind="src" path="lucene/benchmark/src/test"/>
>    <classpathentry excluding="src" including="conf/**" kind="src"
> path="lucene/benchmark"/>
> +  <classpathentry kind="src" path="lucene/classification/src/java"/>
> +  <classpathentry kind="src" path="lucene/classification/src/test"/>
>    <classpathentry kind="src" path="lucene/facet/src/java"/>
>    <classpathentry kind="src" path="lucene/facet/src/examples"/>
>    <classpathentry kind="src" path="lucene/facet/src/test"/>
>
> Modified: lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py
> URL:
> http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py?rev=1384293&r1=1384292&r2=1384293&view=diff
>
> ==============================================================================
> --- lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py (original)
> +++ lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py Thu Sep 13
> 12:12:10 2012
> @@ -441,7 +441,7 @@ def verifyUnpacked(project, artifact, un
>
>    if project == 'lucene':
>      # TODO: clean this up to not be a list of modules that we must
> maintain
> -    extras = ('analysis', 'benchmark', 'codecs', 'core', 'demo', 'docs',
> 'facet', 'grouping', 'highlighter', 'join', 'memory', 'misc', 'queries',
> 'queryparser', 'sandbox', 'spatial', 'suggest', 'test-framework',
> 'licenses')
> +    extras = ('analysis', 'benchmark', 'classification' 'codecs', 'core',
> 'demo', 'docs', 'facet', 'grouping', 'highlighter', 'join', 'memory',
> 'misc', 'queries', 'queryparser', 'sandbox', 'spatial', 'suggest',
> 'test-framework', 'licenses')
>      if isSrc:
>        extras += ('build.xml', 'common-build.xml', 'module-build.xml',
> 'ivy-settings.xml', 'backwards', 'tools', 'site')
>    else:
>
> Modified: lucene/dev/trunk/lucene/build.xml
> URL:
> http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/build.xml?rev=1384293&r1=1384292&r2=1384293&view=diff
>
> ==============================================================================
> --- lucene/dev/trunk/lucene/build.xml (original)
> +++ lucene/dev/trunk/lucene/build.xml Thu Sep 13 12:12:10 2012
> @@ -243,6 +243,7 @@
>        <check-missing-javadocs dir="build/docs/analyzers-stempel"
> level="class"/>
>        <check-missing-javadocs dir="build/docs/analyzers-uima"
> level="class"/>
>        <check-missing-javadocs dir="build/docs/benchmark" level="class"/>
> +      <check-missing-javadocs dir="build/docs/classification"
> level="class"/>
>        <check-missing-javadocs dir="build/docs/codecs" level="class"/>
>        <check-missing-javadocs dir="build/docs/core" level="class"/>
>        <check-missing-javadocs dir="build/docs/demo" level="class"/>
>
> Added:
> lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/package.html
> URL:
> http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/package.html?rev=1384293&view=auto
>
> ==============================================================================
> ---
> lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/package.html
> (added)
> +++
> lucene/dev/trunk/lucene/classification/src/java/org/apache/lucene/classification/package.html
> Thu Sep 13 12:12:10 2012
> @@ -0,0 +1,23 @@
> +<!--
> + Licensed to the Apache Software Foundation (ASF) under one or more
> + contributor license agreements.  See the NOTICE file distributed with
> + this work for additional information regarding copyright ownership.
> + The ASF licenses this file to You under the Apache License, Version 2.0
> + (the "License"); you may not use this file except in compliance with
> + the License.  You may obtain a copy of the License at
> +
> +     http://www.apache.org/licenses/LICENSE-2.0
> +
> + Unless required by applicable law or agreed to in writing, software
> + distributed under the License is distributed on an "AS IS" BASIS,
> + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
> + See the License for the specific language governing permissions and
> + limitations under the License.
> +-->
> +<html>
> +<body>
> +Uses already seen data (the indexed documents) to classify new documents.
> +Currently only contains a (simplistic) Lucene based Naive Bayes classifier
> +but more implementations will be added in the future.
> +</body>
> +</html>
>
>
>