mkwan 2002/09/06 09:42:53 Modified: java/src/org/apache/xalan/lib Redirect.java Log: Add comments for the new namespace (http://xml.apache.org/xalan/redirect). Revision Changes Path 1.17 +5 -5 xml-xalan/java/src/org/apache/xalan/lib/Redirect.java Index: Redirect.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/lib/Redirect.java,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- Redirect.java 29 Nov 2001 19:26:11 -0000 1.16 +++ Redirect.java 6 Sep 2002 16:42:53 -0000 1.17 @@ -81,9 +81,10 @@ * Implements three extension elements to allow an XSLT transformation to * redirect its output to multiple output files. * - * <p>You must declare the Xalan namespace (xmlns:lxslt="http://xml.apache.org/xslt"), - * a namespace for the extension prefix (such as xmlns:redirect="org.apache.xalan.lib.Redirect"), - * and declare the extension namespace as an extension (extension-element-prefixes="redirect"). + * It is accessed by specifying a namespace URI as follows: + * <pre> + * xmlns:redirect="http://xml.apache.org/xalan/redirect" + * </pre> * * <p>You can either just use redirect:write, in which case the file will be * opened and immediately closed after the write, or you can bracket the @@ -116,8 +117,7 @@ * <PRE> * <?xml version="1.0"?> * <xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0" - * xmlns:lxslt="http://xml.apache.org/xslt" - * xmlns:redirect="org.apache.xalan.lib.Redirect" + * xmlns:redirect="http://xml.apache.org/xalan/redirect" * extension-element-prefixes="redirect"> * * <xsl:template match="/">
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
