From 139a9cd7d495922b0f6e8f79d5fb3239db59b5ba Mon Sep 17 00:00:00 2001 From: John Resig Date: Sun, 13 Aug 2006 15:22:02 +0000 Subject: [PATCH] Moved some more files around. --- build/docs.js | 16 ++++++++-------- {docs/events => build/docs}/gen-events.pl | 0 2 files changed, 8 insertions(+), 8 deletions(-) rename {docs/events => build/docs}/gen-events.pl (100%) diff --git a/build/docs.js b/build/docs.js index 4ed6cc7..e17e64d 100644 --- a/build/docs.js +++ b/build/docs.js @@ -1,6 +1,6 @@ -load("build/js/json.js"); -load("build/js/xml.js"); -load("build/js/writeFile.js"); +load("js/json.js"); +load("js/xml.js"); +load("js/writeFile.js"); var types = { jQuery: "A jQuery object.", @@ -14,7 +14,7 @@ var types = { Function: "A reference to a Javascript function." }; -var f = readFile("../jquery-svn.js"); +var f = readFile(arguments[0]); var c = [], bm, m; var blockMatch = /\/\*\*\s*((.|\n)*?)\s*\*\//g; @@ -82,17 +82,17 @@ while ( bm = blockMatch.exec(f) ) { var json = Object.toJSON( c ); -writeFile( "data/jquery-docs-json.js", json ); -writeFile( "data/jquery-docs-jsonp.js", "docsLoaded(" + json + ")" ); +writeFile( arguments[1] + "/data/jquery-docs-json.js", json ); +writeFile( arguments[1] + "/data/jquery-docs-jsonp.js", "docsLoaded(" + json + ")" ); Object.toXML.force = { desc: 1, code: 1, before: 1, result: 1 }; var xml = Object.toXML( { method: c }, "docs" ); -writeFile( "data/jquery-docs-xml.xml", +writeFile( arguments[1] + "/data/jquery-docs-xml.xml", "\n" + xml ); -writeFile( "index.xml", +writeFile( arguments[1] + "/index.xml", "\n" + "\n" + xml ); diff --git a/docs/events/gen-events.pl b/build/docs/gen-events.pl similarity index 100% rename from docs/events/gen-events.pl rename to build/docs/gen-events.pl -- 1.7.10.4