[html5] r5065 - [agiow] (0) Change .URL attributes to .url for all new interfaces. Blame Jonas.

whatwg at whatwg.org whatwg at whatwg.org
Mon Apr 26 16:19:52 PDT 2010


Author: ianh
Date: 2010-04-26 16:19:51 -0700 (Mon, 26 Apr 2010)
New Revision: 5065

Modified:
   complete.html
   index
   source
Log:
[agiow] (0) Change .URL attributes to .url for all new interfaces. Blame Jonas.

Modified: complete.html
===================================================================
--- complete.html	2010-04-20 08:18:26 UTC (rev 5064)
+++ complete.html	2010-04-26 23:19:51 UTC (rev 5065)
@@ -186,7 +186,7 @@
 
   <header class=head id=head><p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
    <hgroup><h1>Web Applications 1.0</h1>
-    <h2 class="no-num no-toc">Draft Standard — 20 April 2010</h2>
+    <h2 class="no-num no-toc">Draft Standard — 26 April 2010</h2>
    </hgroup><p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
    <p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
    <!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
@@ -46743,7 +46743,7 @@
 <video autoplay></video>
 <script>
  function update(stream) {
-   document.getElementsByTagName('video')[0].src = stream.URL;
+   document.getElementsByTagName('video')[0].src = stream.url;
  }
 </script></pre>
 
@@ -46756,11 +46756,11 @@
   streams.</p>
 
   <pre class=idl>interface <dfn id=stream>Stream</dfn> {
-  readonly attribute DOMString <a href=#dom-stream-url title=dom-stream-URL>URL</a>;
+  readonly attribute DOMString <a href=#dom-stream-url title=dom-stream-url>url</a>;
   <a href=#streamrecorder>StreamRecorder</a> <a href=#dom-stream-record title=dom-stream-record>record</a>();
 };</pre>
 
-  <p>The <dfn id=dom-stream-url title=dom-stream-URL><code>URL</code></dfn> attribute
+  <p>The <dfn id=dom-stream-url title=dom-stream-url><code>url</code></dfn> attribute
   must return a <span title=fileURN>File URN</span> representing the
   stream. <a href=#refsFILEAPI>[FILEAPI]</a></p>
 
@@ -46877,7 +46877,7 @@
     // receive video
     // (videoElement is some <video> element)
     if (local.remoteStreams.length > 0)
-      videoElement.src = local.remoteStreams[0].URL;
+      videoElement.src = local.remoteStreams[0].url;
   };
 };</pre>
 
