You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by va...@apache.org on 2009/10/13 23:10:12 UTC

svn commit: r824928 - in /lucene/pylucene/site: forrest.properties src/documentation/content/xdocs/documentation/readme.xml src/documentation/content/xdocs/index.xml src/documentation/content/xdocs/jcc/documentation/readme.xml

Author: vajda
Date: Tue Oct 13 21:10:11 2009
New Revision: 824928

URL: http://svn.apache.org/viewvc?rev=824928&view=rev
Log:
updated for release 2.9.0

Modified:
    lucene/pylucene/site/forrest.properties
    lucene/pylucene/site/src/documentation/content/xdocs/documentation/readme.xml
    lucene/pylucene/site/src/documentation/content/xdocs/index.xml
    lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml

Modified: lucene/pylucene/site/forrest.properties
URL: http://svn.apache.org/viewvc/lucene/pylucene/site/forrest.properties?rev=824928&r1=824927&r2=824928&view=diff
==============================================================================
--- lucene/pylucene/site/forrest.properties (original)
+++ lucene/pylucene/site/forrest.properties Tue Oct 13 21:10:11 2009
@@ -85,10 +85,10 @@
 #forrest.validate=true
 #forrest.validate.xdocs=${forrest.validate}
 #forrest.validate.skinconf=${forrest.validate}
-#forrest.validate.sitemap=${forrest.validate}
-#forrest.validate.stylesheets=${forrest.validate}
-#forrest.validate.skins=${forrest.validate}
-#forrest.validate.skins.stylesheets=${forrest.validate.skins}
+forrest.validate.sitemap=false
+forrest.validate.stylesheets=false
+forrest.validate.skins=false
+forrest.validate.skins.stylesheets=false
 
 # *.failonerror=(true|false) - stop when an XML file is invalid
 #forrest.validate.failonerror=true

Modified: lucene/pylucene/site/src/documentation/content/xdocs/documentation/readme.xml
URL: http://svn.apache.org/viewvc/lucene/pylucene/site/src/documentation/content/xdocs/documentation/readme.xml?rev=824928&r1=824927&r2=824928&view=diff
==============================================================================
--- lucene/pylucene/site/src/documentation/content/xdocs/documentation/readme.xml (original)
+++ lucene/pylucene/site/src/documentation/content/xdocs/documentation/readme.xml Tue Oct 13 21:10:11 2009
@@ -152,7 +152,7 @@
           is optional and defaults to Object. 
         </p>
         <p>
-          To convert a char or byte array to a Python string use a 
+          To convert a char array to a Python string use a 
           <code>''.join(array)</code> construct.
         </p>
         <p>
@@ -263,7 +263,7 @@
             Document instances can be iterated over for their fields.<br/>
             The Java loop:
             <source>
-              Enumeration fields = doc.fields();
+              Enumeration fields = doc.getFields();
               while (fields.hasMoreElements()) {
                   Field field = (Field) fields.nextElement();
                   ...
@@ -275,7 +275,7 @@
                   field = Field.cast_(field)
                   ...
             </source>
-            Once JCC heeds Java 1.5 annotations and once Java Lucene
+            Once JCC heeds Java 1.5 type parameters and once Java Lucene
             makes use of them, such casting should become unncessary.
           </li>
         </ul>

Modified: lucene/pylucene/site/src/documentation/content/xdocs/index.xml
URL: http://svn.apache.org/viewvc/lucene/pylucene/site/src/documentation/content/xdocs/index.xml?rev=824928&r1=824927&r2=824928&view=diff
==============================================================================
--- lucene/pylucene/site/src/documentation/content/xdocs/index.xml (original)
+++ lucene/pylucene/site/src/documentation/content/xdocs/index.xml Tue Oct 13 21:10:11 2009
@@ -29,7 +29,7 @@
 	Java <a href="http://lucene.apache.org/java/">Lucene</a>. Its goal
 	is to allow you to use Lucene's text indexing and searching
 	capabilities from Python. It is API compatible with the latest
-	version of Java Lucene, version 2.4.1 as of April 3rd, 2009.
+	version of Java Lucene, version 2.9.0 as of October 13th, 2009.
       </p>
       <p>
 	PyLucene is not a Lucene port but a Python wrapper around
@@ -74,6 +74,18 @@
     </section>
     <section id="news">
       <title>News</title>
+      <section id="news20091013">
+	<title>13 Oct 2009 - PyLucene 2.9.0-1 available</title>
+	<p>
+	  This release tracks Lucene Java's recent 2.9.0 <a href="http://lucene.apache.org/java/docs/index.html#25+September+2009+-+Lucene+Java+2.9.0+available">release</a>.
+	</p>
+	<p>
+	  See <a href="http://svn.apache.org/repos/asf/lucene/pylucene/tags/pylucene_2_9_0/CHANGES">PyLucene CHANGES</a> and <a href="http://svn.apache.org/repos/asf/lucene/pylucene/tags/pylucene_2_9_0/jcc/CHANGES">JCC CHANGES</a> for details.
+	</p>
+	<p>
+	  A source distribution is available <a href="http://www.apache.org/dyn/closer.cgi/lucene/pylucene/">here</a>.
+	</p>
+      </section>
       <section id="news20090403">
 	<title>03 Apr 2009 - PyLucene 2.4.1-1 available</title>
 	<p>

Modified: lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml
URL: http://svn.apache.org/viewvc/lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml?rev=824928&r1=824927&r2=824928&view=diff
==============================================================================
--- lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml (original)
+++ lucene/pylucene/site/src/documentation/content/xdocs/jcc/documentation/readme.xml Tue Oct 13 21:10:11 2009
@@ -408,7 +408,7 @@
 	size.
       </p>
       <p>
-	To convert a char or byte array to a Python string use
+	To convert a char array to a Python string use
 	a <code>''.join(array)</code> construct.
       </p>
       <p>