2009/dap/calendar Overview.html,1.8,1.9

Update of /sources/public/2009/dap/calendar
In directory hutz:/tmp/cvs-serv5278

Modified Files:
	Overview.html 
Log Message:
Update examples provided for CalendarEvent.recurrence to align with DOMTimeStamp definition.

Index: Overview.html
===================================================================
RCS file: /sources/public/2009/dap/calendar/Overview.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- Overview.html	25 Jan 2010 12:08:45 -0000	1.8
+++ Overview.html	25 Jan 2010 12:13:25 -0000	1.9
@@ -569,36 +569,36 @@
 						<pre class="example sh_javascript">{recurrence: {frequency: 'daily'}}  // Event occurs every day and never expires</pre>
 						
 						<pre class="example sh_javascript">{recurrence: {frequency: 'weekly',  // Event occurs weekly...
-              daysInWeek: [2, 4],   // ...every Tuesday and Thursday
-              expires: 1276272000}} // Event expires on or before June 11, 2010 @ 4pm</pre>
+              daysInWeek: [2, 4],      // ...every Tuesday and Thursday
+              expires: 1276272000000}} // Event expires on or before June 11, 2010 @ 4pm</pre>
 
-						<pre class="example sh_javascript">{recurrence: {frequency: 'weekly',  // Event occurs weekly...on every Wednesday
-                                    // (if we say the 'start' attribute is March 24, 2010 @ 2pm (Wednesday) as  
-                                    // shown above and no daysInWeek attribute is provided)
-              expires: 1276272000}} // Event expires on or before June 11, 2010 @ 4pm </pre>	
+						<pre class="example sh_javascript">{recurrence: {frequency: 'weekly',     // Event occurs weekly...on every Wednesday
+                                       // (if we say the 'start' attribute is March 24, 2010 @ 2pm (Wednesday) as  
+                                       // shown above and no daysInWeek attribute is provided)
+              expires: 1276272000000}} // Event expires on or before June 11, 2010 @ 4pm </pre>	
 			  
-						<pre class="example sh_javascript">{recurrence: {frequency: 'monthly', // Event occurs monthly...
-              daysInMonth: [-5],    // ...5 days before the end of each month 
-              expires: 1276272000}} // Event expires on or before June 11, 2010 @ 4pm</pre>
+						<pre class="example sh_javascript">{recurrence: {frequency: 'monthly',    // Event occurs monthly...
+              daysInMonth: [-5],       // ...5 days before the end of each month 
+              expires: 1276272000000}} // Event expires on or before June 11, 2010 @ 4pm</pre>
 			  
-						<pre class="example sh_javascript">{recurrence: {frequency: 'monthly', // Event occurs monthly...on the 24th day of every month
-                                    // (if we say the 'start' attribute is March 24, 2010 @ 2pm as  
-                                    // shown above and no daysInMonth attribute is provided)
-              expires: 1276272000}} // Event expires on or before June 11, 2010 @ 4pm </pre>	
+						<pre class="example sh_javascript">{recurrence: {frequency: 'monthly',    // Event occurs monthly...on the 24th day of every month
+                                       // (if we say the 'start' attribute is March 24, 2010 @ 2pm as  
+                                       // shown above and no daysInMonth attribute is provided)
+              expires: 1276272000000}} // Event expires on or before June 11, 2010 @ 4pm </pre>	
 
-						<pre class="example sh_javascript">{recurrence: {frequency: 'yearly',  // Event occurs yearly...on the 24th day of every March
-                                    // (if we say the 'start' attribute is March 24, 2010 @ 2pm as  
-                                    // shown above and no daysInMonth attribute is provided)
-              expires: 1276272000}} // Event expires on or before June 11, 2010 @ 4pm </pre>	
+						<pre class="example sh_javascript">{recurrence: {frequency: 'yearly',     // Event occurs yearly...on the 24th day of every March
+                                       // (if we say the 'start' attribute is March 24, 2010 @ 2pm as  
+                                       // shown above and no daysInMonth attribute is provided)
+              expires: 1276272000000}} // Event expires on or before June 11, 2010 @ 4pm </pre>	
 			  
-			  			<pre class="example sh_javascript">{recurrence: {frequency: 'yearly',  // Event occurs yearly...
-              daysInMonth: [24],    // ...every 24th day... 
-              monthsInYear: [3, 6], // ...in every March and June
-              expires: 1276272000}} // Event expires on or before June 11, 2010 @ 4pm </pre>
+			  			<pre class="example sh_javascript">{recurrence: {frequency: 'yearly',     // Event occurs yearly...
+              daysInMonth: [24],       // ...every 24th day... 
+              monthsInYear: [3, 6],    // ...in every March and June
+              expires: 1276272000000}} // Event expires on or before June 11, 2010 @ 4pm </pre>
 			  
-			  			<pre class="example sh_javascript">{recurrence: {frequency: 'yearly',  // Event occurs yearly...
-              daysInYear: [168],    // ...every 168th day of each year 
-              expires: 1276272000}} // Event expires on or before June 11, 2010 @ 4pm </pre>
+			  			<pre class="example sh_javascript">{recurrence: {frequency: 'yearly',     // Event occurs yearly...
+              daysInYear: [168],       // ...every 168th day of each year 
+              expires: 1276272000000}} // Event expires on or before June 11, 2010 @ 4pm </pre>
 			  			  
                     </dd>   
                     <dt>

Received on Monday, 25 January 2010 12:13:28 UTC