[html5] r6284 - [giow] (0) Define how to serialise JSON for use in drag-and-drop. Fixing http:// [...]

whatwg at whatwg.org whatwg at whatwg.org
Thu Jul 7 17:17:54 PDT 2011


Author: ianh
Date: 2011-07-07 17:17:52 -0700 (Thu, 07 Jul 2011)
New Revision: 6284

Modified:
   complete.html
   index
   source
Log:
[giow] (0) Define how to serialise JSON for use in drag-and-drop.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=13165

Modified: complete.html
===================================================================
--- complete.html	2011-07-07 23:32:41 UTC (rev 6283)
+++ complete.html	2011-07-08 00:17:52 UTC (rev 6284)
@@ -239,7 +239,7 @@
 
   <header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
    <hgroup><h1>Web Applications 1.0</h1>
-    <h2 class="no-num no-toc">Living Standard — Last Updated 7 July 2011</h2>
+    <h2 class="no-num no-toc">Living Standard — Last Updated 8 July 2011</h2>
    </hgroup><dl><dt>Multiple-page version:</dt>
     <dd><a href=http://www.whatwg.org/specs/web-apps/current-work/complete/>http://www.whatwg.org/specs/web-apps/current-work/complete/</a></dd>
     <dt>One-page version:</dt>
@@ -59972,7 +59972,11 @@
    <li><p>Add an entry to <var title="">result</var> called "<code title="">items</code>" whose value is the array <var title="">items</var>.</li>
 
    <li><p>Return the result of serializing <var title="">result</var>
-   to JSON.</li>
+   to JSON in the shortest possible way (meaning no whitespace between
+   tokens, no unnecessary zero digits in numbers, and only using
+   Unicode escapes in strings for characters that do not have a
+   dedicated escape sequence), and with a lowercase "<code title="">e</code>" used, when appropriate, in the representation of
+   any numbers. <a href=#refsJSON>[JSON]</a></li>
 
   </ol><p class=note>This algorithm returns an object with a single
   property that is an array, instead of just returning an array, so

Modified: index
===================================================================
--- index	2011-07-07 23:32:41 UTC (rev 6283)
+++ index	2011-07-08 00:17:52 UTC (rev 6284)
@@ -243,7 +243,7 @@
 
   <header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
    <hgroup><h1 class=allcaps>HTML</h1>
-    <h2 class="no-num no-toc">Living Standard — Last Updated 7 July 2011</h2>
+    <h2 class="no-num no-toc">Living Standard — Last Updated 8 July 2011</h2>
    </hgroup><dl><dt><strong>Web developer edition</strong></dt>
     <dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
     <dt>Multiple-page version:</dt>
@@ -59844,7 +59844,11 @@
    <li><p>Add an entry to <var title="">result</var> called "<code title="">items</code>" whose value is the array <var title="">items</var>.</li>
 
    <li><p>Return the result of serializing <var title="">result</var>
-   to JSON.</li>
+   to JSON in the shortest possible way (meaning no whitespace between
+   tokens, no unnecessary zero digits in numbers, and only using
+   Unicode escapes in strings for characters that do not have a
+   dedicated escape sequence), and with a lowercase "<code title="">e</code>" used, when appropriate, in the representation of
+   any numbers. <a href=#refsJSON>[JSON]</a></li>
 
   </ol><p class=note>This algorithm returns an object with a single
   property that is an array, instead of just returning an array, so

Modified: source
===================================================================
--- source	2011-07-07 23:32:41 UTC (rev 6283)
+++ source	2011-07-08 00:17:52 UTC (rev 6284)
@@ -68069,7 +68069,12 @@
    title="">items</var>.</p></li>
 
    <li><p>Return the result of serializing <var title="">result</var>
-   to JSON.</p></li>
+   to JSON in the shortest possible way (meaning no whitespace between
+   tokens, no unnecessary zero digits in numbers, and only using
+   Unicode escapes in strings for characters that do not have a
+   dedicated escape sequence), and with a lowercase "<code
+   title="">e</code>" used, when appropriate, in the representation of
+   any numbers. <a href="#refsJSON">[JSON]</a></p></li>
 
   </ol>
 




More information about the Commit-Watchers mailing list