You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by dl...@apache.org on 2001/01/11 19:34:09 UTC

cvs commit: xml-xalan/java/xdocs/sources xalan-collate.xsl

dleslie     01/01/11 10:34:09

  Added:       java/xdocs/sources xalan-collate.xsl
  Log:
  Used to collate xml documentation into single source for transformation
  to fo and pdf.
  
  Revision  Changes    Path
  1.1                  xml-xalan/java/xdocs/sources/xalan-collate.xsl
  
  Index: xalan-collate.xsl
  ===================================================================
  <?xml version="1.0"?>
  
  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  
  <xsl:template match ="/">
    <documentation>
      <chapter id="whatsnew"><xsl:copy-of select="document('xalan/whatsnew.xml')"/></chapter>
      <chapter id="overview"><xsl:copy-of select="document('xalan/overview.xml')"/></chapter>
      <chapter id="getstarted"><xsl:copy-of select="document('xalan/getstarted.xml')"/></chapter>
      <chapter id="samples"><xsl:copy-of select="document('xalan/samples.xml')"/></chapter>
      <chapter id="commandline"><xsl:copy-of select="document('xalan/commandline.xml')"/></chapter>
      <chapter id="usagepatterns"><xsl:copy-of select="document('xalan/usagepatterns.xml')"/></chapter>
      <chapter id="extensions"><xsl:copy-of select="document('xalan/extensions.xml')"/></chapter>
      <chapter id="extensionslib"><xsl:copy-of select="document('xalan/extensionslib.xml')"/></chapter>
      <chapter id="readme"><xsl:copy-of select="document('xalan/readme.xml')"/></chapter>
      <chapter id="api">
        <s1 title="Java API">
          <p>Javadoc for the entire Xalan-Java API. See 
          <jump href="apidocs/index.html">Javadoc</jump>.</p>
        </s1>
      </chapter>
    </documentation>
  </xsl:template>
  </xsl:stylesheet>