- From: CVS User spfeiffe <cvsmail@w3.org>
- Date: Sun, 14 Apr 2013 22:49:19 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/webvtt In directory roscoe:/tmp/cvs-serv23746 Modified Files: Overview.html Log Message: Moving to new editor and new Layout for CG. --- /sources/public/html5/webvtt/Overview.html 2013/03/11 23:43:39 1.62 +++ /sources/public/html5/webvtt/Overview.html 2013/04/14 22:49:19 1.63 @@ -1,188 +1,255 @@ -<!DOCTYPE html><html lang=en-US-x-hixie><meta charset=ascii><title>WebVTT Standard</title><script> - var loadTimer = new Date(); - var current_revision = "r" + "$Revision: 1.62 $".substr(11); - current_revision = current_revision.substr(0, current_revision.length - 2); - var last_known_revision = current_revision; - function getCookie(name) { - var params = location.search.substr(1).split("&"); - for (var index = 0; index < params.length; index++) { - if (params[index] == name) - return "1"; - var data = params[index].split("="); - if (data[0] == name) - return unescape(data[1]); - } - var cookies = document.cookie.split("; "); - for (var index = 0; index < cookies.length; index++) { - var data = cookies[index].split("="); - if (data[0] == name) - return unescape(data[1]); - } - return null; - } - var currentAlert; - var currentAlertTimeout; - function showAlert(s, href) { - if (!currentAlert) { - currentAlert = document.createElement('div'); - currentAlert.id = 'alert'; - var x = document.createElement('button'); - x.textContent = '\u2573'; - x.onclick = closeAlert2; - currentAlert.appendChild(x); - currentAlert.appendChild(document.createElement('span')); - currentAlert.onmousemove = function () { - clearTimeout(currentAlertTimeout); - currentAlert.className = ''; - currentAlertTimeout = setTimeout(closeAlert, 10000); - } - document.body.appendChild(currentAlert); - } else { - clearTimeout(currentAlertTimeout); - currentAlert.className = ''; - } - currentAlert.lastChild.textContent = s + ' '; - if (href) { - var link = document.createElement('a'); - link.href = href; - link.textContent = href; - currentAlert.lastChild.appendChild(link); - } - currentAlertTimeout = setTimeout(closeAlert, 10000); - } - function closeAlert() { - clearTimeout(currentAlertTimeout); - if (currentAlert) { - currentAlert.className = 'closed'; - currentAlertTimeout = setTimeout(closeAlert2, 3000); - } - } - function closeAlert2() { - clearTimeout(currentAlertTimeout); - if (currentAlert) { - currentAlert.parentNode.removeChild(currentAlert); - currentAlert = null; - } - } - window.addEventListener('keydown', function (event) { - if (event.keyCode == 27) { - if (currentAlert) - closeAlert2(); - } else { - closeAlert(); - } - }, false); - window.addEventListener('scroll', function (event) { - closeAlert(); - }, false); - function load(script) { - var e = document.createElement('script'); - e.setAttribute('src', 'http://www.whatwg.org/specs/web-apps/current-work/' + script); - document.body.appendChild(e); - } - </script><link href=http://www.whatwg.org/style/specification rel=stylesheet><link href=http://www.whatwg.org/images/icon rel=icon><style> - .proposal { border: blue solid; padding: 1em; } - .bad, .bad *:not(.XXX) { color: gray; border-color: gray; background: transparent; } - #updatesStatus { display: none; } - #updatesStatus.relevant { display: block; position: fixed; right: 1em; top: 1em; padding: 0.5em; font: bold small sans-serif; min-width: 25em; width: 30%; max-width: 40em; height: auto; border: ridge 4px gray; background: #EEEEEE; color: black; } - div.head .logo { width: 11em; margin-bottom: 20em; } - #configUI { position: absolute; z-index: 20; top: 10em; right: 0; width: 11em; padding: 0 0.5em 0 0.5em; font-size: small; background: gray; background: rgba(32,32,32,0.9); color: white; border-radius: 1em 0 0 1em; -moz-border-radius: 1em 0 0 1em; } - #configUI p { margin: 0.75em 0; padding: 0.3em; } - #configUI p label { display: block; } - #configUI #updateUI, #configUI .loginUI { text-align: center; } - #configUI input[type=button] { display: block; margin: auto; } - #configUI :link, #configUI :visited { color: white; } - #configUI :link:hover, #configUI :visited:hover { background: transparent; } - #reviewer { position: fixed; bottom: 0; right: 0; padding: 0.15em 0.25em 0em 0.5em; white-space: nowrap; overflow: hidden; z-index: 30; background: gray; background: rgba(32,32,32,0.9); color: white; border-radius: 1em 0 0 0; -moz-border-radius: 1em 0 0 0; max-width: 90%; } - #reviewer input { max-width: 50%; } - #reviewer * { font-size: small; } - #reviewer.off > :not(:first-child) { display: none; } - #alert { position: fixed; top: 20%; left: 20%; right: 20%; font-size: 2em; padding: 0.5em; z-index: 40; background: gray; background: rgba(32,32,32,0.9); color: white; border-radius: 1em; -moz-border-radius: 1em; -webkit-transition: opacity 1s linear; } - #alert.closed { opacity: 0; } - #alert button { position: absolute; top: -1em; right: 2em; border-radius: 1em 1em 0 0; border: none; line-height: 0.9; color: white; background: rgb(64,64,64); font-size: 0.6em; font-weight: 900; cursor: pointer; } - #alert :link, #alert :visited { color: white; } - #alert :link:hover, #alert :visited:hover { background: transparent; } - @media print { #configUI { display: none; } } - .rfc2119 { font-variant: small-caps; text-shadow: 0 0 0.5em yellow; position: static; } - .rfc2119::after { position: absolute; left: 0; width: 25px; text-align: center; color: yellow; text-shadow: 0.075em 0.075em 0.2em black; } - .rfc2119.m\ust::after { content: '\2605'; } - .rfc2119.s\hould::after { content: '\2606'; } - [hidden] { display: none; } - </style><script> - var startedInit = 0; - function init() { - startedInit = 1; - if (location.search == '?slow-browser') - return; - load('dfn.js'); - if (getCookie('profile') == '1') - document.getElementsByTagName('h2')[0].textContent += '; load: ' + (new Date() - loadTimer) + 'ms'; - } - </script><body onload=init()> - - <header class=head id=head><!-- the following line added by request of Ian Jacobs --><p class=logo><a href=http://www.w3.org/><img alt=W3C height=48 src=http://www.w3.org/Icons/w3c_home width=72></a></p> - <hgroup><h1 class="no-num no-toc">WebVTT</h1> - <h2 class="no-num no-toc">Living Standard — Last Updated 11 March 2013</h2> - </hgroup><dl><dt>Latest version:</dt> - <dd><a href=http://dev.w3.org/html5/webvtt/>http://dev.w3.org/html5/webvtt/</a></dd> - <dt>Participate:</dt> - <dd><a href=http://lists.w3.org/Archives/Public/public-texttracks/>public-texttracks@w3.org</a></dd> - <dd><a href=http://wiki.whatwg.org/wiki/IRC>IRC: #whatwg on Freenode</a></dd> - <dt>Version history:</dt> - <dd>CVS history: <a href=http://dev.w3.org/cvsweb/html5/webvtt/Overview.html>http://dev.w3.org/cvsweb/html5/webvtt/Overview.html</a></dd> - <dt>Editor:</dt> - <dd>Ian Hickson, Google, ian@hixie.ch</dd> - </dl><!-- the following paragraph added by request of Ian Jacobs and David Singer --><p class=copyright> Copyright ©2011 the Contributors to the VTT Specification, published by the - <a href=http://www.w3.org/community/texttracks/>W3C Web Media Text Tracks Community Group</a> under the - <a href=http://www.w3.org/community/about/agreements/cla/>W3C Community Contributor License Agreement (CLA)</a>. - A human-readable <a href=http://www.w3.org/community/about/agreements/cla-deed/>summary</a> is available. </p> - <!-- the following paragraph added by request of Ian Jacobs --> - <p class=copyright>This specification is not a W3C Standard nor - is it on the W3C Standards Track. It was originally created by the - WHATWG and is being further developed by the <a href=http://www.w3.org/community/texttracks/>W3C Web Media Text - Tracks Community Group</a>. Please note that under the <a href=http://www.w3.org/community/about/agreements/cla/>W3C - Community Contributor License Agreement (CLA)</a> there is a - limited opt-out and other conditions apply. Learn more about <a href=http://www.w3.org/community/>W3C Community and Business - Groups</a>.</p> +<!DOCTYPE html> +<html lang="en-US-x-hixie"> +<head> + <meta charset="ascii"> + <title>WebVTT: The Web Video Text Tracks Format</title> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> + <!-- local copy: + <script src='../../respec/js/require.js' data-main='../../respec/js/profile-w3c-common' async class='remove'></script> + --> + + + <style> + pre { + white-space: pre-wrap; + } + pre.idl_whatwg { + border: solid 0.0625em; + background: #EEEEEE; + color: black; + padding: 0.5em 1em; + font-family: monospace, Droid Sans Fallback, sans-serif; + } + pre.idl_whatwg::before { + content: 'IDL'; + font: bold 0.8em sans-serif; + padding: 0.5em; + position: absolute; + top: auto; + margin: -0.703125em 0 0 -3.75em /* 1em/0.8 + 1.5em + 0.5em*2 */; + width: 1.5em; + background: inherit; + border: 0.078125em; + border-style: solid none solid solid; + border-radius: 1em 0 0 1em; + } + .example { + padding: 0.5em; + margin: 1em 0; + position: relative; + clear: both; + border-left-width: .5em; + border-left-style: solid; + border-color: #e0cb52; + background: #fcfaee; + } + .todo { + color: #E50000; + background: white; + border: solid red; + padding: 0.5em; + margin: 1em 0; + } + .todo::before { + content: " ** "; + position: absolute; + left: 0; + width: 8em; + text-align: right; + } + table { + border-collapse: collapse; + border-style: hidden hidden none hidden; + } + table thead, table tbody { + border-bottom: solid; + } + table td, table th { + border-left: solid; + border-right: solid; + border-bottom: solid thin; + vertical-align: top; + padding: 0.2em; + } + dl.domintro { + margin: 2em 0 2em 0; + padding: 0.5em 1em 0.5em 2em; + border: none; + background: #d9e6f8; + } + dl.domintro:before { + display: table; + margin: -1em -0.5em -0.5em auto; + width: auto; + content: 'This box is non-normative. Implementation requirements are given below this box.'; + color: black; + font-style: italic; + border: solid 2px; + background: white; + padding: 0 0.25em; + } + dt { + margin-top: 0.75em; + margin-bottom: 0.25em; + clear: left; + } + </style> + <style>/***************************************************************** + * ReSpec 3 CSS + * Robin Berjon - http://berjon.com/ + *****************************************************************/ + +/* --- INLINES --- */ +em.rfc2119 { + text-transform: lowercase; + font-variant: small-caps; + font-style: normal; + color: #900; +} + +h1 acronym, h2 acronym, h3 acronym, h4 acronym, h5 acronym, h6 acronym, a acronym, +h1 abbr, h2 abbr, h3 abbr, h4 abbr, h5 abbr, h6 abbr, a abbr { + border: none; +} + +dfn { + font-weight: bold; +} + +a.internalDFN { + color: inherit; + border-bottom: 1px solid #99c; + text-decoration: none; +} + +a.externalDFN { + color: inherit; + border-bottom: 1px dotted #ccc; + text-decoration: none; +} + +a.bibref { + text-decoration: none; +} + +cite .bibref { + font-style: normal; +} + +code { + color: #ff4500; +} + + +/* --- --- */ +ol.algorithm { counter-reset:numsection; list-style-type: none; } +ol.algorithm li { margin: 0.5em 0; } +ol.algorithm li:before { font-weight: bold; counter-increment: numsection; content: counters(numsection, ".") ") "; } + +/* --- TOC --- */ +.toc a, .tof a { + text-decoration: none; +} + +a .secno, a .figno { + color: #000; +} + +ul.tof, ol.tof { + list-style: none outside none; +} + +.caption { + margin-top: 0.5em; + font-style: italic; +} + +/* --- TABLE --- */ +table.simple { + border-spacing: 0; + border-collapse: collapse; + border-bottom: 3px solid #005a9c; +} + +.simple th { + background: #005a9c; + color: #fff; + padding: 3px 5px; + text-align: left; +} + +.simple th[scope="row"] { + background: inherit; + color: inherit; + border-top: 1px solid #ddd; +} + +.simple td { + padding: 3px 10px; + border-top: 1px solid #ddd; +} + +.simple tr:nth-child(even) { + background: #f0f6ff; +} + +/* --- DL --- */ +.section dd > p:first-child { + margin-top: 0; +} + +.section dd > p:last-child { + margin-bottom: 0; +} + +.section dd { + margin-bottom: 1em; +} + +.section dl.attrs dd, .section dl.eldef dd { + margin-bottom: 0; +} +</style><style>/* --- ISSUES/NOTES --- */ +div.issue-title, div.note-title { + padding-right: 1em; + min-width: 7.5em; + color: #b9ab2d; +} +div.issue-title { color: #e05252; } +div.note-title { color: #2b2; } +div.issue-title span, div.note-title span { + text-transform: uppercase; +} +div.note, div.issue { + margin-top: 1em; + margin-bottom: 1em; +} +.note > p:first-child, .issue > p:first-child { margin-top: 0 } +.issue, .note { + padding: .5em; + border-left-width: .5em; + border-left-style: solid; +} +div.issue, div.note { + padding: 1em 1.2em 0.5em; + margin: 1em 0; + position: relative; + clear: both; +} +span.note, span.issue { padding: .1em .5em .15em; } + +.issue { + border-color: #e05252; + background: #fbe9e9; +} +.note { + border-color: #52e052; + background: #e9fbe9; +} - </header><hr><h2 class="no-num no-toc" id=contents>Table of contents</h2> - [5244 lines skipped]
Received on Sunday, 14 April 2013 22:49:21 UTC