You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by cu...@locus.apache.org on 2000/03/06 15:47:49 UTC

cvs commit: xml-xalan/src/org/apache/xalan/xslt XSLProcessorVersion.java

curcuru     00/03/06 06:47:49

  Modified:    .        Makefile README make.include
               src/org/apache/xalan/xslt XSLProcessorVersion.java
  Log:
  Xalan is coming! Xalan is coming! Update version numbers to 0.20.0, gold candidate build
  
  Revision  Changes    Path
  1.14      +8 -11     xml-xalan/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xalan/Makefile,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- Makefile	2000/02/23 21:29:27	1.13
  +++ Makefile	2000/03/06 14:47:48	1.14
  @@ -64,19 +64,16 @@
   	cd src/$(CLASS_DIR); $(JAR) $(JARFLAGS) ../../$@ org; \
   	echo "done"
   
  -XALAN     := xalan
  -XVERSION   = _0_19_5
  -CPR = cp -Rvf
   .PHONY: makedist
   makedist:
  -	echo Making distribution $(XALAN)$(XVERSION); \
  -	mkdir $(XALAN)$(XVERSION) ; \
  -	$(CP) * $(XALAN)$(XVERSION) ; \
  -	$(CPR) xdocs $(XALAN)$(XVERSION) ; \
  -	$(CPR) build $(XALAN)$(XVERSION) ; \
  -	$(CPR) samples $(XALAN)$(XVERSION) ; \
  -	$(CPR) src $(XALAN)$(XVERSION) ; \
  -	$(JAR) -cf $(XALAN)$(XVERSION)$(JARX) $(XALAN)$(XVERSION); \
  +	echo Making distribution $(PRODUCT_NAME)$(VERSION); \
  +	mkdir $(PRODUCT_NAME)$(VERSION) ; \
  +	$(CP) * $(PRODUCT_NAME)$(VERSION) ; \
  +	$(CPR) xdocs $(PRODUCT_NAME)$(VERSION) ; \
  +	$(CPR) build $(PRODUCT_NAME)$(VERSION) ; \
  +	$(CPR) samples $(PRODUCT_NAME)$(VERSION) ; \
  +	$(CPR) src $(PRODUCT_NAME)$(VERSION) ; \
  +	$(JAR) -cf $(PRODUCT_NAME)$(VERSION)$(JARX) $(PRODUCT_NAME)$(VERSION); \
   	echo NOTE: You may wish to manually sign this!
   
   # Subsidiary targets are defined in make.include
  
  
  
  1.11      +3 -14     xml-xalan/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/xml-xalan/README,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- README	2000/02/23 21:29:27	1.10
  +++ README	2000/03/06 14:47:48	1.11
  @@ -1,19 +1,8 @@
   README for xml-xalan project at xml.apache.org
   
  --- IMPORTANT NOTES:
  --- This Xalan build is 0.19.5.  It is really a 'developer' release even though it
  -   has a maintenance number, to reduce confusion about which build is which.
  -   It has not necessarily been thoroughly tested, and may not be as stable or functional
  -   as previously posted normal releases.  Your mileage may vary, caveat emptor, etc.
  -   Basically fixes problems with a few more complex stylesheets that went out by 
  -   mistake in our 0.19.4 build - sorry!
  --- Note that we have performed only very basic testing against the Xerces-J-bin_1_0_1.jar
  -   distribution (not against the latest CVS; not against 1.0.2), so we suggest using that 
  -   version with this one.  We'll post a Xalan against Xerces 1.0.2 next week.
  --- The documentation *does* build from this distribution, although you need to copy a number 
  -   of files from xml-site into the ./xdocs/style directory to get it to complete.
  -   A complete set of updated doc is provided in the ./build/docs directory.
  -   Compiled on NT4SP5 with Sun's JDK 1.1.8.
  +-- This Xalan build is 0.20.0.  It is compatible with Xerces 1.0.2.
  +
  +
   -- IMPORTANT NOTES:
   
   - If you have downloaded Xalan from xml.apache.org/dist/, you have sources and the build.
  
  
  
  1.8       +9 -1      xml-xalan/make.include
  
  Index: make.include
  ===================================================================
  RCS file: /home/cvs/xml-xalan/make.include,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- make.include	2000/03/02 17:39:33	1.7
  +++ make.include	2000/03/06 14:47:48	1.8
  @@ -24,7 +24,13 @@
   
   CURRENT_DIR      = .
   
  -JARNAME = xalan$(JARX)
  +###########################################################
  +# Build-specific tools and flags definitions
  +###########################################################
  +PRODUCT_NAME := xalan
  +VERSION      = _0_20_0
  +JARNAME      = $(PRODUCT_NAME)$(JARX)
  +DISTNAME     = $(PRODUCT_NAME)-j$(VERSION)$(JARX)
   
   ###########################################################
   # Environment-specific tools and flags definitions
  @@ -58,7 +64,9 @@
   RM         = rm -f
   RM-RF      = rm -rf
   CP         = cp -f
  +CPR        = cp -Rvf
   UPDIR      := ..
  +
   # References to standard UNIX or Cygwin tar utility, filtering through gzip
   TARGZ      = tar cvzf
   UNTARGZ      = tar xvzf 
  
  
  
  1.10      +3 -3      xml-xalan/src/org/apache/xalan/xslt/XSLProcessorVersion.java
  
  Index: XSLProcessorVersion.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/src/org/apache/xalan/xslt/XSLProcessorVersion.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- XSLProcessorVersion.java	2000/03/02 10:23:09	1.9
  +++ XSLProcessorVersion.java	2000/03/06 14:47:49	1.10
  @@ -76,7 +76,7 @@
      * Version String like <CODE>"<B>Xalan</B>i v.r[.dd| <B>D</B>nn]"</CODE>.
      * <P>Semantics of the version string are identical to the Xerces project.</P>
      */
  -  public static String S_VERSION = "0.19.5";
  +  public static String S_VERSION = "0.20.0";
   
     /**
      * Constant name of product.
  @@ -109,7 +109,7 @@
      *            -  API or behaviour change.
      *            -  its designated as a reference release.
      */
  -  public static int RELEASE = 19;
  +  public static int RELEASE = 20;
   
     /**
      * Maintenance Drop Number.
  @@ -120,7 +120,7 @@
      *          When missing, it designates the final and complete
      *          development drop for a release.
      */
  -  public static int MAINTENANCE = 5;
  +  public static int MAINTENANCE = 0;
   
     /**
      * Development Drop Number.