Update global README with updated example, and license information for auto-tests.
authorRobert Konigsberg <konigsberg@google.com>
Wed, 4 May 2011 22:16:35 +0000 (15:16 -0700)
committerRobert Konigsberg <konigsberg@google.com>
Wed, 4 May 2011 22:16:35 +0000 (15:16 -0700)
README
auto_tests/lib/README [deleted file]

diff --git a/README b/README
index 0fc135d..5cbd96a 100644 (file)
--- a/README
+++ b/README
@@ -32,10 +32,13 @@ Minimal Example
 <script type="text/javascript">
   g = new Dygraph(
         document.getElementById("graphdiv"),  // containing div
-        "Date,Temperature\n" +                // the data series
-        "2008-05-07,75\n" +
-        "2008-05-08,70\n" +
-        "2008-05-09,80\n"
+        [
+          [ 'Date', 'Temperature' ],          // the data series
+          [ '2008-05-07', 75 ],
+          [ '2008-05-08', 70 ],
+          [ '2008-05-09', 80 ]
+        ],
+        { }                                   // the options
       );
 </script>
 </body>
@@ -52,9 +55,18 @@ dygraphs uses:
  - excanvas.js (Apache License)
  - YUI compressor (BSD License)
 
+automated tests use:
+ - auto_tests/lib/jquery-1.4.2.js (MIT & GPL2)
+ - auto_tests/lib/Asserts.js (Apache 2.0 License)
+ - auto-tests/lib/JsTestDriver-1.3.2.jar (Apache 2.0 License
+
 rgbcolor: http://www.phpied.com/rgb-color-parser-in-javascript/
 strftime: http://tech.bluesmoon.info/2008/04/strftime-in-javascript.html
 excanvas: http://code.google.com/p/explorercanvas/
 yui compressor: http://developer.yahoo.com/yui/compressor/
 
+jquery: http://code.jquery.com/jquery-1.4.2.js
+Asserts.js: http://www.google.com/codesearch/p?#3tsINRJRCro/trunk/JsTestDriver/src/com/google/jstestdriver/javascript/Asserts.js
+JSTestDriver: http://code.google.com/p/js-test-driver/
+
 dygraphs is available under the MIT license, included in LICENSE.txt.
diff --git a/auto_tests/lib/README b/auto_tests/lib/README
deleted file mode 100644 (file)
index 25a99e2..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-JQuery lib:
-  License: MIT & GPL2
-  http://code.jquery.com/jquery-1.4.2.js
-Asserts.js:
-  License: Apache 2.0
-  http://www.google.com/codesearch/p?#3tsINRJRCro/trunk/JsTestDriver/src/com/google/jstestdriver/javascript/Asserts.js