diff options
author | gman@google.com <gman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-22 23:31:46 +0000 |
---|---|---|
committer | gman@google.com <gman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-22 23:31:46 +0000 |
commit | 7aaa06a9b39651bdf68ede01d521fd81c3a0b255 (patch) | |
tree | 360fa0a0ef42891638e55937887e9fc8c1cdcdbd /o3d/documentation | |
parent | ce900f00db60730b171d915d41a7156aced9ed26 (diff) | |
download | chromium_src-7aaa06a9b39651bdf68ede01d521fd81c3a0b255.zip chromium_src-7aaa06a9b39651bdf68ede01d521fd81c3a0b255.tar.gz chromium_src-7aaa06a9b39651bdf68ede01d521fd81c3a0b255.tar.bz2 |
Fix the docs. Apparently they've been broken since
August 3rd rev 22348.
The scary thing is that's a little hard to believe
it's been broken that long and no one noticed
so I hope this is the correct fix but it does
appear to be wrong. The '/'s that were removed
are used in a string concat in the HTML templates.
Sometimes they need to be '' and sometimes 'folder/'
so that urls become
http://foo/bar.html
or
http://foo/folder/bar.html
Review URL: http://codereview.chromium.org/213033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26879 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/documentation')
-rwxr-xr-x | o3d/documentation/build_docs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/o3d/documentation/build_docs.py b/o3d/documentation/build_docs.py index cb9df4b..0138193 100755 --- a/o3d/documentation/build_docs.py +++ b/o3d/documentation/build_docs.py @@ -249,8 +249,9 @@ def BuildO3DClassHierarchy(html_output_dir): def BuildO3DJSDocs(js_files, ezt_output_dir, html_output_dir, exports_file):
+ # The backslashes below on 'jsdocs/' and '../' must stay.
RunJSDocToolkit(js_files, ezt_output_dir, html_output_dir, 'js_1_0_', 'o3djs',
- 'jsdocs', '..', exports_file)
+ 'jsdocs/', '../', exports_file)
def BuildO3DExternsFile(js_files_dir, extra_externs_file, externs_file):
|