kstaken     02/03/13 22:15:16

  Modified:    .        build.xml
               docs     README VERSIONS index.html
               docs/src AdministratorsGuide.xml DevelopersGuide.xml
                        ToolsReference.xml UsersGuide.xml
               java/src/org/apache/xindice/server Xindice.java
  Log:
  Updating release notes and bumping versions for 1.0 release.
  
  Revision  Changes    Path
  1.10      +2 -2      xml-xindice/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xindice/build.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- build.xml 11 Mar 2002 12:46:51 -0000      1.9
  +++ build.xml 14 Mar 2002 06:15:16 -0000      1.10
  @@ -14,7 +14,7 @@
        cd xml-xindice ; bin/ant
   
   
  -   $Id: build.xml,v 1.9 2002/03/11 12:46:51 jbates Exp $
  +   $Id: build.xml,v 1.10 2002/03/14 06:15:16 kstaken Exp $
   
   -->
   
  @@ -62,7 +62,7 @@
     <target name="init">
       <tstamp/>
       <property name="name" value="xml-xindice"/>
  -    <property name="version" value="1.0rc2"/>
  +    <property name="version" value="1.0"/>
   
       <property name="distrib.name" value="${name}-${version}"/>
       <property name="jarname" value="xindice"/>
  
  
  
  1.4       +34 -0     xml-xindice/docs/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/xml-xindice/docs/README,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- README    26 Feb 2002 08:21:28 -0000      1.3
  +++ README    14 Mar 2002 06:15:16 -0000      1.4
  @@ -40,6 +40,40 @@
   Release Notes
   -------------
   
  +Apache Xindice Version 1.0
  +=============================
  +This is the first production release of Xindice. Changes from the 
  +last release candidate are minimal.
  +
  +- Fixed a path traversal security problem in the HTTP server.
  +- Fixed the Addressbook example to not send data to the client
  +  after the connection had already been commited.
  +- SAXGenerator now properly generates prefixMapping events.
  +
  +Known issues in version 1.0:
  +
  +- UTF-8 Encoding is not entirely clean. Most latin derived 
  +  languages should be OK, but English is the most 
  +  robust. Xindice 1.1 will resolve any issues in this area.
  +- XPath queries that return a single atomic value (i.e. the value
  +  of an attribute) rather then a node will return no result.  You
  +  must retrieve the containing element to retrieve the content 
  +  of an attribute.
  +- When using XUpdate with JDK 1.4 you must use the 
  +  standards override mechanism to replace the version of
  +  Xalan included in the JDK with the version included in 
  +  Xindice. 
  +  See: http://java.sun.com/j2se/1.4/docs/guide/standards/index.html
  +  for more information.
  +- On Windows, command line queries can have problems with the 
  +  quote handling of the windows shell. In general you should
  +  put double quotes around the entire query string and use 
  +  single quotes in your XPath. 
  +- This initial release of Xindice does not have any built in
  +  security. If you run it on a public server you should insure 
  +  that remote access to port 4080 is restricted at the network 
  +  level. Security will be added in a future release.
  +
   Apache Xindice Version 1.0rc2
   =============================
   The focus of this release is on stabilization of the server.
  
  
  
  1.3       +2 -1      xml-xindice/docs/VERSIONS
  
  Index: VERSIONS
  ===================================================================
  RCS file: /home/cvs/xml-xindice/docs/VERSIONS,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- VERSIONS  26 Feb 2002 08:21:28 -0000      1.2
  +++ VERSIONS  14 Mar 2002 06:15:16 -0000      1.3
  @@ -21,4 +21,5 @@
    was renamed Xindice to avoid possible naming conflicts]
   
   1.0rc1 DarkHorse    The first Apache Xindice release candidate
  -1.0rc2 Pepper       The Second Apache Xindice release candidate
  \ No newline at end of file
  +1.0rc2 Pepper       The Second Apache Xindice release candidate
  +1.0    Birthday          First production release
  \ No newline at end of file
  
  
  
  1.7       +4 -4      xml-xindice/docs/index.html
  
  Index: index.html
  ===================================================================
  RCS file: /home/cvs/xml-xindice/docs/index.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- index.html        26 Feb 2002 21:31:41 -0000      1.6
  +++ index.html        14 Mar 2002 06:15:16 -0000      1.7
  @@ -172,16 +172,16 @@
                   <tr><td>
   <blockquote>
   <p>
  -The most current release version of Xindice is 1.0rc2.
  +The most current release version of Xindice is 1.0.
   </p>
   <p>
  -    <strong>Apache Xindice 1.0rc2 (Source)</strong>
  +    <strong>Apache Xindice 1.0 (Source)</strong>
   </p>
   <p>
  -    <a href="dist/xml-xindice-1.0rc2.zip">Xindice 1.0rc2</a> - zip Format 
  +    <a href="dist/xml-xindice-1.0.zip">Xindice 1.0</a> - zip Format 
   </p>
   <p>   
  -    <a href="dist/xml-xindice-1.0rc2.tar.gz">Xindice 1.0rc2</a> - tar.gz 
