Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Unified Diff: chrome/common/extensions/docs/build/build.py

Issue 10832042: Extensions Docs Server: Doc conversion script (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/build/build.py
diff --git a/chrome/common/extensions/docs/build/build.py b/chrome/common/extensions/docs/build/build.py
index 233a826419d5e73560383aec85e25fe2ba731a3f..6e8ada4be47b4b437a3b599a803991f6c4babe57 100755
--- a/chrome/common/extensions/docs/build/build.py
+++ b/chrome/common/extensions/docs/build/build.py
@@ -188,6 +188,18 @@ def main():
default=True)
options, args = parser.parse_args()
+ # This is a script that converts the documentation from the old style (using
+ # build.py, etc.) to the new style. The new docs and docs server can be found
+ # in the ../server2 directory.
+ Popen([os.path.join(_base_dir, 'server2', 'converter.py'),
not at google - send to devlin 2012/08/01 20:41:04 paths here need to be fixed so that it can be run
cduvall 2012/08/02 00:54:06 Done.
+ '../static',
+ '../../api',
+ 'templates/articles',
+ 'templates/intros',
+ 'templates/public',
+ 'static/images',
+ '-r'])
+
if (options.dump_render_tree_path and
os.path.isfile(options.dump_render_tree_path)):
dump_render_tree = options.dump_render_tree_path
« no previous file with comments | « chrome/common/extensions/docs/apps/about_apps.html ('k') | chrome/common/extensions/docs/server2/api_list_data_source.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698