- From: Sam Ruby via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 15 Oct 2012 17:14:40 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/2dcontext
In directory hutz:/tmp/cvs-serv10918
Modified Files:
Overview.html
Log Message:
commit 55ab542bc14b225db05cad7e472e798d02432125
Author: Robin Berjon <robin@berjon.com>
Date: Mon Oct 15 18:57:15 2012 +0200
merge tooling changes from master
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/2dcontext/Overview.html,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -d -r1.181 -r1.182
--- Overview.html 14 Oct 2012 01:43:42 -0000 1.181
+++ Overview.html 15 Oct 2012 17:14:38 -0000 1.182
@@ -87,23 +87,23 @@
@font-face {
font-family: 'Essays1743';
- src: url('../fonts/Essays1743.ttf');
+ src: url('fonts/Essays1743.ttf');
}
@font-face {
font-family: 'Essays1743';
font-weight: bold;
- src: url('../fonts/Essays1743-Bold.ttf');
+ src: url('fonts/Essays1743-Bold.ttf');
}
@font-face {
font-family: 'Essays1743';
font-style: italic;
- src: url('../fonts/Essays1743-Italic.ttf');
+ src: url('fonts/Essays1743-Italic.ttf');
}
@font-face {
font-family: 'Essays1743';
font-style: italic;
font-weight: bold;
- src: url('../fonts/Essays1743-BoldItalic.ttf');
+ src: url('fonts/Essays1743-BoldItalic.ttf');
}
</style>
@@ -309,8 +309,46 @@
fieldset > :last-child { margin-bottom: 0; }
fieldset p { margin: 0.5em 0; }
+ .stability {
+ position: fixed;
+ bottom: 0;
+ left: 0; right: 0;
+ margin: 0 auto 0 auto;
+ width: 50%;
+ background: maroon; color: yellow;
+ -webkit-border-radius: 1em 1em 0 0;
+ -moz-border-radius: 1em 1em 0 0;
+ border-radius: 1em 1em 0 0;
+ -moz-box-shadow: 0 0 1em #500;
+ -webkit-box-shadow: 0 0 1em #500;
+ box-shadow: 0 0 1em red;
+ padding: 0.5em 1em;
+ text-align: center;
+ }
+ .stability strong {
+ display: block;
+ }
+ .stability input {
+ -moz-appearance: none; -webkit-appearance: none; margin: 0;
+ border: 0; padding: 0.25em 0.5em; background: transparent; color: black;
+ position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center;
+ }
+ .stability input:hover {
+ color: white;
+ text-shadow: 0 0 2px black;
+ }
+ .stability input:active {
+ padding: 0.3em 0.45em 0.2em 0.55em;
+ }
+ .stability :link, .stability :visited,
+ .stability :link:hover, .stability :visited:hover {
+ background: transparent;
+ color: white;
+ }
+
</style>
- <link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css">
+ <link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css">
+ <meta content="noindex" name="robots">
<script>
function getCookie(name) {
@@ -338,8 +376,10 @@
<h1>HTML Canvas 2D Context</h1>
<h2 class="no-num no-toc" id="generatedID"></h2>
- <h2 class="no-num no-toc" id="editor's-draft-date-1-january-1970">Editor's Draft 14 October 2012</h2>
+ <h2 class="no-num no-toc" id="w3c-working-draft-11-october-2012">W3C Working Draft 11 October 2012</h2>
<dl>
+ <dt>This Version:</dt>
+ <dd><a href="http://www.w3.org/TR/2012/WD-2dcontext-20121011/">http://www.w3.org/TR/2012/WD-2dcontext-20121011/</a></dd>
<dt>Latest Published Version:</dt>
<dd><a href="http://www.w3.org/TR/2dcontext/">http://www.w3.org/TR/2dcontext/</a></dd>
<dt>Latest Editor's Draft:</dt>
@@ -436,6 +476,31 @@
<div id="multipage-common">
+ <!-- stability warning for TR/ page version -->
+ <!-- q.v. http://lists.w3.org/Archives/Public/public-html/2010Oct/0457.html -->
+ <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/2dcontext/">editor's draft</a> instead.
+ <input onclick="closeWarning(this.parentNode)" type="button" value="X">
+ </p>
+ <script>
+ 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();
+ }
+ if (getCookie('hide-obsolescence-warning') == '1')
+ setTimeout(function () { document.getElementById('wip').parentNode.removeChild(document.getElementById('wip')); }, 2000);
+ </script>
+ <!--
+ <script>
+ if (location == 'http://dev.w3.org/html5/2dcontext/') {
+ var wip = document.getElementById('wip');
+ wip.parentNode.removeChild(wip);
+ }
+ </script>
+ -->
</div>
@@ -464,7 +529,7 @@
Group</a> is the W3C working group responsible for this
specification's progress along the W3C Recommendation
track.
- This specification is the 14 October 2012 Editor's Draft.
+ This specification is the 11 October 2012 Working Draft.
</p>
Received on Monday, 15 October 2012 17:14:42 UTC