You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by an...@apache.org on 2001/10/14 09:24:26 UTC

cvs commit: xml-xerces/java/src/org/apache/xerces/impl Version.java

andyc       01/10/14 00:24:26

  Modified:    java/docs releases.xml
               java/docs/dtd entities.ent
               java/src/org/apache/xerces/impl Version.java
  Log:
  Updated build script so that both the Version.java source file
  and the entities used in the documentation that represent the
  parser version is set during the build. This simplifies the
  build because you only have to update the version numbers in
  one place, the build.xml file.
  
  Revision  Changes    Path
  1.78      +2 -2      xml-xerces/java/docs/releases.xml
  
  Index: releases.xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/docs/releases.xml,v
  retrieving revision 1.77
  retrieving revision 1.78
  diff -u -r1.77 -r1.78
  --- releases.xml	2001/10/02 06:07:17	1.77
  +++ releases.xml	2001/10/14 07:24:26	1.78
  @@ -44,14 +44,14 @@
        Fixed bug in entity manager that would never resolve IANA encoding
        names to Java encoding names properly. (Bug #3449) 
       </note>
  -    <submitter name='Pavani Mukthipudi' email='Pavani.Mukthipudi@sun.com'/>
  +    <submitter name='Pavani Mukthipudi' mailto='Pavani.Mukthipudi@sun.com'/>
      </fix>
      <fix>
       <note>
        Fixed bug in SAX parser that was not forwarding external entity
        declarations in the DTD. (Bug #3392)
       </note>
  -    <submitter name='Neeraj Bajaj' email='Neeraj.Bajaj@sun.com'/>
  +    <submitter name='Neeraj Bajaj' mailto='Neeraj.Bajaj@sun.com'/>
      </fix>
      <add>
       <note>
  
  
  
  1.17      +2 -2      xml-xerces/java/docs/dtd/entities.ent
  
  Index: entities.ent
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/docs/dtd/entities.ent,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- entities.ent	2001/08/24 04:45:16	1.16
  +++ entities.ent	2001/10/14 07:24:26	1.17
  @@ -2,11 +2,11 @@
   <!-- upper case versions of names and versions -->
   <!ENTITY ParserNameLong 'Xerces2 Java Parser'>
   <!ENTITY ParserName 'Xerces-J'>
  -<!ENTITY ParserVersion '2.0.0 (beta2)'>
  +<!ENTITY ParserVersion '@@VERSION@@'>
   
   <!-- lower case versions of names and versions -->
   <!ENTITY parsername 'xerces-j'>
  -<!ENTITY parserversion '2.0.0.beta2'>
  +<!ENTITY parserversion '@@version@@'>
   
   <!-- packaging names -->
   <!ENTITY parserdir 'xerces-2_0_0_beta2'>
  
  
  
  1.4       +2 -2      xml-xerces/java/src/org/apache/xerces/impl/Version.java
  
  Index: Version.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/Version.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Version.java	2001/08/24 04:45:16	1.3
  +++ Version.java	2001/10/14 07:24:26	1.4
  @@ -60,7 +60,7 @@
   /**
    * This class defines the version number of the parser.
    *
  - * @version $Id: Version.java,v 1.3 2001/08/24 04:45:16 andyc Exp $
  + * @version $Id: Version.java,v 1.4 2001/10/14 07:24:26 andyc Exp $
    */
   public class Version {
   
  @@ -69,7 +69,7 @@
       //
   
       /** Version string. */
  -    public static String fVersion = "Xerces 2.0.0 (beta2)";
  +    public static String fVersion = "Xerces @@VERSION@@";
   
       //
       // MAIN
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org