<#ftl ns_prefixes={ "D":"http://docbook.org/ns/docbook", "xl":"http://www.w3.org/1999/xlink" }> <#--^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ must be at the top of the file........--> <#-- 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 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. --> <#macro text text> <#list text?children as child> <#if child?node_type = "text"> ${child} <#elseif child?node_type = 'element' && child?node_name = "link"> ${child} <#elseif child?node_type = 'element' && child?node_name = "orderedlist"> <@orderedlist node=child/> <#elseif child?node_type = 'element' && child?node_name = "itemizedlist"> <@itemizedlist node=child/> <#elseif child?node_type = 'element' && child?node_name = "mediaobject"> <@mediaobject node=child/> <#elseif child?node_type = 'element' && child?node_name = "emphasis"> ${child} <#elseif child?node_type = 'element' && child?node_name = "programlisting">
${child}
<#macro section inSection level first="no"> <#list inSection.* as subSection> <#if subSection?node_name = "title"> <#list subSection?children as subTitle> <#if subTitle?node_type = "text"> <#if first = "yes">

${subTitle}

<#else>
${subTitle} <#else> <#if subTitle?node_name = "anchor"> <#elseif subSection?node_name = "para">

<@para para=subSection/>

<#elseif subSection?node_name = "section"> <#assign levelPlus=level?number +1/> <@section inSection=subSection level="${levelPlus}"/> <#elseif subSection?node_name = "orderedlist"> <@orderedlist node=subSection/> <#elseif subSection?node_name = "itemizedlist"> <@itemizedlist node=subSection/> <#elseif subSection?node_name = "caution"> <@admonition node=subSection/> <#elseif subSection?node_name = "important"> <@admonition node=subSection/> <#elseif subSection?node_name = "note"> <@admonition node=subSection/> <#elseif subSection?node_name = "tip"> <@admonition node=subSection/> <#elseif subSection?node_name = "warning"> <@admonition node=subSection/> <#macro listItems node> <#list node?children as item> <#if item?node_type = "element" && item?node_name = "listitem"> <#list item.* as subpara>
  • <@para para=subpara/>
  • <#macro orderedlist node>
      <@listItems node=node/>
    <#macro itemizedlist node> <#macro mediaobject node> <#list node?children as item> <#if item?node_type = "element" && item?node_name = "imageobject"> <#assign fileref = item.imagedata["@fileref"]/> <#assign depth = item.imagedata["@depth"]/> <#assign width = item.imagedata["@width"]/> <#elseif item?node_type = "element" && item?node_name = "textobject"> <#assign alt = item.phrase/> <#elseif item?node_type = "element" && item?node_name = "caption"> <#assign caption = item/> height="${depth}" <#if width?has_content> width="${width}" alt="<#if alt?has_content>${alt}" /> <#if caption?has_content>
    ${caption}
    <#macro para para> <@text text=para/> <#macro admonition node> <#list node.* as subSection> <#if subSection?node_name = "title">

    ${subSection}

    <#elseif subSection?node_name = "para">

    <@para para=subSection/>

    <@section inSection=doc.section first="yes" level=1/>