- From: Dominique Hazael-Massieux via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 28 Jan 2010 18:52:01 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/system-info
In directory hutz:/tmp/cvs-serv9085
Modified Files:
Overview.html
Log Message:
webidl fixes per http://www.w3.org/2009/07/webidl-check?doc=http%3A%2F%2Fdev.w3.org%2F2009%2Fdap%2Fsystem-info%2FFPWD&input=&output=html
(couldn't spot them before FPWD preps unfortunately)
Index: Overview.html
===================================================================
RCS file: /sources/public/2009/dap/system-info/Overview.html,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- Overview.html 28 Jan 2010 16:22:18 -0000 1.69
+++ Overview.html 28 Jan 2010 18:51:59 -0000 1.70
@@ -838,10 +838,10 @@
<p>This property exposes information about the audio/video codecs available to this system</p>
<dl title='[NoInterfaceObject] interface AVCodecs' class='idl'>
- <dt>readonly attribute AudioCodec audioCodecs[]</dt>
+ <dt>readonly attribute AudioCodec[] audioCodecs</dt>
<dd>Audio codecs on this device</dd>
- <dt>readonly attribute VideoCodec videoCodecs[]</dt>
+ <dt>readonly attribute VideoCodec[] videoCodecs</dt>
<dd>Audio codecs on this device</dd>
</dl>
</section>
@@ -869,22 +869,22 @@
<h3>The <a>VideoCodec</a> Property</h3>
<dl title='[NoInterfaceObject] interface VideoCodec : SystemDevice' class='idl'>
- <dt>readonly attribute sequence DOMString compFormats</dt>
+ <dt>readonly attribute sequence<DOMString> compFormats</dt>
<dd>Supported compression format names. Example : "AVI", "ogg"</dd>
- <dt>readonly attribute sequence DOMString containerFormats</dt>
+ <dt>readonly attribute sequence<DOMString> containerFormats</dt>
<dd>Supported container format names. Example : "AVI", "ogg"</dd>
<dt>readonly attribute boolean hwAccel</dt>
<dd><code>true</code> if the codec includes hardware acceleration support, <code>false</code> otherwise.</dd>
- <dt>readonly attribute sequence VideoProfile profiles</dt>
+ <dt>readonly attribute sequence<VideoProfile> profiles</dt>
<dd>The list of profiles available for this codec.</dd>
- <dt>readonly attribute sequence FrameType frametypes</dt>
+ <dt>readonly attribute sequence<FrameType> frametypes</dt>
<dd>The list of frame types supported by the codec</dd>
- <dt>readonly attribute sequence RateControl ratetypes</dt>
+ <dt>readonly attribute sequence<RateControl> ratetypes</dt>
<dd>The list of rate control options supported by the codec</dd>
</dl>
</section>
@@ -938,7 +938,7 @@
<h4>The <a>Storage</a> Property</h4>
<p>This property exposes the data storage devices connected to this system.</p>
<dl title="interface Storage" class="idl">
- <dt>readonly attribute StorageUnit units[]</dt>
+ <dt>readonly attribute StorageUnit[] units</dt>
<dd>The array of storage units connected to this device</dd>
</dl>
</section>
@@ -997,10 +997,10 @@
<p>This property provides information on the output devices (displays, audio) available on this system</p>
<dl title='[NoInterfaceObject] interface OutputDevices' class='idl'>
- <dt>readonly attribute Display displays[]</dt>
+ <dt>readonly attribute Display[] displays</dt>
<dd>An array of all the display devices connected to this system</dd>
- <dt>readonly attribute Audio audioDevices[]</dt>
+ <dt>readonly attribute Audio[] audioDevices</dt>
<dd>An array of all the output audio devices connected to this system</dd>
</dl>
@@ -1108,16 +1108,16 @@
<h3>The <a>InputDevices</a> Property</h3>
<dl title='interface InputDevices' class='idl'>
- <dt>readonly attribute PointingDevice pointingDevices[]</dt>
+ <dt>readonly attribute PointingDevice[] pointingDevices</dt>
<dd>The list of physical pointing devices attached (e.g. mouse, tablet, touchscreens)</dd>
- <dt>readonly attribute Keyboard keyboards[]</dt>
+ <dt>readonly attribute Keyboard[] keyboards</dt>
<dd>The list of keyboards attached</dd>
- <dt>readonly attribute Camera cameras[]</dt>
+ <dt>readonly attribute Camera[] cameras</dt>
<dd>The list of cameras attached</dd>
- <dt>readonly attribute Microphone microphones[]</dt>
+ <dt>readonly attribute Microphone[] microphones</dt>
<dd>The list of microphones attached</dd>
</dl>
</section>
Received on Thursday, 28 January 2010 18:52:03 UTC