You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by sh...@apache.org on 2012/09/09 08:17:02 UTC

svn commit: r1382404 [2/2] - in /xalan/c/branches/XalanDocs/xalan/java/trunk/xdocs/sources: entities.ent xalan-j/ xalan-jsite.xml xalan/contact_us.xml xalan/index.xml xalan/overview.xml xalan/resources.xml

Modified: xalan/c/branches/XalanDocs/xalan/java/trunk/xdocs/sources/xalan/overview.xml
URL: http://svn.apache.org/viewvc/xalan/c/branches/XalanDocs/xalan/java/trunk/xdocs/sources/xalan/overview.xml?rev=1382404&r1=1382403&r2=1382404&view=diff
==============================================================================
--- xalan/c/branches/XalanDocs/xalan/java/trunk/xdocs/sources/xalan/overview.xml (original)
+++ xalan/c/branches/XalanDocs/xalan/java/trunk/xdocs/sources/xalan/overview.xml Sun Sep  9 06:17:02 2012
@@ -1,188 +1,188 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE s1 SYSTEM "../../style/dtd/document.dtd">
-
-<!--
- * Copyright 1999-2012 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
--->
-<!-- $Id: overview.xml 338218 2005-07-19 17:38:45Z mcnamara $ -->
- 
-<s1 title="&xslt4j; Overview">
-<ul>
-<li><link anchor="intro">Introduction</link></li>
-<li><link anchor="features">&xslt4j; Features</link></li>
-<li><link anchor="towork">Getting to work with &xslt4j;</link></li>
-<li><link anchor="uptospeed">Getting up to speed with XSLT</link></li>
-<li><link anchor="glossary">Glossary</link></li>
-</ul>
-<anchor name="intro"/>
-<s2 title="Introduction">
-<p>&xslt4j; fully implements <resource-ref idref="xslt"/> 
-   and the <resource-ref idref="xpath"/>. XSLT is the first part of the XSL stylesheet language for 
-   XML. It includes the XSL Transformation vocabulary and XPath, a language for addressing parts of 
-   XML documents. For links to background materials, discussion groups, frequently asked questions, 
-   and tutorials on XSLT, see <link anchor="uptospeed">Getting up to speed with XSLT</link>.</p> 
-<note>XSL also includes a vocabulary for formatting documents, which is not part of &xslt4j;. 
-      For more information, see <resource-ref idref="xsl"/> and the <jump
-      href="http://xmlgraphics.apache.org/fop">Apache XML FOP (Formatting Objects Project)</jump>.</note>
-<p>XSL stylesheets are written in the XSLT language. An XSL stylesheet contains instructions 
-   for transforming XML documents into XML, HTML, XHTML or plain text. In structural terms, an XSL
-   stylesheet specifies the transformation of one tree of 
-   nodes (the XML input) into another tree of nodes (the output or transformation result).</p>
-<note>The XSL stylesheet may generate and refer to cascading style sheets (<jump
-      href="http://www.w3.org/Style/CSS/">CSS</jump>) as part of its output.</note> 
-<p>In the following example, the foo.xsl stylesheet is used to transform foo.xml into foo.out:</p>
-<p>foo.xml:</p>
-<source>&lt;?xml version="1.0"?>
-&lt;doc>Hello&lt;/doc></source>
-        <p>foo.xsl:</p>
-        <source>&lt;?xml version="1.0"?> 
-&lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
-&lt;xsl:template match="doc">
-&lt;out>&lt;xsl:value-of select="."/>&lt;/out>
-&lt;/xsl:template>
-&lt;/xsl:stylesheet></source>
-<p>foo.out:</p>
-<source>&lt;out>Hello&lt;/out></source>
-<p>By default, &xslt4j; uses &xml4j;, but it may be configured with system properties to work with 
-   other XML parsers (see <link idref="usagepatterns" anchor="plug">Plugging in a Transformer and 
-   XML parser</link>). The input may be submitted in the form of a stream of XML markup (from a URI, 
-   a character or byte stream, or another transformation), a SAX InputStream, or a DOM Node.</p>
-<p>&xslt4j; performs the transformations specified in the XSL stylesheet and packages a sequence of 
-   SAX events that may be serialized to an output stream or writer, used to build a DOM tree, or 
-   forwarded as input to another transformation.</p>
-</s2>
-
-<anchor name="features"/>
-<s2 title="&xslt4j; Features">
-<ul> 
-  <li>Includes an Interpretive processor for use in a tooling and debugging environment and 
-      a Compiling processor (XSLTC) for use in a high performance runtime environment.<br/><br/></li>
-  <li>Implements the relevant W3C specifications: <resource-ref idref="xslt"/> and 
-      <resource-ref idref="xpath"/>.<br/><br/></li>
-  <li>Implements <resource-ref idref="jaxp13-longname-withacronym"/>, and builds on 
-      <resource-ref idref="sax2"/> and <resource-ref idref="dom3"/>.<br/><br/></li>
-  <li>Implements the XPath API in <resource-ref idref="jaxp13"/>.<br/><br/></li>
-  <li>May be configured to work with any XML parser, such as
-      <jump href="http://xml.apache.org/xerces-j/index.html">&xml4j;</jump>, that implements 
-      <resource-ref idref="jaxp13"/> (see <link idref="usagepatterns" anchor="plug">Plugging in an XML
-      parser</link>).<br/><br/></li>
-  <li>Can process Stream, SAX or DOM input, and output to a Stream, SAX or DOM.<br/><br/></li>
-  <li>Transformations may be chained (the output of one transformation may be the input for
-      another).<br/><br/></li>
-  <li>May be run from the <link idref="commandline">command line</link> for convenient file-to-file
-      transformations.<br/><br/></li>
-  <li>Includes an <link idref="usagepatterns" anchor="applet">applet wrapper</link>.<br/><br/></li>
-  <li>May be used in a <link idref="samples" anchor="servlet">servlet</link> to transform XML documents 
-      into HTML and serve the results to clients.<br/><br/></li>
-  <li>Supports the creation of <link idref="extensions">Java and scripting language extensions</link>. 
-      and provides a growing library of extension elements and functions.</li>
-</ul> 
-</s2>
-
-<anchor name="towork"/>
-<s2 title="Getting to work with &xslt4j;">
-<p>For instructions and some suggestions about how to get started using the XSLT Interpretive
-   processor, see <link idref="getstarted">Getting Started with Interpretive Processing</link>.</p>
-<p>For instructions and some suggestions about how to get started using the XSLT Compiling
-   processor, see <link idref="xsltc_usage">Getting Started with XSLTC</link>.</p>   
-</s2>
-
-<anchor name="uptospeed"/>
-<s2 title="Getting up to speed with XSLT">
-<p>If you are still working through the details of the XSLT spec (the W3C 1.0 Recommendation), you 
-   may want to consult one or more of the following:</p>
-<ul>
-  <li>XSLT - XSL Transformations in 
-      <jump href="http://www.brics.dk/~amoeller/XML/">
-      The XML Revolution: Technologies for the future Web</jump> by Anders M&oslash;ller and Michael 
-      I. Schwartzbach (Web pages, but designed for sequential reading)<br/><br/></li>
-  <li>Crane Softwright's <jump href="http://www.CraneSoftwrights.com/training/">Free preview of 
-      Practical Transformation Using XSLT and XPath</jump><br/><br/></li>
-  <li>Doug Tidwell's <jump href="http://www.oreilly.com/catalog/xslt/">XSLT</jump>, O'Reilly, 2001
-      <br/><br/></li>                 
-  <li>Bob Ducharme's <jump href="http://www.manning.com/ducharme/index.html">XSLT Quickly</jump>, 
-      Manning Publications, 2001<br/><br/></li>                 
-  <li>John Robert Gardner and Zarella Rendon's 
-      <jump href="http://vig.prenhall.com/catalog/academic/product/1,4096,0130404462,00.html">XSLT 
-      and XPath: A Guide to Transformations</jump>, Prentice-Hall, 2001<br/><br/></li>                 
-  <li>Michael Kay's <jump href="http://www.wrox.com/books/0764543814.shtml">XSLT 
-      Programmer's Reference</jump>, 2nd ed., Wrox Press, 2001<br/><br/></li>               
-<!--      
-  <li>Neil Bradley's <jump href="http://www.awlonline.com/product/0,2627,0201674874,00.html">XSL 
-      Companion</jump>, Addison-Wesley, 2000<br/><br/></li>                 
-  <li>Khun Yee Fung's <jump href="http://www.awlonline.com/product/0,2627,0201711036,00.html">XSLT: 
-      Working with XML and HTML</jump>, Addison-Wesley, 2001<br/><br/></li>  -->
-  <li>Dave Pawson's <resource-ref idref="dpawsonxslfaq"/> to search out particular answers and 
-      techniques<br/><br/></li>
-  <li>Miloslav Nic's <jump href="http://zvon.vscht.cz/HTMLonly/XSLTutorial/Books/Book1/index.html">XSL 
-      Tutorial</jump>, a collection of stylesheet examples<br/><br/></li>
-  <li>Elliotte Rusty Harold's <jump href="http://www.ibiblio.org/xml/books/bible2/chapters/ch17.html">
-      Chapter 17 of the XML Bible: XSL Transformations</jump><br/><br/></li>
-  <li>The Mulberry <jump href="http://www.mulberrytech.com/xsl/xsl-list/">XSL-List -- Open Forum on 
-      XSL</jump> (of interest to XSL users at all levels)<br/><br/></li>
-  <li>Objects by Design's <jump href="http://www.objectsbydesign.com/projects/xmi_to_html.html">
-      Transforming XMI to HTML</jump> (oriented towards XMI, "an XML-based, stream representation 
-      of a UML model," but also covers "generic" XML transformations) and their related 
-      <jump href="http://objectsbydesign.com/projects/xslt/xslt_by_example.html">XSLT by Example</jump>
-      <br/><br/></li>         
-  <li>OASIS (the Organization for the Advancement of Structured Information Standards): 
-      <jump href="http://www.oasis-open.org/cover/xsl.html">Extensible Stylesheet Language (XSL)</jump> 
-      by Robin Cover<br/><br/></li>       
-</ul>
-<p>When you come across other useful introductory or background materials, please email 
-   <human-resource-ref idref="xalandev"/>, so we can add them to this list.</p>
-    
-</s2><anchor name="glossary"/>
-<s2 title="Glossary">
-<gloss>
-  <label>XSLT Namespace</label>
-  <item>The <jump href="http://www.w3.org/TR/REC-xml-names/">XML namespace</jump> for XSLT. An XML 
-        namespace is a collection of element and attribute names, identified by a Unique Resource 
-        Identifier (URI), which often takes the form of a URL, but is really just a unique string, 
-        not a pointer to a web page. The XSLT namespace URI is http://www.w3.org/1999/XSL/Transform. 
-        In each XSLT stylesheet, you must declare this namespace in the stylesheet element tag and 
-        bind it to a local prefix. Like the XSLT specification, we always use xsl as the XSLT 
-        namespace prefix in our descriptions and examples, although you are free to bind any prefix 
-        to this namespace.<br/><br/></item>
-        
-  <label>XSL Instruction</label>
-  <item>Any tag associated with the XSLT namespace.<br/><br/></item>
-        
-  <label>Template</label>
-  <item>An element, usually with child elements, that specifies a "rule" or set of 
-        instructions to perform when a particular kind of node is encountered in the source 
-        tree.<br/><br/></item>
-                
-  <label>XSL Template Instruction</label>
-  <item>Any tag that occurs inside an xsl:template element and is associated with the XSLT 
-        namespace.<br/><br/></item>
-                   
-  <label>Source Tree</label>
-  <item>The XML tree input to the XSL process.<br/><br/></item>
-        
-  <label>Result Tree</label>
-  <item>The tree that is output by the XSL process.<br/><br/></item>
-                
-  <label>Match Pattern</label>
-  <item>The part of a template that defines the kind(s) of nodes to which the template 
-        applies.<br/><br/></item>
-
-</gloss>
-<p>For more definitions of XSLT terminology, see Dave Pawson's 
-   <jump href="http://www.dpawson.co.uk/xsl/xslvocab.html">XSLT Terminology
-   Clarification</jump> and the Glossary in Michael Kay's 
-   <jump href="http://www.wrox.com/books/0764543814.shtml">XSLT Programmer's Reference</jump>.</p>
-</s2>
-</s1> 
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE s1 SYSTEM "../../style/dtd/document.dtd">
+
+<!--
+ * Copyright 1999-2012 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+-->
+<!-- $Id: overview.xml 338218 2005-07-19 17:38:45Z mcnamara $ -->
+ 
+<s1 title="&xslt4j; Overview">
+<ul>
+<li><link anchor="intro">Introduction</link></li>
+<li><link anchor="features">&xslt4j; Features</link></li>
+<li><link anchor="towork">Getting to work with &xslt4j;</link></li>
+<li><link anchor="uptospeed">Getting up to speed with XSLT</link></li>
+<li><link anchor="glossary">Glossary</link></li>
+</ul>
+<anchor name="intro"/>
+<s2 title="Introduction">
+<p>&xslt4j; fully implements <resource-ref idref="xslt"/> 
+   and the <resource-ref idref="xpath"/>. XSLT is the first part of the XSL stylesheet language for 
+   XML. It includes the XSL Transformation vocabulary and XPath, a language for addressing parts of 
+   XML documents. For links to background materials, discussion groups, frequently asked questions, 
+   and tutorials on XSLT, see <link anchor="uptospeed">Getting up to speed with XSLT</link>.</p> 
+<note>XSL also includes a vocabulary for formatting documents, which is not part of &xslt4j;. 
+      For more information, see <resource-ref idref="xsl"/> and the <jump
+      href="http://xmlgraphics.apache.org/fop">Apache XML FOP (Formatting Objects Project)</jump>.</note>
+<p>XSL stylesheets are written in the XSLT language. An XSL stylesheet contains instructions 
+   for transforming XML documents into XML, HTML, XHTML or plain text. In structural terms, an XSL
+   stylesheet specifies the transformation of one tree of 
+   nodes (the XML input) into another tree of nodes (the output or transformation result).</p>
+<note>The XSL stylesheet may generate and refer to cascading style sheets (<jump
+      href="http://www.w3.org/Style/CSS/">CSS</jump>) as part of its output.</note> 
+<p>In the following example, the foo.xsl stylesheet is used to transform foo.xml into foo.out:</p>
+<p>foo.xml:</p>
+<source>&lt;?xml version="1.0"?>
+&lt;doc>Hello&lt;/doc></source>
+        <p>foo.xsl:</p>
+        <source>&lt;?xml version="1.0"?> 
+&lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+&lt;xsl:template match="doc">
+&lt;out>&lt;xsl:value-of select="."/>&lt;/out>
+&lt;/xsl:template>
+&lt;/xsl:stylesheet></source>
+<p>foo.out:</p>
+<source>&lt;out>Hello&lt;/out></source>
+<p>By default, &xslt4j; uses &xml4j;, but it may be configured with system properties to work with 
+   other XML parsers (see <link idref="usagepatterns" anchor="plug">Plugging in a Transformer and 
+   XML parser</link>). The input may be submitted in the form of a stream of XML markup (from a URI, 
+   a character or byte stream, or another transformation), a SAX InputStream, or a DOM Node.</p>
+<p>&xslt4j; performs the transformations specified in the XSL stylesheet and packages a sequence of 
+   SAX events that may be serialized to an output stream or writer, used to build a DOM tree, or 
+   forwarded as input to another transformation.</p>
+</s2>
+
+<anchor name="features"/>
+<s2 title="&xslt4j; Features">
+<ul> 
+  <li>Includes an Interpretive processor for use in a tooling and debugging environment and 
+      a Compiling processor (XSLTC) for use in a high performance runtime environment.<br/><br/></li>
+  <li>Implements the relevant W3C specifications: <resource-ref idref="xslt"/> and 
+      <resource-ref idref="xpath"/>.<br/><br/></li>
+  <li>Implements <resource-ref idref="jaxp13-longname-withacronym"/>, and builds on 
+      <resource-ref idref="sax2"/> and <resource-ref idref="dom3"/>.<br/><br/></li>
+  <li>Implements the XPath API in <resource-ref idref="jaxp13"/>.<br/><br/></li>
+  <li>May be configured to work with any XML parser, such as
+      <jump href="http://xml.apache.org/xerces-j/index.html">&xml4j;</jump>, that implements 
+      <resource-ref idref="jaxp13"/> (see <link idref="usagepatterns" anchor="plug">Plugging in an XML
+      parser</link>).<br/><br/></li>
+  <li>Can process Stream, SAX or DOM input, and output to a Stream, SAX or DOM.<br/><br/></li>
+  <li>Transformations may be chained (the output of one transformation may be the input for
+      another).<br/><br/></li>
+  <li>May be run from the <link idref="commandline">command line</link> for convenient file-to-file
+      transformations.<br/><br/></li>
+  <li>Includes an <link idref="usagepatterns" anchor="applet">applet wrapper</link>.<br/><br/></li>
+  <li>May be used in a <link idref="samples" anchor="servlet">servlet</link> to transform XML documents 
+      into HTML and serve the results to clients.<br/><br/></li>
+  <li>Supports the creation of <link idref="extensions">Java and scripting language extensions</link>. 
+      and provides a growing library of extension elements and functions.</li>
+</ul> 
+</s2>
+
+<anchor name="towork"/>
+<s2 title="Getting to work with &xslt4j;">
+<p>For instructions and some suggestions about how to get started using the XSLT Interpretive
+   processor, see <link idref="getstarted">Getting Started with Interpretive Processing</link>.</p>
+<p>For instructions and some suggestions about how to get started using the XSLT Compiling
+   processor, see <link idref="xsltc_usage">Getting Started with XSLTC</link>.</p>   
+</s2>
+
+<anchor name="uptospeed"/>
+<s2 title="Getting up to speed with XSLT">
+<p>If you are still working through the details of the XSLT spec (the W3C 1.0 Recommendation), you 
+   may want to consult one or more of the following:</p>
+<ul>
+  <li>XSLT - XSL Transformations in 
+      <jump href="http://www.brics.dk/~amoeller/XML/">
+      The XML Revolution: Technologies for the future Web</jump> by Anders M&oslash;ller and Michael 
+      I. Schwartzbach (Web pages, but designed for sequential reading)<br/><br/></li>
+  <li>Crane Softwright's <jump href="http://www.CraneSoftwrights.com/training/">Free preview of 
+      Practical Transformation Using XSLT and XPath</jump><br/><br/></li>
+  <li>Doug Tidwell's <jump href="http://www.oreilly.com/catalog/xslt/">XSLT</jump>, O'Reilly, 2001
+      <br/><br/></li>                 
+  <li>Bob Ducharme's <jump href="http://www.manning.com/ducharme/index.html">XSLT Quickly</jump>, 
+      Manning Publications, 2001<br/><br/></li>                 
+  <li>John Robert Gardner and Zarella Rendon's 
+      <jump href="http://vig.prenhall.com/catalog/academic/product/1,4096,0130404462,00.html">XSLT 
+      and XPath: A Guide to Transformations</jump>, Prentice-Hall, 2001<br/><br/></li>                 
+  <li>Michael Kay's <jump href="http://www.wrox.com/books/0764543814.shtml">XSLT 
+      Programmer's Reference</jump>, 2nd ed., Wrox Press, 2001<br/><br/></li>               
+<!--      
+  <li>Neil Bradley's <jump href="http://www.awlonline.com/product/0,2627,0201674874,00.html">XSL 
+      Companion</jump>, Addison-Wesley, 2000<br/><br/></li>                 
+  <li>Khun Yee Fung's <jump href="http://www.awlonline.com/product/0,2627,0201711036,00.html">XSLT: 
+      Working with XML and HTML</jump>, Addison-Wesley, 2001<br/><br/></li>  -->
+  <li>Dave Pawson's <resource-ref idref="dpawsonxslfaq"/> to search out particular answers and 
+      techniques<br/><br/></li>
+  <li>Miloslav Nic's <jump href="http://zvon.vscht.cz/HTMLonly/XSLTutorial/Books/Book1/index.html">XSL 
+      Tutorial</jump>, a collection of stylesheet examples<br/><br/></li>
+  <li>Elliotte Rusty Harold's <jump href="http://www.ibiblio.org/xml/books/bible2/chapters/ch17.html">
+      Chapter 17 of the XML Bible: XSL Transformations</jump><br/><br/></li>
+  <li>The Mulberry <jump href="http://www.mulberrytech.com/xsl/xsl-list/">XSL-List -- Open Forum on 
+      XSL</jump> (of interest to XSL users at all levels)<br/><br/></li>
+  <li>Objects by Design's <jump href="http://www.objectsbydesign.com/projects/xmi_to_html.html">
+      Transforming XMI to HTML</jump> (oriented towards XMI, "an XML-based, stream representation 
+      of a UML model," but also covers "generic" XML transformations) and their related 
+      <jump href="http://objectsbydesign.com/projects/xslt/xslt_by_example.html">XSLT by Example</jump>
+      <br/><br/></li>         
+  <li>OASIS (the Organization for the Advancement of Structured Information Standards): 
+      <jump href="http://www.oasis-open.org/cover/xsl.html">Extensible Stylesheet Language (XSL)</jump> 
+      by Robin Cover<br/><br/></li>       
+</ul>
+<p>When you come across other useful introductory or background materials, please email 
+   <human-resource-ref idref="xalandev"/>, so we can add them to this list.</p>
+    
+</s2><anchor name="glossary"/>
+<s2 title="Glossary">
+<gloss>
+  <label>XSLT Namespace</label>
+  <item>The <jump href="http://www.w3.org/TR/REC-xml-names/">XML namespace</jump> for XSLT. An XML 
+        namespace is a collection of element and attribute names, identified by a Unique Resource 
+        Identifier (URI), which often takes the form of a URL, but is really just a unique string, 
+        not a pointer to a web page. The XSLT namespace URI is http://www.w3.org/1999/XSL/Transform. 
+        In each XSLT stylesheet, you must declare this namespace in the stylesheet element tag and 
+        bind it to a local prefix. Like the XSLT specification, we always use xsl as the XSLT 
+        namespace prefix in our descriptions and examples, although you are free to bind any prefix 
+        to this namespace.<br/><br/></item>
+        
+  <label>XSL Instruction</label>
+  <item>Any tag associated with the XSLT namespace.<br/><br/></item>
+        
+  <label>Template</label>
+  <item>An element, usually with child elements, that specifies a "rule" or set of 
+        instructions to perform when a particular kind of node is encountered in the source 
+        tree.<br/><br/></item>
+                
+  <label>XSL Template Instruction</label>
+  <item>Any tag that occurs inside an xsl:template element and is associated with the XSLT 
+        namespace.<br/><br/></item>
+                   
+  <label>Source Tree</label>
+  <item>The XML tree input to the XSL process.<br/><br/></item>
+        
+  <label>Result Tree</label>
+  <item>The tree that is output by the XSL process.<br/><br/></item>
+                
+  <label>Match Pattern</label>
+  <item>The part of a template that defines the kind(s) of nodes to which the template 
+        applies.<br/><br/></item>
+
+</gloss>
+<p>For more definitions of XSLT terminology, see Dave Pawson's 
+   <jump href="http://www.dpawson.co.uk/xsl/xslvocab.html">XSLT Terminology
+   Clarification</jump> and the Glossary in Michael Kay's 
+   <jump href="http://www.wrox.com/books/0764543814.shtml">XSLT Programmer's Reference</jump>.</p>
+</s2>
+</s1> 

Modified: xalan/c/branches/XalanDocs/xalan/java/trunk/xdocs/sources/xalan/resources.xml
URL: http://svn.apache.org/viewvc/xalan/c/branches/XalanDocs/xalan/java/trunk/xdocs/sources/xalan/resources.xml?rev=1382404&r1=1382403&r2=1382404&view=diff
==============================================================================
--- xalan/c/branches/XalanDocs/xalan/java/trunk/xdocs/sources/xalan/resources.xml (original)
+++ xalan/c/branches/XalanDocs/xalan/java/trunk/xdocs/sources/xalan/resources.xml Sun Sep  9 06:17:02 2012
@@ -1,187 +1,187 @@
-<?xml version="1.0" encoding="US-ASCII"?>
-<!DOCTYPE resources [
-  <!ENTITY % externalEntity SYSTEM "../entities.ent">
-  %externalEntity;
-  <!ELEMENT resources (resource|human-resource)+>
-  <!ELEMENT resource EMPTY>
-  <!ATTLIST resource 		id CDATA #IMPLIED
-				title CDATA #IMPLIED
-				location CDATA #IMPLIED>
-  <!ELEMENT human-resource EMPTY>
-  <!ATTLIST human-resource 	id CDATA #IMPLIED
-				name CDATA #IMPLIED
-				mailto CDATA #IMPLIED>
-   ]>  
-<resources> 	
-  <resource id="xslt4j" 
-            title="&xslt4j;" 
-            location="http://xalan.apache.org/xalan-j"/>
-  <resource id="xslt4j-current" 
-            title="&xslt4j-current;" 
-            location="http://xalan.apache.org/xalan-j"/>
-
-  <resource id="xslt4j-distdir" 
-            title="xalan-j distribution directory" 
-            location="http://www.apache.org/dyn/closer.cgi/xalan/xalan-j"/>
-
-  <resource id="xslt4j-distdir-previous" 
-            title="xalan-j archive directory" 
-            location="http://archive.apache.org/dist/xml/xalan-j/"/>
-
-  <resource id="xml4j-used" 
-            title="&xml4j-used;" 
-            location="http://xerces.apache.org/xerces2-j/index.html"/>
-  <resource id="xml4j-distdir" 
-            title="xerces-j distribution directory" 
-            location="http://www.apache.org/dyn/closer.cgi/xerces/j/"/>
-  <resource id="ant" title="Ant" 
-            location="http://jakarta.apache.org/ant/index.html"/>
-  <resource id="ApacheLicense" 
-            title="The Apache Software License, Version 1.1" 
-            location="http://xml.apache.org/dist/LICENSE.txt"/>
-  <resource id="jira"
-            title="JIRA (the Apache issue tracker)"
-            location="http://issues.apache.org/jira/browse/XALANJ"/>
-  <resource id="buglist"
-            title="XalanJ2 open bugs"         
-            location="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;mode=hide&amp;pid=10584&amp;resolutionIds=-1&amp;sorter/field=issuekey&amp;sorter/order=DESC"/>
-  <resource id="bsf"
-            title="Bean Scripting Framework (BSF)"
-            location="http://jakarta.apache.org/bsf/index.html"/>
-
-  <resource id="Readme" 
-            title="Xalan Repository Release Notes" 
-            location="http://www.apache.org/websrc/cvsweb.cgi/xml-xalan/README"/>
-
-  <resource id="mulberryxsl-list" 
-            title="Mulberry XSL Mailing List" 
-            location="http://mulberrytech.com/xsl/xsl-list/index.html"/>
-
-  <resource id="dpawsonxslfaq" 
-            title="XSL Frequently Asked Questions" 
-            location="http://www.dpawson.co.uk/xsl/"/>
-
-  <resource id="xsl" 
-            title="Extensible Stylesheet Language (XSL) Version 1.0"
-            location="http://www.w3.org/TR/xsl"/>
-
-  <resource id="xslt" 
-            title="XSL Transformations (XSLT) Version 1.0"
-            location="http://www.w3.org/TR/xslt"/>
-
-  <resource id="xpath" 
-            title="XML Path Language (XPath) Version 1.0" 
-            location="http://www.w3.org/TR/xpath"/>            
-
-  <resource id="dom" 
-            title="DOM" 
-            location="http://www.w3.org/DOM"/>
-  <resource id="dom2" 
-            title="DOM level 2" 
-            location="http://www.w3.org/TR/DOM-Level-2/"/>
-  <resource id="dom3" 
-            title="DOM level 3" 
-            location="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/"/>
-
-  <resource id="sax" 
-            title="SAX" 
-            location="http://www.megginson.com/SAX/sax.html"/>
-  <resource id="sax2" 
-            title="SAX 2" 
-            location="http://sax.sourceforge.net/"/>
-  <resource id="jaxp" 
-            title="Java API for XML Parsing 1.0" 
-            location="http://java.sun.com/webservices/jaxp/dist/1.1/docs/api/index.html"/>
-  <resource id="jaxp11" 
-            title="Java API for XML Processing 1.1" 
-            location="http://java.sun.com/webservices/jaxp/dist/1.1/jaxp-1_1-spec.pdf"/>
-  <resource id="jaxp12" 
-            title="Java API for XML Processing 1.2" 
-            location="http://java.sun.com/webservices/jaxp/index.jsp"/>            
-  <resource id="jaxp13-longname-withacronym"
-            title="&jaxp13-long;" 
-            location="http://java.sun.com/webservices/jaxp/index.jsp"/>            
-  <resource id="jaxp13"
-            title="&jaxp13-short;"
-            location="http://java.sun.com/webservices/jaxp/index.jsp"/>
-  <resource id="jsr063"
-            title="Java Specification Request 63"
-            location="http://jcp.org/aboutJava/communityprocess/review/jsr063/"/>
-
-  <resource id="tomcat" 
-            title="The Jakarta Site - Apache Tomcat"
-            location="http://tomcat.apache.org/"/>
-
-  <resource id="xmlapirepository"
-            title="xml-commons/java/external/src"
-            location="http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/"/>
-
-  <resource id="endorsed"
-            title="Endorsed Standards Override Mechanism"
-            location="http://java.sun.com/j2se/1.4.2/docs/guide/standards/"/>
-            
-  <resource id="apache-mail-archives"
-            title="Apache mail archives"
-            location="http://mail-archives.apache.org/mod_mbox/"/>
-            
-  <resource id="old-bugzilla"
-            title="Apache bugzilla"
-            location="http://issues.apache.org/bugzilla/"/>
-
-  <human-resource id="xalandev" 
-                  name="Xalan Development Mailing List" 
-                  mailto="xalan-dev@apache.org"/>
-
-  <human-resource id="sboag"
-                  name="Scott Boag"
-                  mailto="scott_boag@us.ibm.com"/>
-  <human-resource id="scurcuru"
-                  name="Shane Curcuru"
-                  mailto="Shane_Curcuru@us.ibm.com"/>
-  <human-resource id="pdick"
-                  name="Paul Dick"
-                  mailto="Paul_Dick@us.ibm.com"/>
-  <human-resource id="jkesselman"
-                  name="Joseph Kesselman"
-                  mailto="keshlam@us.ibm.com"/>
-  <human-resource id="dleslie"
-                  name="Donald Leslie"
-                  mailto="donald_leslie@us.ibm.com"/>
-  <human-resource id="cmanolache"
-                  name="Costin Manolache"
-                  mailto="cmanolache@yahoo.com"/>
-  <human-resource id="dmarston"
-                  name="David Marston"
-                  mailto="David_Marston@us.ibm.com"/>
-  <human-resource id="mmidy"
-                  name="Myriam Midy"
-                  mailto="myriam_midy@us.ibm.com"/>
-  <human-resource id="gpeskin"
-                  name="Gary L Peskin"
-                  mailto="garyp@firstech.com"/>
-  <human-resource id="jgentilin"
-                  name="John Gentilin"
-                  mailto="johng@apache.org"/>
-  <human-resource id="mkwan"
-                  name="Morris Kwan"
-                  mailto="mkwan@ca.ibm.com"/>
-  <human-resource id="ilene"
-                  name="Ilene Seelemann"
-                  mailto="ilene@ca.ibm.com"/>
-  <human-resource id="zongaro"
-                  name="Henry Zongaro"
-                  mailto="zongaro@ca.ibm.com"/>
-  <human-resource id="minchau"
-                  name="Brian Minchau"
-                  mailto="minchau@ca.ibm.com"/>
-  <human-resource id="igor"
-                  name="Igor Hersht"
-                  mailto="igorh@ca.ibm.com"/>                  
-  <human-resource id="jycli"
-                  name="Christine Li"
-                  mailto="jycli@ca.ibm.com"/>
-  <human-resource id="jtong"
-                  name="Joanne Tong"
-                  mailto="joannet@ca.ibm.com"/>                                                                       
-
-</resources>
+<?xml version="1.0" encoding="US-ASCII"?>
+<!DOCTYPE resources [
+  <!ENTITY % externalEntity SYSTEM "../entities.ent">
+  %externalEntity;
+  <!ELEMENT resources (resource|human-resource)+>
+  <!ELEMENT resource EMPTY>
+  <!ATTLIST resource 		id CDATA #IMPLIED
+				title CDATA #IMPLIED
+				location CDATA #IMPLIED>
+  <!ELEMENT human-resource EMPTY>
+  <!ATTLIST human-resource 	id CDATA #IMPLIED
+				name CDATA #IMPLIED
+				mailto CDATA #IMPLIED>
+   ]>  
+<resources> 	
+  <resource id="xslt4j" 
+            title="&xslt4j;" 
+            location="http://xalan.apache.org/xalan-j"/>
+  <resource id="xslt4j-current" 
+            title="&xslt4j-current;" 
+            location="http://xalan.apache.org/xalan-j"/>
+
+  <resource id="xslt4j-distdir" 
+            title="xalan-j distribution directory" 
+            location="http://www.apache.org/dyn/closer.cgi/xalan/xalan-j"/>
+
+  <resource id="xslt4j-distdir-previous" 
+            title="xalan-j archive directory" 
+            location="http://archive.apache.org/dist/xml/xalan-j/"/>
+
+  <resource id="xml4j-used" 
+            title="&xml4j-used;" 
+            location="http://xerces.apache.org/xerces2-j/index.html"/>
+  <resource id="xml4j-distdir" 
+            title="xerces-j distribution directory" 
+            location="http://www.apache.org/dyn/closer.cgi/xerces/j/"/>
+  <resource id="ant" title="Ant" 
+            location="http://jakarta.apache.org/ant/index.html"/>
+  <resource id="ApacheLicense" 
+            title="The Apache Software License, Version 1.1" 
+            location="http://xml.apache.org/dist/LICENSE.txt"/>
+  <resource id="jira"
+            title="JIRA (the Apache issue tracker)"
+            location="http://issues.apache.org/jira/browse/XALANJ"/>
+  <resource id="buglist"
+            title="XalanJ2 open bugs"         
+            location="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;mode=hide&amp;pid=10584&amp;resolutionIds=-1&amp;sorter/field=issuekey&amp;sorter/order=DESC"/>
+  <resource id="bsf"
+            title="Bean Scripting Framework (BSF)"
+            location="http://jakarta.apache.org/bsf/index.html"/>
+
+  <resource id="Readme" 
+            title="Xalan Repository Release Notes" 
+            location="http://www.apache.org/websrc/cvsweb.cgi/xml-xalan/README"/>
+
+  <resource id="mulberryxsl-list" 
+            title="Mulberry XSL Mailing List" 
+            location="http://mulberrytech.com/xsl/xsl-list/index.html"/>
+
+  <resource id="dpawsonxslfaq" 
+            title="XSL Frequently Asked Questions" 
+            location="http://www.dpawson.co.uk/xsl/"/>
+
+  <resource id="xsl" 
+            title="Extensible Stylesheet Language (XSL) Version 1.0"
+            location="http://www.w3.org/TR/xsl"/>
+
+  <resource id="xslt" 
+            title="XSL Transformations (XSLT) Version 1.0"
+            location="http://www.w3.org/TR/xslt"/>
+
+  <resource id="xpath" 
+            title="XML Path Language (XPath) Version 1.0" 
+            location="http://www.w3.org/TR/xpath"/>            
+
+  <resource id="dom" 
+            title="DOM" 
+            location="http://www.w3.org/DOM"/>
+  <resource id="dom2" 
+            title="DOM level 2" 
+            location="http://www.w3.org/TR/DOM-Level-2/"/>
+  <resource id="dom3" 
+            title="DOM level 3" 
+            location="http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/"/>
+
+  <resource id="sax" 
+            title="SAX" 
+            location="http://www.megginson.com/SAX/sax.html"/>
+  <resource id="sax2" 
+            title="SAX 2" 
+            location="http://sax.sourceforge.net/"/>
+  <resource id="jaxp" 
+            title="Java API for XML Parsing 1.0" 
+            location="http://java.sun.com/webservices/jaxp/dist/1.1/docs/api/index.html"/>
+  <resource id="jaxp11" 
+            title="Java API for XML Processing 1.1" 
+            location="http://java.sun.com/webservices/jaxp/dist/1.1/jaxp-1_1-spec.pdf"/>
+  <resource id="jaxp12" 
+            title="Java API for XML Processing 1.2" 
+            location="http://java.sun.com/webservices/jaxp/index.jsp"/>            
+  <resource id="jaxp13-longname-withacronym"
+            title="&jaxp13-long;" 
+            location="http://java.sun.com/webservices/jaxp/index.jsp"/>            
+  <resource id="jaxp13"
+            title="&jaxp13-short;"
+            location="http://java.sun.com/webservices/jaxp/index.jsp"/>
+  <resource id="jsr063"
+            title="Java Specification Request 63"
+            location="http://jcp.org/aboutJava/communityprocess/review/jsr063/"/>
+
+  <resource id="tomcat" 
+            title="The Jakarta Site - Apache Tomcat"
+            location="http://tomcat.apache.org/"/>
+
+  <resource id="xmlapirepository"
+            title="xml-commons/java/external/src"
+            location="http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/"/>
+
+  <resource id="endorsed"
+            title="Endorsed Standards Override Mechanism"
+            location="http://java.sun.com/j2se/1.4.2/docs/guide/standards/"/>
+            
+  <resource id="apache-mail-archives"
+            title="Apache mail archives"
+            location="http://mail-archives.apache.org/mod_mbox/"/>
+            
+  <resource id="old-bugzilla"
+            title="Apache bugzilla"
+            location="http://issues.apache.org/bugzilla/"/>
+
+  <human-resource id="xalandev" 
+                  name="Xalan Development Mailing List" 
+                  mailto="xalan-dev@apache.org"/>
+
+  <human-resource id="sboag"
+                  name="Scott Boag"
+                  mailto="scott_boag@us.ibm.com"/>
+  <human-resource id="scurcuru"
+                  name="Shane Curcuru"
+                  mailto="Shane_Curcuru@us.ibm.com"/>
+  <human-resource id="pdick"
+                  name="Paul Dick"
+                  mailto="Paul_Dick@us.ibm.com"/>
+  <human-resource id="jkesselman"
+                  name="Joseph Kesselman"
+                  mailto="keshlam@us.ibm.com"/>
+  <human-resource id="dleslie"
+                  name="Donald Leslie"
+                  mailto="donald_leslie@us.ibm.com"/>
+  <human-resource id="cmanolache"
+                  name="Costin Manolache"
+                  mailto="cmanolache@yahoo.com"/>
+  <human-resource id="dmarston"
+                  name="David Marston"
+                  mailto="David_Marston@us.ibm.com"/>
+  <human-resource id="mmidy"
+                  name="Myriam Midy"
+                  mailto="myriam_midy@us.ibm.com"/>
+  <human-resource id="gpeskin"
+                  name="Gary L Peskin"
+                  mailto="garyp@firstech.com"/>
+  <human-resource id="jgentilin"
+                  name="John Gentilin"
+                  mailto="johng@apache.org"/>
+  <human-resource id="mkwan"
+                  name="Morris Kwan"
+                  mailto="mkwan@ca.ibm.com"/>
+  <human-resource id="ilene"
+                  name="Ilene Seelemann"
+                  mailto="ilene@ca.ibm.com"/>
+  <human-resource id="zongaro"
+                  name="Henry Zongaro"
+                  mailto="zongaro@ca.ibm.com"/>
+  <human-resource id="minchau"
+                  name="Brian Minchau"
+                  mailto="minchau@ca.ibm.com"/>
+  <human-resource id="igor"
+                  name="Igor Hersht"
+                  mailto="igorh@ca.ibm.com"/>                  
+  <human-resource id="jycli"
+                  name="Christine Li"
+                  mailto="jycli@ca.ibm.com"/>
+  <human-resource id="jtong"
+                  name="Joanne Tong"
+                  mailto="joannet@ca.ibm.com"/>                                                                       
+
+</resources>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xalan.apache.org
For additional commands, e-mail: commits-help@xalan.apache.org