- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 05 Apr 2011 11:02:30 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv10270
Modified Files:
Overview.html spec.html
Log Message:
fix the last confusing vestiges of the misnaming of this API (whatwg r5974)
[updated by splitter]
[updated by splitter]
[updated by splitter]
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4802
retrieving revision 1.4803
diff -u -d -r1.4802 -r1.4803
--- Overview.html 5 Apr 2011 10:58:01 -0000 1.4802
+++ Overview.html 5 Apr 2011 11:02:25 -0000 1.4803
@@ -429,12 +429,6 @@
}
}
- function closeWarning(element) {
- element.parentNode.removeChild(element);
- var date = new Date();
- date.setDate(date.getDate()+4);
- document.cookie = 'hide-obsolescence-warning=1; expires=' + date.toGMTString();
-}
</script>
<p>
<input onclick="return checkFeedbackForm(form)" type="submit" value="Submit feedback"><small>(Note: Your IP address and user agent will be publicly recorded for spam prevention purposes.)</small>
@@ -468,6 +462,14 @@
implementing this specification before it eventually reaches the
Candidate Recommendation stage should join the aforementioned
mailing lists and take part in the discussions.<div id="multipage-common">
+ <script type="text/javascript">
+ function closeWarning(element) {
+ element.parentNode.removeChild(element);
+ var date = new Date();
+ date.setDate(date.getDate()+4);
+ document.cookie = 'hide-obsolescence-warning=1; expires=' + date.toGMTString();
+}
+</script>
<p class="stability" id="wip"><strong>This is a work in
progress!</strong> For the latest updates from the HTML WG, possibly
including important bug fixes, please look at the <a href="http://dev.w3.org/html5/spec/Overview.html">editor's draft</a> instead.
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.1421
retrieving revision 1.1422
diff -u -d -r1.1421 -r1.1422
--- spec.html 5 Apr 2011 10:58:08 -0000 1.1421
+++ spec.html 5 Apr 2011 11:02:28 -0000 1.1422
@@ -368,7 +368,7 @@
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>,
<a href="author/">web developer edition</a>.
-This is revision 1.4801.
+This is revision 1.4802.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2011 <a href="http://www.w3.org/"><abbr title="World Wide
@@ -431,12 +431,6 @@
}
}
- function closeWarning(element) {
- element.parentNode.removeChild(element);
- var date = new Date();
- date.setDate(date.getDate()+4);
- document.cookie = 'hide-obsolescence-warning=1; expires=' + date.toGMTString();
-}
</script><p>
<input onclick="return checkFeedbackForm(form)" type="submit" value="Submit feedback"><small>(Note: Your IP address and user agent will be publicly recorded for spam prevention purposes.)</small>
</p>
@@ -468,7 +462,14 @@
implementing this specification before it eventually reaches the
Candidate Recommendation stage should join the aforementioned
mailing lists and take part in the discussions.</p><div id="multipage-common">
-<p class="stability" id="wip"><strong>This is a work in
+ <script type="text/javascript">
+ function closeWarning(element) {
+ element.parentNode.removeChild(element);
+ var date = new Date();
+ date.setDate(date.getDate()+4);
+ document.cookie = 'hide-obsolescence-warning=1; expires=' + date.toGMTString();
+}
+</script><p class="stability" id="wip"><strong>This is a work in
progress!</strong> For the latest updates from the HTML WG, possibly
including important bug fixes, please look at the <a href="http://dev.w3.org/html5/spec/Overview.html">editor's draft</a> instead.
<input onclick="closeWarning(this.parentNode)" type="button" value="╳⃝"></p>
Received on Tuesday, 5 April 2011 11:02:32 UTC