- From: Felix Sasaki via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 11 Nov 2012 16:43:48 +0000
- To: public-multilingualweb-lt-commits@w3.org
Update of /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/tools/xslt
In directory hutz:/tmp/cvs-serv7583/tools/xslt
Modified Files:
xmlspec-i18n-itstagset.xsl xmlspec.xsl
Log Message:
Handling of simple lists
Index: xmlspec.xsl
===================================================================
RCS file: /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/tools/xslt/xmlspec.xsl,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- xmlspec.xsl 30 Oct 2012 20:39:59 -0000 1.6
+++ xmlspec.xsl 11 Nov 2012 16:43:46 -0000 1.7
@@ -1667,13 +1667,6 @@
<li><xsl:apply-templates/></li>
</xsl:template>
- <!-- slist: simple list -->
- <xsl:template match="ulist[@role='slist']">
- <ul xmlns="http://www.w3.org/1999/xhtml" style="list-style-type:none">
- <xsl:apply-templates/>
- </ul>
- </xsl:template>
-
<!-- source: the source of an issue -->
<xsl:template match="source">
<p xmlns="http://www.w3.org/1999/xhtml">
Index: xmlspec-i18n-itstagset.xsl
===================================================================
RCS file: /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/tools/xslt/xmlspec-i18n-itstagset.xsl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- xmlspec-i18n-itstagset.xsl 18 Oct 2012 12:35:24 -0000 1.3
+++ xmlspec-i18n-itstagset.xsl 11 Nov 2012 16:43:46 -0000 1.4
@@ -330,6 +330,12 @@
</xsl:choose>
</div>
</xsl:template>
+<!-- Create simple lists. -->
+ <xsl:template match="ulist[@role='slist']">
+ <ul xmlns="http://www.w3.org/1999/xhtml" class="slist">
+ <xsl:apply-templates/>
+ </ul>
+ </xsl:template>
<!-- This deletes the CVS version statement -->
<xsl:template match="p[contains(.,'$Id: itstagset.odd')]"/>
Received on Sunday, 11 November 2012 16:43:49 UTC