- From: Elika Etemad via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 03 Jan 2012 20:27:05 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-namespace
In directory hutz:/tmp/cvs-serv27803
Modified Files:
Overview.html Overview.src.html
Log Message:
Add qname and wqname productions for convenience
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-namespace/Overview.html,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- Overview.html 10 Aug 2011 18:00:29 -0000 1.45
+++ Overview.html 3 Jan 2012 20:27:03 -0000 1.46
@@ -15,12 +15,12 @@
<h1>CSS Namespaces Module</h1>
- <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 10 August 2011</h2>
+ <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 3 January 2012</h2>
<dl>
<dt>This version:</dt>
<!--
- <dd><a href="http://www.w3.org/TR/2011/ED-css3-namespace-20110810/">http://www.w3.org/TR/2011/PR-css3-namespace-20110810/</a></dd>
+ <dd><a href="http://www.w3.org/TR/2012/ED-css3-namespace-20120103/">http://www.w3.org/TR/2012/PR-css3-namespace-20120103/</a></dd>
-->
<dd><a
@@ -53,14 +53,14 @@
<!--begin-copyright-->
<p class=copyright><a
href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
- rel=license>Copyright</a> © 2011 <a
- href="http://www.w3.org/"><acronym title="World Wide Web
- Consortium">W3C</acronym></a><sup>®</sup> (<a
- href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute
- of Technology">MIT</acronym></a>, <a href="http://www.ercim.eu/"><acronym
- title="European Research Consortium for Informatics and
- Mathematics">ERCIM</acronym></a>, <a
- href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a
+ rel=license>Copyright</a> © 2012 <a
+ href="http://www.w3.org/"><acronym
+ title="World Wide Web Consortium">W3C</acronym></a><sup>®</sup> (<a
+ href="http://www.csail.mit.edu/"><acronym
+ title="Massachusetts Institute of Technology">MIT</acronym></a>, <a
+ href="http://www.ercim.eu/"><acronym
+ title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>,
+ <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a
href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>,
<a
href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>
@@ -457,11 +457,16 @@
<pre><!--
-->qname_prefix
-<!-- --> : [namespace_prefix]? '|'
+<!-- --> : namespace_prefix? '|'
<!-- --> ;
<!-- -->wqname_prefix
-<!-- --> : namespace_prefix? '|'
-<!-- --> | '*' '|'
+<!-- --> : [ namespace_prefix? | '*' ] '|'
+<!-- --> ;
+<!-- -->qname
+<!-- --> : qname_prefix? ident
+<!-- --> ;
+<!-- -->wqname
+<!-- --> : wqname_prefix? ident
<!-- --> ;<!--
--></pre>
@@ -545,10 +550,9 @@
<dt id=SELECT>[SELECT]
<dd>Tantek Çelik; et al. <a
- href="http://www.w3.org/TR/2009/PR-css3-selectors-20091215"><cite>Selectors
- Level 3.</cite></a> 15 December 2009. W3C Proposed Recommendation. (Work
- in progress.) URL: <a
- href="http://www.w3.org/TR/2009/PR-css3-selectors-20091215">http://www.w3.org/TR/2009/PR-css3-selectors-20091215</a>
+ href="http://www.w3.org/TR/2011/REC-css3-selectors-20110929/"><cite>Selectors
+ Level 3.</cite></a> 29 September 2011. W3C Recommendation. URL: <a
+ href="http://www.w3.org/TR/2011/REC-css3-selectors-20110929/">http://www.w3.org/TR/2011/REC-css3-selectors-20110929/</a>
</dd>
<!---->
</dl>
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-namespace/Overview.src.html,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- Overview.src.html 10 Aug 2011 17:59:55 -0000 1.64
+++ Overview.src.html 3 Jan 2012 20:27:03 -0000 1.65
@@ -331,11 +331,16 @@
<pre><!--
-->qname_prefix
-<!-- --> : [namespace_prefix]? '|'
+<!-- --> : namespace_prefix? '|'
<!-- --> ;
<!-- -->wqname_prefix
-<!-- --> : namespace_prefix? '|'
-<!-- --> | '*' '|'
+<!-- --> : [ namespace_prefix? | '*' ] '|'
+<!-- --> ;
+<!-- -->qname
+<!-- --> : qname_prefix? ident
+<!-- --> ;
+<!-- -->wqname
+<!-- --> : wqname_prefix? ident
<!-- --> ;<!--
--></pre>
Received on Tuesday, 3 January 2012 20:29:09 UTC