- From: Robin Berjon via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 28 Jan 2010 15:29:22 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/system-info
In directory hutz:/tmp/cvs-serv17936/system-info
Modified Files:
Overview.html
Log Message:
detect and avoid bad IDs generated from WebIDL
Index: Overview.html
===================================================================
RCS file: /sources/public/2009/dap/system-info/Overview.html,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -d -r1.66 -r1.67
--- Overview.html 28 Jan 2010 14:06:51 -0000 1.66
+++ Overview.html 28 Jan 2010 15:29:20 -0000 1.67
@@ -216,7 +216,7 @@
</dl>
<dl title='[NoInterfaceObject] interface SystemInfo' class='idl'>
- <dt>PendingOp get(DOMString propertyId, SuccessCB successCallback, optional ErrorCB? errorCallback, optional Options options)</dt>
+ <dt>PendingOp get()</dt>
<dd>
This function retrieves the current state of a given
system property. When called, the function MUST
@@ -242,12 +242,12 @@
<dt>optional ErrorCB? errorCallback</dt>
<dd>function called when an error occurred while retrieving the properties</dd>
- <dt>optional options</dt>
+ <dt>optional Options options</dt>
<dd>An object containing the various options for fetching the properties requested</dd>
</dl>
</dd>
- <dt>PendingOp watch(DOMString propertyId, SuccessCB successCallback, optional ErrorCB? errorCallback, optional Options options)</dt>
+ <dt>PendingOp watch()</dt>
<dd>The <a>watch</a> function allows tracking the change
of one or several system properties. When called, it
immediately returns and then asynchronously starts a watch process
@@ -285,7 +285,7 @@
<dd>An object containing the various options for fetching the properties requested</dd>
</dl>
</dd>
- <dt>PendingOp set(DOMString propertyId, DOMString instanceId, Object newValue, optional SuccessCB? successCallback, optional ErrorCB? errorCallback)</dt>
+ <dt>PendingOp set()</dt>
<dd>
The <a>set</a> function modifies the current value of of a
system property. When called, the function immediately
Received on Thursday, 28 January 2010 15:29:24 UTC