Ignore:
Timestamp:
2007-05-25T16:12:13+12:00 (17 years ago)
Author:
lh92
Message:

Added the copyright information

Location:
trunk/gsdl-documentation/manuals/processing
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl-documentation/manuals/processing/xml-to-index.xsl

    r13785 r14099  
    2222    <div class="indexlink"><a href="../../index.html"><xsl:value-of select="/Manual/SupplementaryText/Text[@id='top_index']"/></a></div>
    2323   
    24   <xsl:apply-templates select="Text"/>
     24    <xsl:apply-templates select="Text"/>
    2525    <xsl:apply-templates select="Comment"/>
    2626    <xsl:call-template name="version_and_date"/>   
     
    3232      <xsl:apply-templates select="Chapter"/>
    3333    </dl>
     34   
     35    <hr/>
     36    <div style="text-align:center;"><xsl:apply-templates select="/Manual/Section[@id='copyright']/Content"/></div>
    3437  </body>
    3538</html>
  • trunk/gsdl-documentation/manuals/processing/xml-to-many-html.xsl

    r13861 r14099  
    4848      </xsl:for-each>
    4949    </xsl:if>
    50     </td></tr></table>
     50    </td></tr>
     51    </table>
     52   
     53    <hr/>
     54    <div style="text-align:center;"><xsl:apply-templates select="/Manual/Section[@id='copyright']/Content"/></div>
    5155      </body>
    5256    </html>   
  • trunk/gsdl-documentation/manuals/processing/xml-to-one-html.xsl

    r13785 r14099  
    4343            <xsl:if test="FootnoteList"><hr/><xsl:apply-templates select="FootnoteList"/></xsl:if> 
    4444            </td></tr></table>
     45    <hr/>
     46    <div style="text-align:center;"><xsl:apply-templates select="/Manual/Section[@id='copyright']/Content"/></div>
    4547    </body>
    4648  </html>
  • trunk/gsdl-documentation/manuals/processing/xml-to-pdf.xsl

    r13861 r14099  
    44<xsl:include href="fo-common.xsl"/>
    55<xsl:include href="crossref-pdf.xsl"/>
     6
     7<xsl:variable name="licence" select="document('GNUFDL.xml')/Licence"/>
    68
    79<xsl:attribute-set name="toc-heading-style">
     
    144146  </xsl:for-each>
    145147</xsl:for-each>
     148
     149<!-- GNUFDL -->
     150<fo:block xsl:use-attribute-sets="toc-chapter-style">
     151<fo:basic-link color="black" internal-destination="{$licence/@id}"><xsl:apply-templates select="$licence/Title/Text"/>
     152  <fo:leader leader-pattern="space"/><fo:page-number-citation ref-id="{$licence/@id}"/>
     153</fo:basic-link>
     154</fo:block>
     155
    146156<!-- figure and table lists -->
    147157<!--
     
    199209</xsl:if>
    200210</xsl:for-each>
     211
     212<fo:block break-after="page"/>
     213
     214<!-- the GNU FDL -->
     215<!-- header -->
     216<fo:block xsl:use-attribute-sets="page-heading-style"><fo:marker marker-class-name="head"><xsl:value-of select="$licence/Title"/></fo:marker></fo:block>
     217<!-- licence content -->
     218<fo:block><xsl:apply-templates select="$licence/*[not(Filename)]"/></fo:block>
     219
    201220</fo:flow>
    202221</fo:page-sequence>
  • trunk/gsdl-documentation/manuals/processing/xml-to-top-index.xsl

    r13861 r14099  
    3232        <dl><xsl:apply-templates select="file"><xsl:with-param name="manualNodes" select="document(file/@href)"/></xsl:apply-templates></dl>
    3333      </xsl:for-each>
     34     
     35      <hr/>
     36      <div style="text-align:center;">   
     37      <xsl:apply-templates select="Manual[1]/file" mode="copyright">
     38        <xsl:with-param name="manualNodes" select="document(Manual[1]/file/@href)"/>       
     39      </xsl:apply-templates>
     40      </div>
    3441    </body>
    3542</html>
     
    4148</xsl:template>
    4249
     50<xsl:template match="file" mode="copyright">
     51<xsl:param name="manualNodes"/>
     52<xsl:apply-templates select="$manualNodes/Manual/Section[@id='copyright']/Content"/>
     53</xsl:template>
     54
    4355<xsl:template match="Chapter">
    4456    <dd><a href="en/html/Chapter_{@id}.htm"><xsl:apply-templates select="Title/Text"/></a><xsl:text>  </xsl:text>[<a href="es/html/Chapter_{@id}.htm"><xsl:value-of select="$es"/></a><xsl:text>  </xsl:text><a href="fr/html/Chapter_{@id}.htm"><xsl:value-of select="$fr"/></a><xsl:text>  </xsl:text><a href="ru/html/Chapter_{@id}.htm"><xsl:value-of select="$ru"/></a>]</dd> 
Note: See TracChangeset for help on using the changeset viewer.