curcuru 00/07/19 08:25:19
Modified: . README build.xml make.include
src/org/apache/xalan/xslt XSLProcessorVersion.java
Log:
Update version numbers for upcoming 1.2D01 release
Will include user-submitted patches
Revision Changes Path
1.14 +11 -33 xml-xalan/README
Index: README
===================================================================
RCS file: /home/cvs/xml-xalan/README,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- README 2000/03/16 20:19:45 1.13
+++ README 2000/07/19 15:25:12 1.14
@@ -1,42 +1,20 @@
README for xml-xalan project at xml.apache.org
--- This Xalan build is 1.1D01. (i.e. the first Development drop to a 1.1
build)
- It is compatible with Xerces 1.0.3.
+-- This Xalan build is 1.2D01. (i.e. the first Development drop to a 1.2
build)
+ It is compatible with Xerces 1.1.2
-
-- IMPORTANT NOTES:
-- If you have downloaded Xalan from xml.apache.org/dist/, you have sources
and the build.
- Open docs/overview.html for information about setting up and using Xalan.
+- If you have downloaded from http://xml.apache.org/dist/xalan-j/,
+ you have sources and the build. Open docs/overview.html for
+ information about setting up and using Xalan.
See docs/apidocs/index.html for Javadoc.
-
-- If you have obtained Xalan from the Apache XML CVS repository, you only
have sources,
- so you must build Xalan, including the HTML documentation.
-
-Basic Build Instructions for xml-xalan:
-
-- The ./build.xml 'Ant' build file sort-of works, but is not currently used
for these
- distributions and not really supported. We'd like to move that way in a
while.
-
-- Use GNU Make or an equivalent. On win32 you might try
http://sourceware.cygnus.com/cygwin
- Note that you will need the full Cygwin toolkit, since the make relies on
a number
- of other unix-like utilities like cp, rm, etc. Also, the toolkit must be
on your PATH
- *before* most other Win32 utilities, notably the NT Resource Kit. Set
MAKE_MODE as follows:
- set MAKE_MODE=UNIX
-
-- The makefiles use:
- ifeq (,$(findstring usr,$(PATH)))
- to determine if we're on Win32 (usr not in PATH) or a unix flavor (usr
probably
- in PATH). Please let [EMAIL PROTECTED] know if you have a better way.
-- As long as xml-xalan is built in the sibling directory to xml-xerces, you
shouldn't
- have to set any environment variables. See Makefile for other environment
notes.
+- If you have obtained Xalan from the Apache XML CVS repository,
+ you only have sources, so you must build Xalan, including the HTML docs.
-- Common make targets from xml-xalan directory:
- 'make all' to build everything.
- 'make build' to compile and build the jar.
- 'make jars' to build jar files.
- 'make docs' to build the docs (they will be put into the
docs_production directory).
- 'make samples' to build the samples and create samples.jar.
- 'make clean' as you'd expect.
+- For build instructions and other late-breaking news, see either
+ the documentation in your download, or the full set of doc on the
+ live website http://xml.apache.org/xalan/
+ Look in the Getting Started or Release Notes sections first.
1.23 +2 -2 xml-xalan/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-xalan/build.xml,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- build.xml 2000/07/14 18:46:49 1.22
+++ build.xml 2000/07/19 15:25:12 1.23
@@ -56,7 +56,7 @@
- Much of this file stolen from Stefano's xml-xerces build.xml
- $Id: build.xml,v 1.22 2000/07/14 18:46:49 dleslie Exp $
+ $Id: build.xml,v 1.23 2000/07/19 15:25:12 curcuru Exp $
==================================================================== -->
@@ -67,7 +67,7 @@
<!-- ===================================================================
-->
<target name="init">
- <property name="version" value="1_1"/>
+ <property name="version" value="1_2_D01"/>
<property name="xerces.bin.dir" value="/xerces-1_1_2"/>
<property name="name" value="xalan"/>
1.12 +1 -1 xml-xalan/make.include
Index: make.include
===================================================================
RCS file: /home/cvs/xml-xalan/make.include,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- make.include 2000/06/28 16:43:33 1.11
+++ make.include 2000/07/19 15:25:13 1.12
@@ -30,7 +30,7 @@
# Build-specific tools and flags definitions
###########################################################
PRODUCT_NAME := xalan
-VERSION = _1_1
+VERSION = _1_2_D01
JARNAME = $(PRODUCT_NAME)$(JARX)
JARDISTNAME = $(PRODUCT_NAME)-j$(VERSION)$(JARX)
TARDISTNAME = $(PRODUCT_NAME)-j$(VERSION)$(TARX)
1.13 +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.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- XSLProcessorVersion.java 2000/06/28 16:52:28 1.12
+++ XSLProcessorVersion.java 2000/07/19 15:25:17 1.13
@@ -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 = "1.1";
+ public static String S_VERSION = "1.2D01";
/**
* Constant name of product.
@@ -109,7 +109,7 @@
* - API or behaviour change.
* - its designated as a reference release.
*/
- public static int RELEASE = 1;
+ public static int RELEASE = 2;
/**
* Maintenance Drop Number.
@@ -140,5 +140,5 @@
* well as defect fixes. 'D' drops may not be as stable as
* the final releases.
*/
- public static int DEVELOPMENT = 0;
+ public static int DEVELOPMENT = 1;
}