http://xml.apache.org/http://www.apache.org/http://www.w3.org/

Overview

Downloads
Getting Started

FAQs

Sample Apps
Command Line
Usage Patterns

C++ API

Extensions
Extensions Library

Release Notes

Bugs
Testing

Release notes for Xalan-C++ version 1.4

Status
 
Changes since Xalan-C++ version 1.3
 

Major updates since version 1.3 include:


Bug reporting
 

All known Xalan-C++ bugs are listed in Bugzilla (the Apache bug database). For a list of open bugs with links to each bug report, see XalanC open bugs. If you find a new bug, please enter a XalanC bug report in this database.

NoteBefore you can enter your first bug report, you must submit your email address to Bugzilla and receive a password.

We strongly encourage you write patches for problems you find and submit them to xalan-dev@xml.apache.org. We review the patches we receive to make sure they do not break something else, and (assuming they do not) include them in our next release. In the interest of fixing bugs, adding enhancements, and addressing outstanding design issues, we sincerely want (and need!) your active participation in the ongoing development of Xalan.


Version of Xerces-C++ to use
 

Xalan-C++ version 1.4 has been tested with Xerces-C++ version 2.1.0. Each Xalan-C++ version 1.4 download includes the Xerces-C++ distribution for the specified platform. For information about including The Xerces-C++ libraries on the path, see Setting up the system path.

Important You may experience unpredictable anomalies if your Xalan and Xerces builds are not in synch. If you download an update to Xalan, check the release notes to determine which version of Xerces you should use.


To-do tasks for future Xalan-C++ releases
 
  • Add support for extension elements

  • Fix any conformance bugs we or our users find

  • Expand the XalanTransformer simplified API.

Watch the Xalan Development Mailing List for more information and for ideas about how you can get involved.



Rebuilding Xalan-C++
 
Rebuilding Xalan-C++
 

What you need from the distributions
 

To rebuild Xalan-C++, you need the Xalan-C++ source files, the Xerces-C++ header files, and for Windows the Xerces-C++ .lib file. If you want to rebuild with the ICU, you also need the ICU header files, and for Windows the ICU .lib file.

The Xalan-C++ source tree is in the src subdirectory of the Xalan-C++ binary distributions. The Xerces-C++ header files are in the include/xercesc tree of the corresponding Xerces-C++ binary distributions. The Windows Xerces .lib file is in the lib directory of the Xerces-C++ Windows binary distribution.

NoteYou can also download Xalan-C++ source distributions from Xalan-C downloads: Xalan-C_1_4-src.zip and Xalan-C_1_4-src.tar.gz. Xerces-C++ source distributions are available from Xerces-C downloads: xerces-c2_1_0-src.zip and xerces-c2_1_0-src.tar.gz.

Keep in mind that at any given point in time the Xalan-C++ and Xerces-C++ source trees in the Apache XML repository may not be consistent. When we release a version of Xalan-C++ we certify that it is compatible with a given version of Xerces-C++. To be safe, stick with Xerces distributions that we certify to be compatible. Reminder: Xalan-C++ version 1.4 is compatible with Xerces-C++ version 2.1.0.

For information on using the International Components for Unicode (ICU), see Using the ICU. Xalan-C++ version 1.4 has been tested with International Components for Unicode(ICU) 2.2 source files. You may be able to use newer ICU releases as they appear.


Steps for doing a Windows build
 

To build Xalan-C++ on Windows, you need Xerces-C++ and MS Visual C++ 6.0 installed with Service Pack 3 for Visual C++ and Visual Studio. You should also apply the bug fixes for the C++ standard library that shipped with Visual C++ 6.0. These fixes are available from the Dinkumware site: http://www.dinkumware.com/vc_fixes.html.

If you do not want to apply the Dinkumware patches, or you are using a different Service Pack, you must rebuild all of the Xerces and Xalan binaries.

