- From: Felix Sasaki via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 30 Oct 2012 19:43:44 +0000
- To: public-multilingualweb-lt-commits@w3.org
Update of /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/tools/xslt
In directory hutz:/tmp/cvs-serv9900/tools/xslt
Modified Files:
xmlspec.xsl
Log Message:
Another list output change
Index: xmlspec.xsl
===================================================================
RCS file: /w3ccvs/WWW/International/multilingualweb/lt/drafts/its20/tools/xslt/xmlspec.xsl,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- xmlspec.xsl 12 Oct 2012 15:45:06 -0000 1.4
+++ xmlspec.xsl 30 Oct 2012 19:43:42 -0000 1.5
@@ -1653,7 +1653,7 @@
<!-- IDL stuff isn't handled yet -->
<!-- sitem: simple list item -->
- <!-- just make one paragraph with <br>s between items -->
+ <!-- just make one paragraph with <br>s between items
<xsl:template match="sitem">
<xsl:apply-templates/>
</xsl:template>
@@ -1662,15 +1662,17 @@
<br xmlns="http://www.w3.org/1999/xhtml"/>
<xsl:apply-templates/>
</xsl:template>
-
+ -->
+ <xsl:template match="sitem">
+ <li><xsl:apply-templates/></li>
+ </xsl:template>
+
<!-- slist: simple list -->
<!-- using a <blockquote> to indent the list is very wrong, but it works -->
<xsl:template match="slist">
- <blockquote xmlns="http://www.w3.org/1999/xhtml">
- <p>
+ <ul xmlns="http://www.w3.org/1999/xhtml" style="list-style-type:none">
<xsl:apply-templates/>
- </p>
- </blockquote>
+ </ul>
</xsl:template>
<!-- source: the source of an issue -->
Received on Tuesday, 30 October 2012 19:43:45 UTC