4a11566
click here to add a description
click here to add a homepage
YUI Javascript Documentation Tool — Read more
http://yuilibrary.com/projects/yuidoc
This URL has Read+Write access
.
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+##############################################################################
+# The location of your yuidoc install
+# yuidoc_home=yahoo/presentation/tools/yuidoc
+# yuidoc_home=~/www/yuidoc/yuidoc
+yuidoc_home=..
+src=~/src/yui3/src
+parser_in="$src/base/js"
+# The location to output the parser data. This output is a file containing a
+# json string, and copies of the parsed files.
+parser_out=build_tmp/yuidoc_tmp
+# The directory to put the html file outputted by the generator
+generator_out=build_tmp/api
+# The location of the template files. Any subdirectories here will be copied
+# verbatim to the destination directory.
+template=$yuidoc_home/template
+version="localtest"
+$yuidoc_home/bin/yuidoc.py $parser_in -p $parser_out -o $generator_out -t $template -v $version -s $*
+parser_in="$src/node/js"
4a115664a11566