mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
Minor fixes:
- faster doc compilation - remove unused (CVS) script
This commit is contained in:
parent
1a6b0516af
commit
9cab0924b0
@ -1,42 +0,0 @@
|
||||
<?xml version='1.0'?>
|
||||
<!--
|
||||
Generate XML file with out of CVS history using cvs2cl
|
||||
(C) Jelmer Vernooij 2004
|
||||
-->
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:cvs2cl="http://www.red-bean.com/xmlns/cvs2cl/"
|
||||
exclude-result-prefixes="cvs2cl"
|
||||
version="1.0">
|
||||
|
||||
<xsl:import href="../settings.xsl"/>
|
||||
|
||||
<xsl:output method="xml"/>
|
||||
|
||||
<xsl:template match="cvs2cl:changelog">
|
||||
<xsl:element name="revhistory">
|
||||
<xsl:for-each select="cvs2cl:entry">
|
||||
<xsl:variable name="idx"><xsl:number count="cvs2cl:entry"/></xsl:variable>
|
||||
<xsl:if test="not(number($idx)-number($numclentries) > 0)">
|
||||
<xsl:call-template name="clentry"/>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:element>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="clentry">
|
||||
<xsl:element name="revision">
|
||||
<xsl:element name="revnumber">
|
||||
<xsl:value-of select="cvs2cl:file/cvs2cl:revision"/>
|
||||
</xsl:element>
|
||||
<xsl:element name="date">
|
||||
<xsl:value-of select="cvs2cl:date"/>
|
||||
</xsl:element>
|
||||
<xsl:element name="authorinitials">
|
||||
<xsl:value-of select="cvs2cl:author"/>
|
||||
</xsl:element>
|
||||
<xsl:element name="revremark">
|
||||
<xsl:value-of select="cvs2cl:msg"/>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
@ -4,10 +4,7 @@
|
||||
(C) Jelmer Vernooij 2003
|
||||
-->
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:exsl="http://exslt.org/common"
|
||||
xmlns:samba="http://samba.org/common"
|
||||
version="1.1"
|
||||
extension-element-prefixes="exsl">
|
||||
version="1.1">
|
||||
|
||||
<xsl:output method="xml" omit-xml-declaration="yes" indent="yes"/>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user