Skip to content
Snippets Groups Projects
Commit 7aaa06a9 authored by gman@google.com's avatar gman@google.com
Browse files

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
parent ce900f00
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment