- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 15 Jul 2010 16:49:49 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/tools
In directory hutz:/tmp/cvs-serv11152/tools
Modified Files:
generate-spec-source.xsl specgen.xsl
Log Message:
renamed "common attributes" to "global attributes"
Index: generate-spec-source.xsl
===================================================================
RCS file: /sources/public/html5/markup/tools/generate-spec-source.xsl,v
retrieving revision 1.265
retrieving revision 1.266
diff -u -d -r1.265 -r1.266
--- generate-spec-source.xsl 15 Jul 2010 15:36:17 -0000 1.265
+++ generate-spec-source.xsl 15 Jul 2010 16:49:47 -0000 1.266
@@ -155,9 +155,9 @@
<xsl:text> </xsl:text>
</section>
<xsl:text> </xsl:text>
- <section id="common-attributes">
+ <section id="global-attributes">
<xsl:text> </xsl:text>
- <h2>Common attributes</h2>
+ <h2>Global attributes</h2>
<xsl:text> </xsl:text>
<p>This section defines attributes that are common to
all elements in the
@@ -447,7 +447,7 @@
<p>This section defines datatypes that are referenced
by attribute definitions in the
<a href="#elements">HTML elements</a>,
- <a href="#common-attributes">Common attributes</a>,
+ <a href="#global-attributes">Global attributes</a>,
and
<a href="#forms-attributes">Forms attributes</a>
sections.</p>
@@ -2080,7 +2080,7 @@
<div class="attr-content-models">
<p>
<span class="pattern" id="colgroup.attrs">
- <a href="#common-attributes">common attributes</a>
+ <a href="#global-attributes">global attributes</a>
<span class="postfix optional">?</span>
<xsl:text> </xsl:text>
<span class="postfix intermixed">&</span>
@@ -2125,7 +2125,7 @@
<xsl:when test="@name='li'">
<div class="attr-content-models">
<p>
- <a href="#common-attributes">common attributes</a>
+ <a href="#global-attributes">global attributes</a>
<span class="postfix optional">?</span>
<xsl:text> </xsl:text>
<span class="postfix &">&</span>
Index: specgen.xsl
===================================================================
RCS file: /sources/public/html5/markup/tools/specgen.xsl,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- specgen.xsl 7 Jul 2010 01:11:52 -0000 1.69
+++ specgen.xsl 15 Jul 2010 16:49:47 -0000 1.70
@@ -703,6 +703,7 @@
and not(@href='#phrasing-content')
and not(@href='#flow-content')
and not(starts-with(@href,'#common.'))
+ and not(starts-with(@href,'#global.'))
">
<xsl:choose>
<xsl:when test="following-sibling::*[1][@class='postfix zeroormore']">
@@ -774,11 +775,11 @@
<xsl:apply-templates/>
</a>
</xsl:when>
- <xsl:when test="$href='common-attributes'">
+ <xsl:when test="$href='global-attributes'">
<a>
<xsl:copy-of select="@*"/>
<xsl:attribute name="href">
- <xsl:text>common-attributes.html</xsl:text>
+ <xsl:text>global-attributes.html</xsl:text>
</xsl:attribute>
<xsl:apply-templates/>
</a>
@@ -787,9 +788,9 @@
<a>
<xsl:copy-of select="@*"/>
<xsl:attribute name="href">
- <xsl:text>common-attributes.html</xsl:text>
+ <xsl:text>global-attributes.html</xsl:text>
</xsl:attribute>
- <xsl:text>common attributes</xsl:text>
+ <xsl:text>global attributes</xsl:text>
</a>
</xsl:when>
<xsl:when test=". = 'embed.attrs.other'"/>
@@ -825,7 +826,7 @@
</xsl:choose>
</xsl:when>
<xsl:when test=". = 'common.attrs'">
- <a href="#common-attributes">common attributes</a>
+ <a href="#global-attributes">global attributes</a>
</xsl:when>
<xsl:when test=". = 'embed.attrs.other'"/>
<xsl:otherwise>
@@ -838,6 +839,7 @@
<xsl:if test="
not(.='embed.attrs.other')
and not(starts-with(.,'common.'))
+ and not(starts-with(.,'global.'))
and not(.='shape')
and not(.='http-equiv')
and not(.='wrap')
@@ -855,6 +857,7 @@
and not(@href='#phrasing-content')
and not(@href='#flow-content')
and not(starts-with(@href,'#common.'))
+ and not(starts-with(@href,'#global.'))
">
<xsl:choose>
<xsl:when test="
Received on Thursday, 15 July 2010 16:49:53 UTC