Before you do the following, be sure you have provided Visual C++ the paths to the Xerces headers and libraries.

  1. (Optional) If you are rebuilding the ICUBridge, install the ICU so the icu root directory is at the same level as the xml-xerces root directory (see Using the ICU.

    If you want the Xalan and/or testXSLT executable to use ICU support for number formatting and sorting, install the ICU, uncomment the #define XALAN_USE_ICU statement in process.cpp, and use the Visual C++ Project Dependencies command to add ICUBridge to the list of XalanTransformer and/or TestXSLT dependencies (see Enabling ICU support for the Xalan and/or TestXSLT executable).

  2. Use Visual C++ to open the Xalan workspace from the xml-xalan\c\Projects\Win32\VC6.

  3. Use Visual C++ to rebuild everything or specific dynamic link libraries and executables of interest.

Steps for doing a UNIX build
 
  1. Set the XERCESCROOT environment variable to the path to the root of Xerces-C++.

  2. Set the XALANCROOT environment variable to the path to the root of the Xalan-C++ distribution.

  3. (Optional) If you are including the ICUBridge, install the ICU, use the shell to define XALAN_USE_ICU and to set the ICUROOT environment variable to the path to the ICU root. For more information, see (see Using the ICU)

  4. Change directory to xml-xalan/c/src in the Xalan-C++ distribution.

  5. Run the runConfigure utility with at least the platform flag (Linux) or the platform, C compilier, and C++ compiler flags (AIX) as indicated below.

    Linux:  ./runConfigure -p linux
    AIX:    ./runConfigure -p aix -c xlc -x xlC

    HP-UX 11 (32 bit):  ./runConfigure -p hp-11 -c cc -x aCC

    HP-UX 11 (64 bit):  ./runConfigure -p hp-11 -c cc -x aCC -b 64

    Solaris:  ./runConfigure -p Solaris -c cc -x CC

    To see the other runConfigure flags you may include, use the help flag:

         ./runConfigure -h

  6. Purge the previous build:

         make clean

  7. Run the new build:

         make
    or
         make targ

    where targ is omitted or is all (rebuild all), lib (the XSLT library), Xalan (the Xalan executable), or testXSLT (the testXSLT executable). ICUBridge is included in the build of Xalan and TestXSLT if XALAN_USE_ICU is defined.

Note64-bit builds for AIX and Solaris have not yet been tested. To perform such a build, you must use the corresponding 64-bit Xerces distribution and run the runConfigure script with the -b 64 option (as indicated above for the HP-UX 11 64-bit build).

Rebuilding a sample application
 

The Windows32 distribution includes a Visual C++ workspace for the sample applications. This workspace is in the samples directory. If you modify a sample and want to recompile it, you can recompile the .cpp file(s) and rebuild the executable.

The make files that come with the UNIX distributions include targets for rebuilding one or all of the sample applications (with the exception of the ThreadSafe sample, which in its current form only runs under Windows). To rebuild one or more sample applications, go to the xml-xalan/c/src directory and run

     make targ

where targ is Samples (all the samples), XalanTransform, SimpleTransform, StreamTransform, UseStylesheetParam, TraceListen, CompileStylesheet, (Windows only) ThreadSafe XPathWrapper, ExternalFunctions,or ApacheModuleXSLT.

NoteFor information on building Apache Module, see ApacheModuleXSLT


Getting in Touch
 

Your feedback is more than welcome. Offers of help are even more so! Perhaps you would like to contribute to the ongoing development, testing, or documentation of Xalan-C++.

Please email your comments, questions, suggestions, bug reports, and offers to help to Xalan Development Mailing List.


Cumulative history of software changes
 

The following sections list the changes in each release since Xalan-C++ version 0.40.0.

Changes for Xalan-C++ version 1.3
 

Major updates since version 1.2 include:

  • A new and simplified command-line utility: the Xalan executable
  • New XPath samples exploiting the XPathEvaluator C API and illustrating serialization of an XPath result set: SimpleXPathCAPI and SerializeNodeSet
  • A new wrapper class that lets you pass in a Xerces DOM as input for a transformation
  • Bug fixes.
  • Changed XPathException to XalanXPathException because of a clash with a new Xerces class of the same name.

Changes for Xalan-C++ version 1.2
 

Major updates since version 1.1 include:


Changes for Xalan-C++ version 1.1
 

In addition to adding to the list of platforms on which Xalan-C++ builds, our focus for this release has been on bug fixes, performance enhancements, and providing a simplified C++ and C API for performing standard transformations. Major updates since version 1.0 include:

  • Added HP-UX 11 build.

  • Added Solaris build.

  • Greatly improved performance.

  • Improved conformance to the XSLT specification.

  • Simplified the C++ API and provided a C API for performing standard transformations with the XalanTransformer class and associated header files.

  • Added sample illustrating use of XalanTransformer and the new C++ API: XalanTransform.

  • Added sample illustrating use of XalanTransformer, the new C API, and how to run Xalan-C++ and perform transformations on an Apache Web server: ApacheModuleXSLT.

  • Added the StreamTransform sample.

  • Eliminated dependencies on non-public Xerces headers; accordingly can now build with the Xerces distribution.

  • Fixed namespace mapping and inheritance problems.

  • Fixed failure of <copy-of ...> to include CRLFs (if any) in the result.

  • Fixed bug sorting in reverse document order based on position.

  • Fixed <xsl:number> bug with use of letter-value="traditional" for "classical" Greek numbering.

  • Fixed use of <xsl:fallback> within a top-level extension function.

  • Fixed HTML output method bug. The <HEAD> element was not including a <META> tag with the encoding.

  • Fixed bug using key() in match patterns to find descendants.

  • Fixed bug using the id() function in complex match patterns.

  • Fixed problem outputting multiple single-character CDATA sections.

  • Fixed problem outputting whitespace characters.

  • Fixed problem transforming from a stream on UNIX platforms.

  • Fixed a bug with the document() function, which was generating a syntax error if called in the following manner: document(string,/).

  • Fixed named templates bug accepting global parameter when called with a parameter of the same name that the named template does not recognize.

Changes for Xalan-C++ version 1.0
 

Major updates since version 0.40.0 include:

  • Full support for namespace handling

  • Full implementation of the format-number() function and support for the decimal-format element

  • Integration with the International Components for Unicode (ICU) for number formatting, sorting, and output encoding

  • Support for the exclude-result-prefixes attribute

  • Support for the output encoding attribute

Changes for Xalan-C++ version 0.40.0
 

Major updates since version 0.30.0 include:

  • Permitting OS file names (as well as URLs) as command-line arguments with TestXSLT

  • Stricter compliance for HTML and XML output

  • Improved handling of relative URI's

  • Improved handling of Import and Include

  • Better namespace handling (although there are still problems here)

  • Support for Document() function

  • Support for XPath predicates

  • Better handling of parameters to stylesheet and templates

  • Full implementation of axes ( with the exception of namespace:: )




Copyright © 2001 The Apache Software Foundation. All Rights Reserved.