#* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 * * https://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 ( isbn $isbn)

Available from:
Amazon.com | Barnes & Noble | Book Sense | Powells.com

#end #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 #if ($subsection.getAttributeValue("isbn")) #set ($isbn = $subsection.getAttributeValue("isbn")) #isbn ($isbn) #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 ( teamcity $teamcity) #set ($viewLink = $teamcity.getAttributeValue("viewlog") ) #foreach ($project in $teamcity.getChildren() ) #foreach ($configuration in $project.getChildren() ) #configuration ($configuration $viewLink) #end #end
Title Description Build command When last build last success
$project.getAttributeValue("name")
#end #macro ( configuration $conf $viewLink) #set ($id = $conf.getAttributeValue("id") ) $conf.getAttributeValue("title") $conf.getChild("description").getContent() $conf.getAttributeValue("command") #if ($conf.getChild("when")) $conf.getChild("when").getContent() #else continuously #end last build last success #end ## The hudson macro is based on the teamcity macro, but slightly different. ## Mainly in the need of another nested element (job instead of configuration). ## Maybe refactoring would ease that code ... #macro ( hudson $hudson) #set ($base = $hudson.getAttributeValue("base") ) #foreach ($project in $hudson.getChildren() ) #foreach ($job in $project.getChildren() ) #job ($job $base) #end #end
Title Description Build command When last build last success
$project.getAttributeValue("name")
#end ## The hudson::job macro is based on the teamcity::configuration macro, but slightly different. ## Mainly the links to the build results are different. #macro ( job $job $base) #set ($jobId = $job.getAttributeValue("id") ) $job.getAttributeValue("title") $job.getChild("description").getContent() $job.getAttributeValue("command") #if ($job.getChild("when")) $job.getChild("when").getContent() #else continuously #end last build last success #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) #elseif ($items.getName().equals("teamcity")) #teamcity ($items) #elseif ($items.getName().equals("hudson")) #hudson ($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