#* * DVSL Stylesheet to format the Ant Task documentation. *# #set( $relative-path = "." ) #if (false) #set( $body-bg = '#ffffff' ) #set( $body-fg = '#000000' ) #set( $body-link = '#525D76' ) ##set( $banner-bg = '#EEEEEE') #set( $banner-fg = '#000000') #set( $sub-banner-bg = '#828DA6') #set( $sub-banner-fg = '#ffffff') ##set( $table-th-bg = '#FFEEEE') ##set( $table-td-bg = '#FFEEEE') ##set( $source-color = '#CCFFFF') #set( $table-th-bg = '#EEEEEE') #set( $table-td-bg = '#EEEEEE') #set( $banner-bg = '#a0ddf0') ##set( $banner-bg = '#525D76') ##set( $table-th-bg = '#039acc') ##set( $table-td-bg = '#a0ddf0') #set( $source-color = '#023264') #end #set( $body-bg = '#ffffff' ) #set( $body-fg = '#000000' ) #set( $body-link = '#525D76' ) #set( $banner-bg = '#525D76') #set( $banner-fg = '#ffffff') #set( $sub-banner-bg = '#828DA6') #set( $sub-banner-fg = '#ffffff') #set( $table-th-bg = '#cccccc') #set( $table-td-bg = '#eeeeee') #set( $source-color = '#023264') #set( $source-font-size = '+0') ## Double quote for convenience #set ($qq = '"') ## Macro to output argument if test evaluates to true #macro(ifset $test $output) #if ( $test )$output#end #end #match( "task" ) #set( $task_name = $attrib.name ) ## Create task title with first letter in upper case #set( $task_title = "$task_name.substring(0,1).toUpperCase()$task_name.substring(1)" ) $task_title Task ## PAGE HEADER ## HEADER SEPARATOR ##
## JAKARTA LOGO The Jakarta Project #if( $project.logo ) #set( $alt = $project.logo ) #set( $home = $project.attribute("href") ) #set( $src = $project.logo.attribute( "href" ) ) ## PROJECT LOGO $alt #end

$context.applyTemplates("long-description") $context.applyTemplates("structure/attributes") $context.applyTemplates("structure/elements")

Copyright © 2000-2002, Apache Software Foundation
#end #* Macro to format a table heading cell *# #macro( th $text ) $text #end #* Macro to format a table body cell *# #macro( td $text ) $text #end #* Macro to format a section banner *# #macro( section $anchor $name ) $name #end #* Macro to format a subsection banner *# #macro( subsection $anchor $name ) $name #end #* Match long-description section *# #match( "long-description" ) #section($task_name "$task_title Task Description")
 
$node.value()
#end #* Match structure/attributes section *# #match( "structure/attributes" ) #section("attributes" "Parameters")
 
#th("Attribute") #th("Description") #th("Type") $context.applyTemplates("*")
#end #* Match structure/elements section *# #match( "structure/elements" ) #section("elements" "Parameters as nested elements")
 
$context.applyTemplates("*")
#end #match( "attribute" ) #td($attrib.name) #td($node.description) #td($attrib.type) #end #match( "element" ) #subsection($attrib.name $attrib.name)
$node.description
#end #* * Process a menu for the navigation bar *# #match( "menu" )

$attrib.name

#end #* * Process a menu item for the navigation bar *# #match( "item" ) #if( $attrib.href.endsWith("$outputfilename") && !$attrib.href.startsWith("http")) $attrib.name #else #if( $attrib.href.startsWith("http") ) $attrib.name #else $attrib.name #end #end #end #* * process a documentation section *# #match( "section" )
 
#if ( $attrib.anchor ) #set( $anchor = $attrib.anchor ) #else #set( $anchor = $attrib.name ) #end $attrib.name
$context.applyTemplates("*")
#end #match( "subsection" )
#if ( $attrib.anchor ) #set( $anchor = $attrib.anchor ) #else #set( $anchor = $attrib.name ) #end $attrib.name
$context.applyTemplates("*")
#end #match( "source" )
$toolbox.htmlescape.getText( $node.value() )
#end #match("table") $context.applyTemplates("*")
#end #match("tr") $context.applyTemplates("*") #end #match( "td" ) $node.copy( $node.children() ) #end #match( "th" ) $node.copy( $node.children()) #end #match("*") $node.copy() #end