Changeset 241f9a9 in clfs-embedded for BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot
- Timestamp:
- May 10, 2017, 7:37:58 AM (8 years ago)
- Branches:
- master
- Children:
- 1a15276
- Parents:
- cc565e2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/VERSION
rcc565e2 r241f9a9 1 1 <?xml version='1.0'?> <!-- -*- nxml -*- vim: set foldlevel=2: --> 2 2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 3 xmlns:fm="http://freshmeat.net/projects/freshmeat-submit/"4 3 xmlns:sf="http://sourceforge.net/" 5 4 xmlns:dyn="http://exslt.org/dynamic" 6 5 xmlns:saxon="http://icl.com/saxon" 7 exclude-result-prefixes=" fmsf"6 exclude-result-prefixes="sf" 8 7 version='1.0'> 9 8 … … 11 10 12 11 <xsl:param name="get"/> 13 <xsl:param name="VERSION" select="string(document('')// fm:Version[1])"/>14 <xsl:param name="Tag" select="concat('V',translate(string(document('')// fm:Version[1]),'.',''))"/>15 <xsl:param name="DistroTitle" select="string(document('')// fm:Branch[1])"/>12 <xsl:param name="VERSION" select="string(document('')//sf:Version[1])"/> 13 <xsl:param name="Tag" select="concat('V',translate(string(document('')//sf:Version[1]),'.',''))"/> 14 <xsl:param name="DistroTitle" select="string(document('')//sf:Branch[1])"/> 16 15 <xsl:param name="sf-relid" select="0"/> 17 16 … … 22 21 <xsl:param name="VersionFileURL">$URL: https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl/VERSION $</xsl:param> 23 22 24 <xsl:strip-space elements=" fm:*"/>23 <xsl:strip-space elements="sf:*"/> 25 24 26 < fm:project>27 < fm:Project>DocBook</fm:Project>28 < fm:Branch>XSL Stylesheets</fm:Branch>29 < fm:Version>1.73.2</fm:Version>25 <sf:project> 26 <sf:Project>DocBook</sf:Project> 27 <sf:Branch>XSL Stylesheets</sf:Branch> 28 <sf:Version>1.73.2</sf:Version> 30 29 <!-- 31 < fm:License>MIT/X Consortium License</fm:License>30 <sf:License>MIT/X Consortium License</sf:License> 32 31 --> 33 <fm:Release-Focus> 34 <!-- * Initial freshmeat announcement --> 32 <sf:Release-Focus> 35 33 <!-- * Documentation --> 36 34 <!-- * Code cleanup --> … … 41 39 <!-- * Minor security fixes --> 42 40 <!-- * Major security fixes --> 43 </ fm:Release-Focus>44 < fm:Home-Page-URL>http://sourceforge.net/projects/docbook/</fm:Home-Page-URL>45 < fm:Gzipped-Tar-URL>http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.tar.gz?download</fm:Gzipped-Tar-URL>46 < fm:Zipped-Tar-URL>http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.zip?download</fm:Zipped-Tar-URL>47 < fm:Bzipped-Tar-URL>http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.bz2?download</fm:Bzipped-Tar-URL>48 < fm:Changelog-URL>http://sourceforge.net/project/shownotes.php?release_id={SFRELID}</fm:Changelog-URL>49 < fm:CVS-URL>http://docbook.svn.sourceforge.net/viewvc/docbook/</fm:CVS-URL>50 < fm:Mailing-List-URL>http://lists.oasis-open.org/archives/docbook-apps/</fm:Mailing-List-URL>51 < fm:Changes>This is a bug-fix update to the 1.73.1 release.52 </ fm:Changes>53 </ fm:project>41 </sf:Release-Focus> 42 <sf:Home-Page-URL>http://sourceforge.net/projects/docbook/</sf:Home-Page-URL> 43 <sf:Gzipped-Tar-URL>http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.tar.gz?download</sf:Gzipped-Tar-URL> 44 <sf:Zipped-Tar-URL>http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.zip?download</sf:Zipped-Tar-URL> 45 <sf:Bzipped-Tar-URL>http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.bz2?download</sf:Bzipped-Tar-URL> 46 <sf:Changelog-URL>http://sourceforge.net/project/shownotes.php?release_id={SFRELID}</sf:Changelog-URL> 47 <sf:CVS-URL>http://docbook.svn.sourceforge.net/viewvc/docbook/</sf:CVS-URL> 48 <sf:Mailing-List-URL>http://lists.oasis-open.org/archives/docbook-apps/</sf:Mailing-List-URL> 49 <sf:Changes>This is a bug-fix update to the 1.73.1 release. 50 </sf:Changes> 51 </sf:project> 54 52 55 53 <xsl:template match="/" priority="-100"> … … 73 71 </xsl:message> 74 72 </xsl:if> 75 <xsl:apply-templates select="// fm:project"/>73 <xsl:apply-templates select="//sf:project"/> 76 74 </xsl:otherwise> 77 75 </xsl:choose> 78 76 </xsl:template> 79 77 80 <xsl:template match=" fm:project">78 <xsl:template match="sf:project"> 81 79 <xsl:apply-templates/> 82 80 <xsl:text> </xsl:text> 83 <xsl:apply-templates select=" fm:Changes" mode="text"/>81 <xsl:apply-templates select="sf:Changes" mode="text"/> 84 82 </xsl:template> 85 83 86 <xsl:template match=" fm:Changes"/>84 <xsl:template match="sf:Changes"/> 87 85 88 <xsl:template match=" fm:Gzipped-Tar-URL|fm:Zipped-Tar-URL|fm:Bzipped-Tar-URL">86 <xsl:template match="sf:Gzipped-Tar-URL|sf:Zipped-Tar-URL|sf:Bzipped-Tar-URL"> 89 87 <xsl:value-of select="local-name(.)"/> 90 88 <xsl:text>: </xsl:text> … … 95 93 </xsl:template> 96 94 97 <xsl:template match=" fm:Changelog-URL">95 <xsl:template match="sf:Changelog-URL"> 98 96 <xsl:value-of select="local-name(.)"/> 99 97 <xsl:text>: </xsl:text> … … 104 102 </xsl:template> 105 103 106 <xsl:template match=" fm:*">104 <xsl:template match="sf:*"> 107 105 <xsl:value-of select="local-name(.)"/> 108 106 <xsl:text>: </xsl:text>
Note:
See TracChangeset
for help on using the changeset viewer.