#set( $relative-path = "." ) #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 = '#039acc') #set( $table-td-bg = '#a0ddf0') #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( "document" ) #set( $project = $node.selectSingleNode("document('src/site/resources/project.xml')/project" ) ) $project.title - $node.properties.title #foreach( $n in $node.properties.selectNodes("author") ) #end ## PAGE HEADER ## HEADER SEPARATOR ## LEFT SIDE NAVIGATION
## APACHE LOGO The Apache Velocity 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( $project, "body/menu" ) $context.applyTemplates("body/section")

Copyright © 1999-2001, Apache Software Foundation
#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.startsWith("http") )
  • $attrib.name
  • #else
  • $attrib.name
  • #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