public
Description: YUI Javascript Documentation Tool
Homepage: http://yuilibrary.com/projects/yuidoc
Clone URL: git://github.com/yui/yuidoc.git
davglass (author)
Mon Dec 01 15:52:37 -0800 2008
commit  219962180ea55092f8da743f03b963ba996d7b9e
tree    90ecbca422cc89e8bf21cdcaea827792af2794ff
parent  b9ad441a3572c68d43ac770b64bf946dc6ccbd43
yuidoc /
name age message
file CHANGES Loading commit data...
file INSTALL
file README
file TAGS Mon Oct 08 11:42:58 -0700 2007 doc update [apm]
file TODO
directory bin/
directory ext/
directory template/
README
yuidoc README

yuidoc is a set of tools to generate the API documentation for the JavaScript
in the YUI library.  The docs are derived completely from JavaDoc style
comment blocks; no attempt is made to understand the javascript itself.

The tools are written in python, and should work for version 2.3 and up.  
To date, it has only been tested in version 2.3 on a unix system.  Although
largely untested, it should work in MS windows as well.

The following python libraries are required:
    simplejson - for reading and writing json
    cheetah    - for generating the html docs
    pygments   - for colorizing the source

Files:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

README
    This file

CHANGES
    The change log

INSTALL
    Installation instructions

TAGS
    Supported tags

TODO
    Things that need to be done

bin/yuidoc_parse.py
    The comment block parser.  Parses all javascript files in the the specified 
    directories and outputs a single file containing a json structure of the 
    parsed documentation.

bin/yuidoc_highlight.py
    Colorizes the script source

bin/yuidoc_generate.py
    Reads the json output from parser.py and generates HTML docs.

bin/yuidoc.py
    wraps the calss to yuidoc_parse, yuidoc_highlight, and yuidoc_generate

bin/example.sh 
    An example shell script to run both the parser and generator on a src tree

bin/example.bat
    An example batch for for DOS/Windows

ext
    External required packages, provided for convenience