- From: Richard Tibbett via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 25 Jan 2010 12:08:47 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/calendar
In directory hutz:/tmp/cvs-serv4945
Modified Files:
Overview.html
Log Message:
Seperation of freebusy vs. status of calendar events
Index: Overview.html
===================================================================
RCS file: /sources/public/2009/dap/calendar/Overview.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- Overview.html 25 Jan 2010 11:58:25 -0000 1.7
+++ Overview.html 25 Jan 2010 12:08:45 -0000 1.8
@@ -103,6 +103,7 @@
daysInWeek: [3] // Every Wednesday
},
freebusy: 'busy',
+ status: 'pending',
reminder: -3600000, // Remind 1 hour before each occurance of this event
serviceId: 'http://localhost/calendar'
});</pre>
@@ -536,17 +537,28 @@
<p>The end date and time of the event in UTC timestamp format as defined in [[!DOM-LEVEL-3-CORE]].</p>
<pre class="example sh_javascript_dom">{end: 1269442800000} // Event ends on March 24, 2010 @ 3pm</pre>
- </dd>
+ </dd>
+ <dt>
+ attribute DOMString? status
+ </dt>
+ <dd>
+ <p>An indication of the user's status of the event.
+
+ <p>This parameter may be set to one of the following constants:</p>
+ <pre>'pending', 'tentative', 'confirmed', 'cancelled'.</pre>
+
+ <pre class="example sh_javascript_dom">{status: 'pending'} // Event is awaiting user action</pre>
+ </dd>
<dt>
attribute DOMString? freebusy
</dt>
<dd>
- <p>A pre-defined indication of the freebusy status to set for the event.
+ <p>An indication of the freebusy status to set for the event.
- <p>This parameter must be set to one of the following constants:</p>
- <pre>'free', 'busy', 'tentative'.</pre>
+ <p>This parameter may be set to one of the following constants:</p>
+ <pre>'free', 'busy', 'outofoffice', 'holiday'.</pre>
- <pre class="example sh_javascript_dom">{freebusy: 'busy'} // Mark event as busy</pre>
+ <pre class="example sh_javascript_dom">{freebusy: 'busy'} // Mark event as busy in Calendar</pre>
</dd>
<dt>
attribute CalendarRepeatRule? recurrence
Received on Monday, 25 January 2010 12:08:51 UTC