html5/pubnotes Overview.html,1.329,1.330 Overview.src.html,1.321,1.322

Update of /sources/public/html5/pubnotes
In directory hutz:/tmp/cvs-serv4024

Modified Files:
	Overview.html Overview.src.html 
Log Message:
1.1091 Make addCueRange() have an identifier so that people don't have to use currying.


Index: Overview.html
===================================================================
RCS file: /sources/public/html5/pubnotes/Overview.html,v
retrieving revision 1.329
retrieving revision 1.330
diff -u -d -r1.329 -r1.330
--- Overview.html	23 Jul 2008 06:30:16 -0000	1.329
+++ Overview.html	23 Jul 2008 09:10:41 -0000	1.330
@@ -36,7 +36,7 @@
         of the changes without necessarily needing to read the
         specification itself.</p>
     <div class="ednote"><h4 class="ednoteHeader">Editorial note</h4><p>This document was generated on
-          <b>2008-07-23T15:29:35+09:00</b>.</p></div></div>
+          <b>2008-07-23T18:09:24+09:00</b>.</p></div></div>
     <div id="status">
       <h2>Status of this Document</h2>
     <p><em>
@@ -597,6 +597,10 @@
           <var>targetOrigin</var>)</code></a> form (which adds the
           <var>messagePort</var> argument as an additional
           argument).</li>
+          <li>An <var>id</var> argument was added to he <code class="method">addCueRange()</code> method: <code class="method">addCueRange(<var>className</var>,
+          <var>id</var>, <var>start</var>, <var>end</var>,
+          <var>pauseOnExit</var>, <var>enterCallback</var>,
+          <var>exitCallback</var>)</code>.</li>
           <li>The “Network connections” section was extensively
           rewritten and re-titled <a href="http://www.w3.org/TR/html5/single-page/#network">Web sockets</a>. It defines a <code>WebSocket</code>
           interface (which essentially replaces the
@@ -1504,6 +1508,41 @@
         current “Editor’s Draft”.</p></div>
               <p>In this section, the following changes were made:</p>
               <ul>
+                <li>The interface definition for the
+                <code>HTMLMediaElement</code>
+                interface was updated to add an
+                <var>id</var> argument to the
+                <code class="method">addCueRange()</code>
+                method and to reference the
+                <code>CueRangeCallback</code>
+                interface, which takes an
+                <var>id</var> value as its sole argument.</li>
+                <li>In the “Cue ranges” subsection, the following
+                changes were made:
+                <ul>
+                  <li>The following definition for the 
+                  <var>id</var> argument to the
+                  <code class="method">addCueRange()</code>
+                  method
+                  was added:
+                  <blockquote>
+                    <p><q>A string can be assigned to each cue
+                      range for identification by script. The
+                      string need not be unique and can contain
+                      any value.</q></p>
+                  </blockquote>
+                  </li>
+                  <li>The algorithm for specifying how user
+                  agents must behave when the current playback
+                  position of a media element changes was revised
+                  to reference the <code>id</code> parameter
+                  passed to the
+                  <code class="method">addCueRange()</code>
+                  method, as well as the
+                  <code>CueRangeCallback</code>
+                  interface.</li>
+                </ul>
+                </li>
                 <li>In the “Loading the media resource”
                 subsection, the following changes were made:
                 <ul>

Index: Overview.src.html
===================================================================
RCS file: /sources/public/html5/pubnotes/Overview.src.html,v
retrieving revision 1.321
retrieving revision 1.322
diff -u -d -r1.321 -r1.322
--- Overview.src.html	23 Jul 2008 06:30:16 -0000	1.321
+++ Overview.src.html	23 Jul 2008 09:10:41 -0000	1.322
@@ -102,6 +102,12 @@
           <var>targetOrigin</var>)</code></a> form (which adds the
           <var>messagePort</var> argument as an additional
           argument).</li>
+          <li>An <var>id</var> argument was added to he <code
+            class=method>addCueRange()</code> method: <code
+            class=method>addCueRange(<var>className</var>,
+          <var>id</var>, <var>start</var>, <var>end</var>,
+          <var>pauseOnExit</var>, <var>enterCallback</var>,
+          <var>exitCallback</var>)</code>.</li>
           <li>The “Network connections” section was extensively
           rewritten and re-titled <a
             href=http://www.w3.org/TR/html5/single-page/#network
@@ -728,6 +734,41 @@
               <h2>Section 4.7.10, Media elements</h2>
               <p>In this section, the following changes were made:</p>
               <ul>
+                <li>The interface definition for the
+                <code>HTMLMediaElement</code>
+                interface was updated to add an
+                <var>id</var> argument to the
+                <code class=method>addCueRange()</code>
+                method and to reference the
+                <code>CueRangeCallback</code>
+                interface, which takes an
+                <var>id</var> value as its sole argument.</li>
+                <li>In the “Cue ranges” subsection, the following
+                changes were made:
+                <ul>
+                  <li>The following definition for the 
+                  <var>id</var> argument to the
+                  <code class=method>addCueRange()</code>
+                  method
+                  was added:
+                  <blockquote>
+                    <p><q>A string can be assigned to each cue
+                      range for identification by script. The
+                      string need not be unique and can contain
+                      any value.</q></p>
+                  </blockquote>
+                  </li>
+                  <li>The algorithm for specifying how user
+                  agents must behave when the current playback
+                  position of a media element changes was revised
+                  to reference the <code>id</code> parameter
+                  passed to the
+                  <code class=method>addCueRange()</code>
+                  method, as well as the
+                  <code>CueRangeCallback</code>
+                  interface.</li>
+                </ul>
+                </li>
                 <li>In the “Loading the media resource”
                 subsection, the following changes were made:
                 <ul>

Received on Wednesday, 23 July 2008 09:11:19 UTC