Format 
  +    <a href="dist/xml-xindice-1.0.tar.gz">Xindice 1.0</a> - tar.gz Format 
   </p>
   <!--p>
   An archive of older versions is also <a href="dist">available</a>.
  
  
  
  1.5       +3 -3      xml-xindice/docs/src/AdministratorsGuide.xml
  
  Index: AdministratorsGuide.xml
  ===================================================================
  RCS file: /home/cvs/xml-xindice/docs/src/AdministratorsGuide.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AdministratorsGuide.xml   26 Feb 2002 08:35:02 -0000      1.4
  +++ AdministratorsGuide.xml   14 Mar 2002 06:15:16 -0000      1.5
  @@ -13,10 +13,10 @@
         <corpauthor>The Apache Software Foundation</corpauthor>
   
         <copyright>
  -         <year>2001</year>
  +         <year>2001-2002</year>
            <holder>The Apache Software Foundation</holder>
         </copyright>
  -      <pubdate><![CDATA[$Id: AdministratorsGuide.xml,v 1.4 2002/02/26 
08:35:02 kstaken Exp $]]></pubdate>
  +      <pubdate><![CDATA[$Id: AdministratorsGuide.xml,v 1.5 2002/03/14 
06:15:16 kstaken Exp $]]></pubdate>
         <legalnotice>
            <para>
               This documentation is a work in progress. Links to the most 
current
  @@ -24,7 +24,7 @@
               
url="http://www.dbxml.org/docs/";>http://www.dbxml.org/docs/</ulink>
            </para>
            <para>
  -            This version of the document covers Xindice 1.0rc2.
  +            This version of the document covers Xindice 1.0.
            </para>
         </legalnotice>
      </bookinfo>
  @@ -295,7 +295,7 @@
                  is in your path.
               </para>
               <screen>              
  -               xindiceadmin import -c /db -f /path/to/data/root              
  +               xindiceadmin import -c /db  -f /path/to/data/root             
 
               </screen>
               <para>
                   Each directory under /path/to/data will be used to create a 
collection and 
  
  
  
  1.6       +3 -3      xml-xindice/docs/src/DevelopersGuide.xml
  
  Index: DevelopersGuide.xml
  ===================================================================
  RCS file: /home/cvs/xml-xindice/docs/src/DevelopersGuide.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- DevelopersGuide.xml       26 Feb 2002 08:21:28 -0000      1.5
  +++ DevelopersGuide.xml       14 Mar 2002 06:15:16 -0000      1.6
  @@ -15,10 +15,10 @@
         <corpauthor>The Apache Software Foundation</corpauthor>
   
         <copyright>
  -         <year>2001</year>
  +         <year>2001-2002</year>
            <holder>The Apache Software Foundation</holder>
         </copyright>
  -      <pubdate><![CDATA[$Id: DevelopersGuide.xml,v 1.5 2002/02/26 08:21:28 
kstaken Exp $]]></pubdate>
  +      <pubdate><![CDATA[$Id: DevelopersGuide.xml,v 1.6 2002/03/14 06:15:16 
kstaken Exp $]]></pubdate>
         <legalnotice>
            <para>
               This documentation is a work in progress. Links to the most 
current
  @@ -26,7 +26,7 @@
               
