class and style

git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@536 4b5297f7-1745-476d-ba37-a9c6900126ab
This commit is contained in:
Peter Saint-Andre 2007-02-14 02:59:16 +00:00
parent a20276973b
commit 24c54ffcba
2 changed files with 8 additions and 5 deletions

View File

@ -57,11 +57,18 @@
class CDATA ''
style CDATA '' >
<!ELEMENT ul (li+) >
<!ATTLIST ul
class CDATA ''
style CDATA '' >
<!ELEMENT ol (li+) >
<!ATTLIST ol
class CDATA ''
start CDATA ''
type CDATA '' >
style CDATA '' >
<!ELEMENT li (#PCDATA | p | link | note | tt | em | strong | span)* >
<!ATTLIST li
class CDATA ''
style CDATA '' >
<!ELEMENT img EMPTY>
<!ATTLIST img src CDATA '' >
<!ELEMENT link (#PCDATA)* >

View File

@ -662,10 +662,6 @@
<xsl:if test='$start.count &gt; 0'>
<xsl:attribute name='start'><xsl:value-of select='@start'/></xsl:attribute>
</xsl:if>
<xsl:variable name='type.count' select='count(@type)'/>
<xsl:if test='$type.count &gt; 0'>
<xsl:attribute name='type'><xsl:value-of select='@type'/></xsl:attribute>
</xsl:if>
<xsl:variable name='class.count' select='count(@class)'/>
<xsl:if test='$class.count &gt; 0'>
<xsl:attribute name='class'><xsl:value-of select='@class'/></xsl:attribute>