1 load("build/js/json.js", "build/js/xml.js", "build/js/writeFile.js", "build/js/parse.js");
3 var dir = arguments[1];
5 var c = parse( readFile(arguments[0]) );
11 function output( c, n ) {
12 var json = Object.toJSON( c );
14 writeFile( dir + "/data/jquery-" + n + "-json.js", json );
15 writeFile( dir + "/data/jquery-" + n + "-jsonp.js", "docsLoaded(" + json + ")" );
17 Object.toXML.force = { desc: 1, code: 1, before: 1, result: 1 };
19 var xml = Object.toXML( n == "docs" ? { method: c } : c, "docs" );
21 writeFile( dir + "/data/jquery-" + n + "-xml.xml",
22 "<?xml version='1.0' encoding='ISO-8859-1'?>\n" + xml );
24 writeFile( dir + "/" + ( n == "docs" ? "index" : n ) + ".xml",
25 "<?xml version='1.0' encoding='ISO-8859-1'?>\n" +
26 "<?xml-stylesheet type='text/xsl' href='style/docs.xsl'?>\n" + xml