Now have accurate version information built into jquery.js - will build it into the...
[jquery.git] / build / docs / docs.js
index a40f56a..500b91c 100644 (file)
@@ -2,7 +2,7 @@ load("build/js/json.js", "build/js/xml.js", "build/js/writeFile.js", "build/js/p
 
 var dir = arguments[1];
 
-var c = parse( readFile(arguments[0]) );
+var c = parse( read(arguments[0]) );
 output( c, "docs" );
 
 c = categorize( c );
@@ -17,7 +17,7 @@ function output( c, n ) {
        Object.toXML.force = { desc: 1, code: 1, before: 1, result: 1 };
        
        var xml = Object.toXML( n == "docs" ? { method: c } : c, "docs" );
-       
+
        writeFile( dir + "/data/jquery-" + n + "-xml.xml", 
                "<?xml version='1.0' encoding='ISO-8859-1'?>\n" + xml );