- From: CVS User ihickson <cvsmail@w3.org>
- Date: Wed, 21 Nov 2012 19:25:15 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/webvtt
In directory roscoe:/tmp/cvs-serv19246
Modified Files:
Overview.html
Log Message:
Change the comment syntax to only allow NOTE, not NOTES. (whatwg r7521)
--- /sources/public/html5/webvtt/Overview.html 2012/11/19 18:39:18 1.53
+++ /sources/public/html5/webvtt/Overview.html 2012/11/21 19:25:15 1.54
@@ -1,6 +1,6 @@
<!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.53 $".substr(11);
+ var current_revision = "r" + "$Revision: 1.54 $".substr(11);
current_revision = current_revision.substr(0, current_revision.length - 2);
var last_known_revision = current_revision;
function getCookie(name) {
@@ -122,7 +122,7 @@
<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 19 November 2012</h2>
+ <h2 class="no-num no-toc">Living Standard — Last Updated 21 November 2012</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>
@@ -318,8 +318,8 @@
<p>Comments can be included in WebVTT files.</p>
- <p>Comments are just blocks that start with the word "<code title="">NOTE</code>" or "<code title="">NOTES</code>" (followed by a space or newline). A comment ends at the first blank
- line.</p>
+ <p>Comments are just blocks that start with the word "<code title="">NOTE</code>" (followed by a
+ space or newline). A comment ends at the first blank line.</p>
<div class=example>
@@ -344,7 +344,7 @@
<pre>WEBVTT
-NOTES
+NOTE
This file was written by Jill. I hope
you enjoy reading it. Some things to
bear in mind:
@@ -356,13 +356,13 @@
00:01.000 --> 00:04.000
Never drink liquid nitrogen.
-NOTES check next cue
+NOTE check next cue
00:05.000 --> 00:09.000
— It will perforate your stomach.
— You could die.
-NOTES end of file</pre>
+NOTE end of file</pre>
</div>
@@ -550,8 +550,7 @@
the given order:</p>
<ol><li>The string "<code title="">NOTE</code>".</li>
- <li>Optionally, a U+0053 LATIN CAPITAL LETTER S character.</li>
- <li>Optionally, the following components, in the given order:
+ <li>Optionally, the following components, in the given order:
<ol><li>Either:
<ul><li>A U+0020 SPACE character or U+0009 CHARACTER TABULATION (tab) character.</li>
<li>A <a href=#webvtt-line-terminator>WebVTT line terminator</a>.</li>
Received on Wednesday, 21 November 2012 19:25:21 UTC