summaryrefslogtreecommitdiffstats
path: root/o3d/documentation/jsdoc-toolkit-templates
diff options
context:
space:
mode:
authorgman@google.com <gman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-15 23:42:06 +0000
committergman@google.com <gman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-15 23:42:06 +0000
commit349966346211bb65ecc70892e120db7779aaae10 (patch)
tree3c3057e5ac87a1e530f21febae8e7a6f966c7396 /o3d/documentation/jsdoc-toolkit-templates
parentb9569a8c801d913732c2d5dae717c50971f5d4b6 (diff)
downloadchromium_src-349966346211bb65ecc70892e120db7779aaae10.zip
chromium_src-349966346211bb65ecc70892e120db7779aaae10.tar.gz
chromium_src-349966346211bb65ecc70892e120db7779aaae10.tar.bz2
quick fix for bad checkin
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20813 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/documentation/jsdoc-toolkit-templates')
-rw-r--r--o3d/documentation/jsdoc-toolkit-templates/publish.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/o3d/documentation/jsdoc-toolkit-templates/publish.js b/o3d/documentation/jsdoc-toolkit-templates/publish.js
index 70229a3..c588e5a 100644
--- a/o3d/documentation/jsdoc-toolkit-templates/publish.js
+++ b/o3d/documentation/jsdoc-toolkit-templates/publish.js
@@ -124,7 +124,7 @@ function publishInternal(symbolSet) {
try {
var templatesDir = publish.conf.templatesDir;
var classTemplate = new JSDOC.JsPlate(templatesDir + 'class.tmpl');
- var exportsTemplate = new JSDOC.JsPlate(templatesDir + 'exports.tmpl');
+ //var exportsTemplate = new JSDOC.JsPlate(templatesDir + 'exports.tmpl');
var membersTemplate = new JSDOC.JsPlate(templatesDir + 'members.tmpl');
var classTreeTemplate = new JSDOC.JsPlate(templatesDir + 'classtree.tmpl');
var fileListTemplate = new JSDOC.JsPlate(templatesDir + 'filelist.tmpl');
@@ -232,8 +232,8 @@ function publishInternal(symbolSet) {
IO.saveFile(publish.conf.outDir, 'namespaces' + publish.conf.ext, namespaces);
IO.saveFile(publish.conf.htmlDir, 'namespaces.html', namespaces);
- var exports = exportsTemplate.process(symbols);
- IO.saveFile(publish.conf.outDir, 'exports.js', fileList);
+ //var exports = exportsTemplate.process(symbols);
+ //IO.saveFile(publish.conf.outDir, 'exports.js', fileList);
}
/**