Skip to content

Commit

Permalink
[agiow] (0) Change .URL attributes to .url for all new interfaces. Bl…
Browse files Browse the repository at this point in the history
…ame Jonas.

git-svn-id: http://svn.whatwg.org/webapps@5065 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Apr 26, 2010
1 parent 32effe1 commit 445c4c3
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
18 changes: 9 additions & 9 deletions complete.html
Expand Up @@ -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 &mdash; 20 April 2010</h2>
<h2 class="no-num no-toc">Draft Standard &mdash; 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>-->
Expand Down Expand Up @@ -46743,7 +46743,7 @@ <h4 id=devices><span class=secno>4.11.6 </span>The <dfn><code>device</code></dfn
&lt;video autoplay&gt;&lt;/video&gt;
&lt;script&gt;
function update(stream) {
document.getElementsByTagName('video')[0].src = stream.URL;
document.getElementsByTagName('video')[0].src = stream.url;
}
&lt;/script&gt;</pre>

Expand All @@ -46756,11 +46756,11 @@ <h5 id=stream-api><span class=secno>4.11.6.1 </span>Stream API</h5>
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>

Expand Down Expand Up @@ -46877,7 +46877,7 @@ <h5 id=peer-to-peer-connections><span class=secno>4.11.6.2 </span>Peer-to-peer c
// receive video
// (videoElement is some &lt;video&gt; element)
if (local.remoteStreams.length &gt; 0)
videoElement.src = local.remoteStreams[0].URL;
videoElement.src = local.remoteStreams[0].url;
};
};</pre>

Expand Down Expand Up @@ -67875,7 +67875,7 @@ <h4 id=the-eventsource-interface><span class=secno>10.2.2 </span>The <code><a hr

<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;
Expand Down Expand Up @@ -67926,7 +67926,7 @@ <h4 id=the-eventsource-interface><span class=secno>10.2.2 </span>The <code><a hr
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,
Expand Down Expand Up @@ -68646,7 +68646,7 @@ <h4 id=the-websocket-interface><span class=secno>10.3.2 </span>The <code><a href

<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;
Expand Down Expand Up @@ -68733,7 +68733,7 @@ <h4 id=the-websocket-interface><span class=secno>10.3.2 </span>The <code><a href
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,
Expand Down
10 changes: 5 additions & 5 deletions index
Expand Up @@ -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 &mdash; 20 April 2010</h2>
<h2 class="no-num no-toc">Draft Standard &mdash; 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>-->
Expand Down Expand Up @@ -46644,7 +46644,7 @@ interface <dfn>DataGridListener</dfn> {
&lt;video autoplay&gt;&lt;/video&gt;
&lt;script&gt;
function update(stream) {
document.getElementsByTagName('video')[0].src = stream.URL;
document.getElementsByTagName('video')[0].src = stream.url;
}
&lt;/script&gt;</pre>

Expand All @@ -46657,11 +46657,11 @@ interface <dfn>DataGridListener</dfn> {
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>

Expand Down Expand Up @@ -46778,7 +46778,7 @@ local.onconnect = function (event) {
// receive video
// (videoElement is some &lt;video&gt; element)
if (local.remoteStreams.length &gt; 0)
videoElement.src = local.remoteStreams[0].URL;
videoElement.src = local.remoteStreams[0].url;
};
};</pre>

Expand Down
16 changes: 8 additions & 8 deletions source
Expand Up @@ -51977,7 +51977,7 @@ interface <dfn>DataGridListener</dfn> {
&lt;video autoplay>&lt;/video>
&lt;script>
function update(stream) {
document.getElementsByTagName('video')[0].src = stream.URL;
document.getElementsByTagName('video')[0].src = stream.url;
}
&lt;/script></pre>

Expand All @@ -51990,11 +51990,11 @@ interface <dfn>DataGridListener</dfn> {
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>

Expand Down Expand Up @@ -52118,7 +52118,7 @@ local.onconnect = function (event) {
// receive video
// (videoElement is some &lt;video> element)
if (local.remoteStreams.length > 0)
videoElement.src = local.remoteStreams[0].URL;
videoElement.src = local.remoteStreams[0].url;
};
};</pre>

Expand Down Expand Up @@ -76109,7 +76109,7 @@ data: This is the third message.</pre>

<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;
Expand Down Expand Up @@ -76168,7 +76168,7 @@ interface <dfn>EventSource</dfn> {

<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,
Expand Down Expand Up @@ -76983,7 +76983,7 @@ data:&nbsp;test</pre>

<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;
Expand Down Expand Up @@ -77088,7 +77088,7 @@ interface <dfn>WebSocket</dfn> {

<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,
Expand Down

0 comments on commit 445c4c3

Please sign in to comment.