#* * Copyright 2001-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *# ## Content Stylesheet for Site ## Defined variables #set ($lightbg = "#ffffff") #set ($lightfg = "#ffffff") #set ($darkfg = "#000000") #set ($active = "#ffcc00") #set ($blue4 = "#B2C4E0") #set ($blue3 = "#294563") #set ($blue2 = "#4C6C8F") #set ($blue1 = "#CFDCED") #set ($sourceborder = "#023264") #set ($pound = "#" ) ## start the processing #document() ## end the processing ## This is where the common page macro's live #macro ( subsection $subsection)

$subsection.getAttributeValue("name")

#foreach ( $items in $subsection.getChildren() ) #if ($items.getName().equals("img")) #image ($items) #elseif ($items.getName().equals("source")) #source ($items) #elseif ($items.getName().equals("table")) #table ($items) #elseif ($items.getName().equals("subsubsection")) #subsubsection ($items) #else $xmlout.outputString($items) #end #end #end #macro ( subsubsection $subsubsection)
*** $subsubsection.getAttributeValue("name") ***
#foreach ( $items in $subsubsection.getChildren() ) #if ($items.getName().equals("img")) #image ($items) #elseif ($items.getName().equals("source")) #source ($items) #elseif ($items.getName().equals("table")) #table ($items) #else $xmlout.outputString($items) #end #end #end #macro ( section $section)

$section.getAttributeValue("name")

#foreach ( $items in $section.getChildren() ) #if ($items.getName().equals("img")) #image ($items) #elseif ($items.getName().equals("source")) #source ($items) #elseif ($items.getName().equals("table")) #table ($items) #elseif ($items.getName().equals("subsection")) #subsection ($items) #else $xmlout.outputString($items) #end #end #end ## This is where the FAQ specific macro's live #macro (toc $section)

$section.getAttributeValue("title")

#end #macro (subtoc $faq) #set ($id = $faq.getAttributeValue("id"))
  • $xmlout.outputString($faq.getChild("question"), true)
  • #end #macro (answers $section) #foreach ($faq in $section.getChildren("faq") ) #faq ($faq) #end #end #macro (faq $faq) #set ($id = $faq.getAttributeValue("id"))

    $xmlout.outputString($faq.getChild("question"), true)

    #foreach ($item in $faq.getChild("answer").getChildren()) #if ($item.getName().equals("img")) #image ($item) #elseif ($item.getName().equals("source")) #source ($item) #elseif ($item.getName().equals("table")) #table ($item) #else $xmlout.outputString($item) #end #end #end #macro (document) #header()

    $root.getChild("properties").getChild("title").getText()

    #set ($allSections = $root.getChild("body").getChildren("section")) #foreach ( $section in $allSections ) #section ($section) #end #if ($root.getChildren("faqsection").size() > 0) #set ($allFaqSections = $root.getChildren("faqsection"))

    Questions

    #foreach ( $faqSection in $allFaqSections ) #toc ($faqSection) #end

    Answers

    #foreach ( $faqSection in $allFaqSections ) #answers ($faqSection) #end #end
    #footer() #end