Ignore:
Timestamp:
09/09/2007 08:59:49 AM (17 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
e443e502
Parents:
336d44e3
Message:

Updated DocBook-XSL code to version 1.73.2

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@7105 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stylesheets/lfs-xsl/docbook-xsl-snapshot/VERSION

    r336d44e3 raaab3da7  
    33  xmlns:fm="http://freshmeat.net/projects/freshmeat-submit/"
    44  xmlns:sf="http://sourceforge.net/"
     5  xmlns:dyn="http://exslt.org/dynamic"
     6  xmlns:saxon="http://icl.com/saxon"
    57  exclude-result-prefixes="fm sf"
    68  version='1.0'>
    79
     10<xsl:output omit-xml-declaration="yes"/>
     11
     12<xsl:param name="get"/>
    813<xsl:param name="VERSION" select="string(document('')//fm:Version[1])"/>
     14<xsl:param name="Tag" select="concat('V',translate(string(document('')//fm:Version[1]),'.',''))"/>
    915<xsl:param name="DistroTitle" select="string(document('')//fm:Branch[1])"/>
     16<xsl:param name="sf-relid" select="0"/>
     17
    1018<xsl:param name="DistroName">docbook-xsl</xsl:param>
    1119<xsl:param name="PreviousRelease">1.72.0</xsl:param>
    12 <xsl:param name="PreviousReleaseRevision">6553</xsl:param>
     20<xsl:param name="PreviousReleaseRevision">6549</xsl:param>
    1321<xsl:param name="Revision">$Revision$</xsl:param>
    1422<xsl:param name="VersionFileURL">$URL: https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl/VERSION $</xsl:param>
    15 <xsl:param name="sf-relid" select="0"/>
     23
    1624<xsl:strip-space elements="fm:*"/>
    1725
     
    1927  <fm:Project>DocBook</fm:Project>
    2028  <fm:Branch>XSL Stylesheets</fm:Branch>
    21   <fm:Version>snapshot_7094</fm:Version>
     29  <fm:Version>1.73.2</fm:Version>
    2230<!--
    2331  <fm:License>MIT/X Consortium License</fm:License>
     
    2836<!-- * Code cleanup -->
    2937<!-- * Minor feature enhancements -->
    30 Major feature enhancements
    31 <!-- * Minor bugfixes -->
     38<!-- * Major feature enhancements -->
     39Minor bugfixes
    3240<!-- * Major bugfixes -->
    3341<!-- * Minor security fixes -->
     
    4149  <fm:CVS-URL>http://docbook.svn.sourceforge.net/viewvc/docbook/</fm:CVS-URL>
    4250  <fm:Mailing-List-URL>http://lists.oasis-open.org/archives/docbook-apps/</fm:Mailing-List-URL>
    43   <fm:Changes>This is a bug-fix release with a few feature enhancements.
     51  <fm:Changes>This is a bug-fix update to the 1.73.1 release.
    4452</fm:Changes>
    4553</fm:project>
    4654
    4755<xsl:template match="/" priority="-100">
    48   <xsl:if test="$sf-relid = 0">
    49     <xsl:message terminate="yes">
    50       <xsl:text>You must specify the sf-relid as a parameter.</xsl:text>
    51     </xsl:message>
    52   </xsl:if>
    53 
    54   <xsl:apply-templates select="//fm:project"/>
     56  <xsl:choose>
     57    <xsl:when test="$get = 'Tag'">
     58      <xsl:value-of select="$Tag"/>
     59    </xsl:when>
     60    <xsl:when test="$get = 'PreviousRelease'">
     61      <xsl:value-of select="$PreviousRelease"/>
     62    </xsl:when>
     63    <xsl:when test="$get = 'PreviousReleaseRevision'">
     64      <xsl:value-of select="$PreviousReleaseRevision"/>
     65    </xsl:when>
     66    <xsl:when test="$get = 'DistroTitle'">
     67      <xsl:value-of select="$DistroTitle"/>
     68    </xsl:when>
     69    <xsl:otherwise>
     70      <xsl:if test="$sf-relid = 0">
     71        <xsl:message terminate="yes">
     72         <xsl:text>You must specify the sf-relid as a parameter.</xsl:text>
     73        </xsl:message>
     74      </xsl:if>
     75      <xsl:apply-templates select="//fm:project"/>
     76    </xsl:otherwise>
     77  </xsl:choose>
    5578</xsl:template>
    5679
    5780<xsl:template match="fm:project">
    58   <xsl:text>&#10;</xsl:text>
    5981  <xsl:apply-templates/>
    6082  <xsl:text>&#10;</xsl:text>
Note: See TracChangeset for help on using the changeset viewer.