diff options
author | Karl Berry <karl@freefriends.org> | 2006-02-07 00:28:36 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-02-07 00:28:36 +0000 |
commit | 2b652798b3d6b353a048551f8647ca52945b86d6 (patch) | |
tree | 1f5e56b1e01b84087430216fadb21b99f63da0ea /Master/Tools | |
parent | f53d031a7c76fbc4559d11c47192c93d089c7306 (diff) |
sort items in list files, for stability.
git-svn-id: svn://tug.org/texlive/trunk@1504 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/Tools')
-rw-r--r-- | Master/Tools/README | 6 | ||||
-rw-r--r-- | Master/Tools/collection2list.xsl | 1 | ||||
-rw-r--r-- | Master/Tools/scheme2list.xsl | 2 | ||||
-rw-r--r-- | Master/Tools/tpm2list.xsl | 1 |
4 files changed, 10 insertions, 0 deletions
diff --git a/Master/Tools/README b/Master/Tools/README index df32770ff31..e950d928e6b 100644 --- a/Master/Tools/README +++ b/Master/Tools/README @@ -75,3 +75,9 @@ Master/common.sh: menu_this_platform - list screen_5 - text, must match Master/Tools/Tpm.pm: system list + + + +new year: +- MakeImages.sh +- texmf.cnf diff --git a/Master/Tools/collection2list.xsl b/Master/Tools/collection2list.xsl index 8dd2838a1fe..257cb555f81 100644 --- a/Master/Tools/collection2list.xsl +++ b/Master/Tools/collection2list.xsl @@ -48,6 +48,7 @@ <xsl:template match="TPM:Requires"> <xsl:for-each select="TPM:Documentation|TPM:Package|TPM:TLCore"> +<xsl:sort select="normalize-space(@name)"/> <xsl:text>+</xsl:text> <xsl:value-of select="translate(normalize-space(@name),' ',' ')"/> <xsl:text> </xsl:text> diff --git a/Master/Tools/scheme2list.xsl b/Master/Tools/scheme2list.xsl index 9a25436db48..384fc0d380b 100644 --- a/Master/Tools/scheme2list.xsl +++ b/Master/Tools/scheme2list.xsl @@ -66,11 +66,13 @@ <xsl:template match="TPM:Requires"> <xsl:for-each select="TPM:Package"> +<xsl:sort select="normalize-space(@name)"/> <xsl:text>+</xsl:text> <xsl:value-of select="translate(normalize-space(@name),' ',' ')"/> <xsl:text> </xsl:text> </xsl:for-each> <xsl:for-each select="TPM:TLCore"> +<xsl:sort select="normalize-space(@name)"/> <xsl:text>-</xsl:text> <xsl:value-of select="translate(normalize-space(@name),' ',' ')"/> <xsl:text> </xsl:text> diff --git a/Master/Tools/tpm2list.xsl b/Master/Tools/tpm2list.xsl index 816bd46db22..b632d496fcd 100644 --- a/Master/Tools/tpm2list.xsl +++ b/Master/Tools/tpm2list.xsl @@ -88,6 +88,7 @@ <xsl:template match="TPM:Requires"> <xsl:for-each select="TPM:Package|TPM:TLCore"> +<xsl:sort select="normalize-space(@name)"/> <xsl:text>+</xsl:text> <xsl:value-of select="translate(normalize-space(@name),' ',' ')"/> <xsl:text> </xsl:text> |