@@ -67875,7 +67875,7 @@
 
   <pre class=idl>[<a href=#dom-eventsource title=dom-EventSource>Constructor</a>(in DOMString url)]
 interface <dfn id=eventsource>EventSource</dfn> {
-  readonly attribute DOMString <a href=#dom-eventsource-url title=dom-EventSource-URL>URL</a>;
+  readonly attribute DOMString <a href=#dom-eventsource-url title=dom-EventSource-url>url</a>;
 
   // ready state
   const unsigned short <a href=#dom-eventsource-connecting title=dom-EventSource-CONNECTING>CONNECTING</a> = 0;
@@ -67926,7 +67926,7 @@
   object</a> is either a <code><a href=#window>Window</a></code> object or an object
   implementing the <code><a href=#workerutils>WorkerUtils</a></code> interface.</p>
 
-  <hr><p>The <dfn id=dom-eventsource-url title=dom-EventSource-URL><code>URL</code></dfn>
+  <hr><p>The <dfn id=dom-eventsource-url title=dom-EventSource-url><code>url</code></dfn>
   attribute must return the <a href=#absolute-url>absolute URL</a> that resulted
   from <a href=#resolve-a-url title="resolve a url">resolving</a> the value that was
   passed to the constructor.</p> <!-- not the result of redirects,
@@ -68646,7 +68646,7 @@
 
   <pre class=idl>[<a href=#dom-websocket title=dom-WebSocket>Constructor</a>(in DOMString url, in optional DOMString protocol)]
 interface <dfn id=websocket>WebSocket</dfn> {
-  readonly attribute DOMString <a href=#dom-websocket-url title=dom-WebSocket-URL>URL</a>;
+  readonly attribute DOMString <a href=#dom-websocket-url title=dom-WebSocket-url>url</a>;
 
   // ready state
   const unsigned short <a href=#dom-websocket-connecting title=dom-WebSocket-CONNECTING>CONNECTING</a> = 0;
@@ -68733,7 +68733,7 @@
   object</a> is either a <code><a href=#window>Window</a></code> object or an object
   implementing the <code><a href=#workerutils>WorkerUtils</a></code> interface.</p>
 
-  <hr><p>The <dfn id=dom-websocket-url title=dom-WebSocket-URL><code>URL</code></dfn>
+  <hr><p>The <dfn id=dom-websocket-url title=dom-WebSocket-url><code>url</code></dfn>
   attribute must return the result of <a href=#resolve-a-url title="resolve a
   url">resolving</a> the <a href=#url>URL</a> that was passed to the
   constructor. (It doesn't matter what it is resolved relative to,

Modified: index
===================================================================
--- index	2010-04-20 08:18:26 UTC (rev 5064)
+++ index	2010-04-26 23:19:51 UTC (rev 5065)
@@ -190,7 +190,7 @@
 
   <header class=head id=head><p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
    <hgroup><h1>HTML5 (including next generation additions still in development)</h1>
-    <h2 class="no-num no-toc">Draft Standard — 20 April 2010</h2>
+    <h2 class="no-num no-toc">Draft Standard — 26 April 2010</h2>
    </hgroup><p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
    <p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
    <!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
@@ -46644,7 +46644,7 @@
 <video autoplay></video>
 <script>
  function update(stream) {
-   document.getElementsByTagName('video')[0].src = stream.URL;
+   document.getElementsByTagName('video')[0].src = stream.url;
  }
 </script></pre>
 
@@ -46657,11 +46657,11 @@
   streams.</p>
 
   <pre class=idl>interface <dfn id=stream>Stream</dfn> {
-  readonly attribute DOMString <a href=#dom-stream-url title=dom-stream-URL>URL</a>;
+  readonly attribute DOMString <a href=#dom-stream-url title=dom-stream-url>url</a>;
   <a href=#streamrecorder>StreamRecorder</a> <a href=#dom-stream-record title=dom-stream-record>record</a>();
 };</pre>
 
-  <p>The <dfn id=dom-stream-url title=dom-stream-URL><code>URL</code></dfn> attribute
+  <p>The <dfn id=dom-stream-url title=dom-stream-url><code>url</code></dfn> attribute
   must return a <span title=fileURN>File URN</span> representing the
   stream. <a href=#refsFILEAPI>[FILEAPI]</a></p>
 
@@ -46778,7 +46778,7 @@
     // receive video
     // (videoElement is some <video> element)
     if (local.remoteStreams.length > 0)
-      videoElement.src = local.remoteStreams[0].URL;
+      videoElement.src = local.remoteStreams[0].url;
   };
 };</pre>
 

Modified: source
===================================================================
--- source	2010-04-20 08:18:26 UTC (rev 5064)
+++ source	2010-04-26 23:19:51 UTC (rev 5065)
@@ -51977,7 +51977,7 @@
 <video autoplay></video>
 <script>
  function update(stream) {
-   document.getElementsByTagName('video')[0].src = stream.URL;
+   document.getElementsByTagName('video')[0].src = stream.url;
  }
 </script></pre>
 
@@ -51990,11 +51990,11 @@
   streams.</p>
 
   <pre class="idl">interface <dfn>Stream</dfn> {
-  readonly attribute DOMString <span title="dom-stream-URL">URL</span>;
+  readonly attribute DOMString <span title="dom-stream-url">url</span>;
   <span>StreamRecorder</span> <span title="dom-stream-record">record</span>();
 };</pre>
 
-  <p>The <dfn title="dom-stream-URL"><code>URL</code></dfn> attribute
+  <p>The <dfn title="dom-stream-url"><code>url</code></dfn> attribute
   must return a <span title="fileURN">File URN</span> representing the
   stream. <a href="#refsFILEAPI">[FILEAPI]</a></p>
 
@@ -52118,7 +52118,7 @@
     // receive video
     // (videoElement is some <video> element)
     if (local.remoteStreams.length > 0)
-      videoElement.src = local.remoteStreams[0].URL;
+      videoElement.src = local.remoteStreams[0].url;
   };
 };</pre>
 
@@ -76109,7 +76109,7 @@
 
   <pre class="idl">[<span title="dom-EventSource">Constructor</span>(in DOMString url)]
 interface <dfn>EventSource</dfn> {
-  readonly attribute DOMString <span title="dom-EventSource-URL">URL</span>;
+  readonly attribute DOMString <span title="dom-EventSource-url">url</span>;
 
   // ready state
   const unsigned short <span title="dom-EventSource-CONNECTING">CONNECTING</span> = 0;
@@ -76168,7 +76168,7 @@
 
   <hr>
 
-  <p>The <dfn title="dom-EventSource-URL"><code>URL</code></dfn>
+  <p>The <dfn title="dom-EventSource-url"><code>url</code></dfn>
   attribute must return the <span>absolute URL</span> that resulted
   from <span title="resolve a url">resolving</span> the value that was
   passed to the constructor.</p> <!-- not the result of redirects,
@@ -76983,7 +76983,7 @@
 
   <pre class="idl">[<span title="dom-WebSocket">Constructor</span>(in DOMString url, in optional DOMString protocol)]
 interface <dfn>WebSocket</dfn> {
-  readonly attribute DOMString <span title="dom-WebSocket-URL">URL</span>;
+  readonly attribute DOMString <span title="dom-WebSocket-url">url</span>;
 
   // ready state
   const unsigned short <span title="dom-WebSocket-CONNECTING">CONNECTING</span> = 0;
@@ -77088,7 +77088,7 @@
 
   <hr>
 
-  <p>The <dfn title="dom-WebSocket-URL"><code>URL</code></dfn>
+  <p>The <dfn title="dom-WebSocket-url"><code>url</code></dfn>
   attribute must return the result of <span title="resolve a
   url">resolving</span> the <span>URL</span> that was passed to the
   constructor. (It doesn't matter what it is resolved relative to,




More information about the Commit-Watchers mailing list