- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 14 Oct 2009 11:24:24 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/mdvevent
In directory hutz:/tmp/cvs-serv27914
Modified Files:
Overview.html
Log Message:
Microdata: Rename .content to .itemValue and make it more useful. (whatwg r4140)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/mdvevent/Overview.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- Overview.html 9 Oct 2009 10:39:22 -0000 1.5
+++ Overview.html 14 Oct 2009 11:24:22 -0000 1.6
@@ -215,7 +215,7 @@
<h1>Microdata vocabularies: vEvent</h1>
<!--ZZZ:-->
<!--<h2 class="no-num no-toc">W3C Working Draft 25 August 2009</h2>-->
- <h2 class="no-num no-toc" id="editor-s-draft-9-october-2009">Editor's Draft 9 October 2009</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-14-october-2009">Editor's Draft 14 October 2009</h2>
<!--:ZZZ-->
<dl><!-- ZZZ: update the month/day (twice), (un)comment out--><!--
<dt>This Version:</dt>
@@ -308,7 +308,7 @@
track.
<!--ZZZ:-->
<!--This specification is the 25 August 2009 Working Draft.-->
- This specification is the 9 October 2009 Editor's Draft.
+ This specification is the 14 October 2009 Editor's Draft.
<!--:ZZZ-->
</p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>The text of this specification is also available as part of the
<a href="http://www.whatwg.org/">WHATWG</a>'s <a href="http://www.whatwg.org/specs/vocabs/current-work/#md-vevent">Microdata
@@ -1057,7 +1057,7 @@
calendar += 'UID:' + node.itemId + '\r\n';
for (var propIndex = 0; propIndex < node.properties.length; propIndex += 1) {
var prop = node.properties[propIndex];
- var value = prop.contents;
+ var value = prop.itemValue;
var parameters = '';
if (prop.localName == 'time') {
value = value.replace(/[:-]/g, '');
Received on Wednesday, 14 October 2009 11:24:26 UTC