buildframework/helium/doc/antdoclet/html/main.vm
author Bob Rosenberg <bob.rosenberg@nokia.com>
Mon, 20 Sep 2010 10:55:43 +0100
changeset 658 cab9da9b71bb
parent 587 85df38eb4012
permissions -rw-r--r--
Test and fail for badly invalid unit elements when joining

##
## This template is the entry point for calling other templates.
## The output of this template goes to stdout.
##
## Objects available in context:
##
## $velocity   - Helper object for processing other templates (of type VelocityFacade)
## $antroot   - Contains all the Ant tasks/types (of type AntRoot)
## $title         - Project title (of type String)
##

AntDoclet - Running project $title

- Generating Task and Types documentation...
##
#foreach( $taskDoc in $antroot.getAll() ) ##
  #if ( ! $taskDoc.isIgnored() )

- Processing $taskDoc.antName ##
      $velocity.eval( "task.vm", "${taskDoc.getFullClassName()}.html" ) ##
  #else ##
- Ignoring $taskDoc.fullClassName()##
  #end ##
#end ##


- Generating Navigation indexes...
## Now, generate an "index" file for the categories, and one for each category
$velocity.eval( "libindex.vm", "libindex.html" )
$velocity.eval( "overview.vm", "overview.html" )
#foreach( $category in $antroot.getCategories() )
	$velocity.eval( "taskindex.vm", "index.${category}.html" )
#end
#set($category = "all")
$velocity.eval( "taskindex.vm", "index.${category}.html" )

- Done