blob: 3f7a54661b4af4198040238a44712078b16b1140 [file] [log] [blame]
<#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">
<a href="${child["@xl:href"]}">${child}</a>
<#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">
<span class="${child["@role"]}">${child}</span>
<#elseif child?node_type = 'element' && child?node_name = "programlisting">
<pre>${child}</pre>
</#if>
</#list>
</#macro>
<#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">
<h1>${subTitle}</h1>
<#else>
<br /><h${level}>${subTitle}</h${level}>
</#if>
<#else>
<#if subTitle?node_name = "anchor">
<span id="${subTitle["@xml:id"]}" />
</#if>
</#if>
</#list>
<#elseif subSection?node_name = "para">
<p><@para para=subSection/></p>
<#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">
<span class="caution"><@admonition node=subSection/></span>
<#elseif subSection?node_name = "important">
<span class="important"><@admonition node=subSection/></span>
<#elseif subSection?node_name = "note">
<span class="note"><@admonition node=subSection/></span>
<#elseif subSection?node_name = "tip">
<span class="tip"><@admonition node=subSection/></span>
<#elseif subSection?node_name = "warning">
<span class="warning"><@admonition node=subSection/></span>
</#if>
</#list>
</#macro>
<#macro listItems node>
<#list node?children as item>
<#if item?node_type = "element" && item?node_name = "listitem">
<#list item.* as subpara>
<li><@para para=subpara/></li>
</#list>
</#if>
</#list>
</#macro>
<#macro orderedlist node>
<ol class="numbers"><@listItems node=node/></ol>
</#macro>
<#macro itemizedlist node>
<ul class="dots"><@listItems node=node/></ul>
</#macro>
<#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/>
</#if>
</#list>
<img src="${fileref}" <#if depth?has_content> height="${depth}"</#if> <#if width?has_content> width="${width}"</#if> alt="<#if alt?has_content>${alt}</#if>" />
<#if caption?has_content><div>${caption}</div></#if>
</#macro>
<#macro para para>
<@text text=para/>
</#macro>
<#macro admonition node>
<#list node.* as subSection>
<#if subSection?node_name = "title">
<h3>${subSection}</h3>
<#elseif subSection?node_name = "para">
<p><@para para=subSection/></p>
</#if>
</#list>
</#macro>
<div class="contentarea">
<div id="column-container">
<div id="content-main-section">
<@section inSection=doc.section first="yes" level=1/>
</div>
</div>
</div>