summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/Tools/README6
-rw-r--r--Master/Tools/collection2list.xsl1
-rw-r--r--Master/Tools/scheme2list.xsl2
-rw-r--r--Master/Tools/tpm2list.xsl1
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),' ','&#10;')"/>
<xsl:text>&#10;</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),' ','&#10;')"/>
<xsl:text>&#10;</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),' ','&#10;')"/>
<xsl:text>&#10;</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),' ','&#10;')"/>
<xsl:text>&#10;</xsl:text>