url="http://www.dbxml.org/docs/";>http://www.dbxml.org/docs/</ulink>
            </para>
            <para>
  -            This version of the document covers Xindice 1.0rc2.
  +            This version of the document covers Xindice 1.0.
            </para>
         </legalnotice>
      </bookinfo>
  
  
  
  1.4       +3 -3      xml-xindice/docs/src/ToolsReference.xml
  
  Index: ToolsReference.xml
  ===================================================================
  RCS file: /home/cvs/xml-xindice/docs/src/ToolsReference.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ToolsReference.xml        26 Feb 2002 08:21:28 -0000      1.3
  +++ ToolsReference.xml        14 Mar 2002 06:15:16 -0000      1.4
  @@ -17,10 +17,10 @@
         <corpauthor>The Apache Software Foundation</corpauthor>
   
         <copyright>
  -         <year>2001</year>
  +         <year>2001-2002</year>
            <holder>The Apache Software Foundation</holder>
         </copyright>
  -      <pubdate><![CDATA[$Id: ToolsReference.xml,v 1.3 2002/02/26 08:21:28 
kstaken Exp $]]></pubdate>
  +      <pubdate><![CDATA[$Id: ToolsReference.xml,v 1.4 2002/03/14 06:15:16 
kstaken Exp $]]></pubdate>
         <legalnotice>
            <para>
               This documentation is a work in progress. Links to the most 
current
  @@ -28,7 +28,7 @@
               
url="http://www.dbxml.org/docs/";>http://www.dbxml.org/docs/</ulink>
            </para>
            <para>
  -            This version of the document covers Xindice 1.0rc2.
  +            This version of the document covers Xindice 1.0.
            </para>
         </legalnotice>
   
  
  
  
  1.4       +3 -3      xml-xindice/docs/src/UsersGuide.xml
  
  Index: UsersGuide.xml
  ===================================================================
  RCS file: /home/cvs/xml-xindice/docs/src/UsersGuide.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- UsersGuide.xml    26 Feb 2002 08:21:28 -0000      1.3
  +++ UsersGuide.xml    14 Mar 2002 06:15:16 -0000      1.4
  @@ -13,10 +13,10 @@
         <corpauthor>The Apache Software Foundation</corpauthor>
   
         <copyright>
  -         <year>2001</year>
  +         <year>2001-2002</year>
            <holder>The Apache Software Foundation</holder>
         </copyright>
  -      <pubdate><![CDATA[$Id: UsersGuide.xml,v 1.3 2002/02/26 08:21:28 
kstaken Exp $]]></pubdate>
  +      <pubdate><![CDATA[$Id: UsersGuide.xml,v 1.4 2002/03/14 06:15:16 
kstaken Exp $]]></pubdate>
         <legalnotice>
            <para>
               This documentation is a work in progress. Links to the most 
current
  @@ -24,7 +24,7 @@
               
url="http://www.dbxml.org/docs/";>http://www.dbxml.org/docs/</ulink>
            </para>
            <para>
  -            This version of the document covers Xindice 1.0rc2.
  +            This version of the document covers Xindice 1.0.
            </para>
         </legalnotice>
      </bookinfo>
  
  
  
  1.3       +3 -3      
xml-xindice/java/src/org/apache/xindice/server/Xindice.java
  
  Index: Xindice.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xindice/java/src/org/apache/xindice/server/Xindice.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Xindice.java      26 Feb 2002 08:21:51 -0000      1.2
  +++ Xindice.java      14 Mar 2002 06:15:16 -0000      1.3
  @@ -56,7 +56,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * $Id: Xindice.java,v 1.2 2002/02/26 08:21:51 kstaken Exp $
  + * $Id: Xindice.java,v 1.3 2002/03/14 06:15:16 kstaken Exp $
    */
   
   import java.io.*;
  @@ -78,8 +78,8 @@
      public static final int MajorVersion = 1;
      public static final int MinorVersion = 0;
      public static final int SubMinorVersion = 0;
  -   public static final String Version = "1.0rc2";
  -   public static final String Codename = "Pepper";
  +   public static final String Version = "1.0";
  +   public static final String Codename = "Birthday";
   
      // Copyright/Authorship Information
      public static final String Title = "Xindice";
  
  
  

Reply via email to