view xsls/body.xsls @ 32:2bcfb5f75e06

Supporting new format of <module> and <section>: <module name="..." ...> and <section id="..." name="..."> Old format should be eventually removed.
author Igor Sysoev <igor@sysoev.ru>
date Fri, 30 Sep 2011 13:13:21 +0000
parents 61e04fc01027
children 34dcd26f2894
line wrap: on
line source

X:stylesheet {

X:template body (lang) {

    X:variable ALIGN = {
        X:if "$lang = 'he'" { X:text {left} } else { X:text {right} }
    }

    <body>
    <table width="100%">

    <tr>
        <td width="70%"><center><h3>
            !{@name | @title} X:if "$YEAR" { X:text{: } !{$YEAR} }
        </h3></center></td>

        <td rowspan="2" align="{$ALIGN}" valign="top">
            <img src="/nginx.gif" alt="nginx"/><br/>

            <br/>
            <br/>

            !! "document(concat($XML, '/menu.xml'))
                         /menus/menu[@lang = $lang]/item";
        </td>

    </tr>

    <tr><td valign="top">

        <table width="100%"><tr><td align="{$ALIGN}">
        X:if "section[@id]" {
            X:for-each "section[@id]" {
                <a href="#{@id}"> !{@name} </a><br/>
            }
        } else {
            X:for-each "section[@name]" {
                <a href="#{@name}"> !{@title} </a><br/>
            }
        }
        </td></tr></table>

        !!;

        X:if "@author" {
            <table width="100%"><tr><td align="right">

            !{document(concat($XML, '/i18n.xml'))
                       /i18n/text[@lang = $lang]/item[@id='author']}
            X:text { } !{@author} <br/>

            X:if "@editor" {
                !{document(concat($XML, '/i18n.xml'))
                           /i18n/text[@lang = $lang]/item[@id='editor']}
                X:text { } !{@editor} <br/>
            }

            X:if "@translator" {
                !{document(concat($XML, '/i18n.xml'))
                           /i18n/text[@lang = $lang]/item[@id='translator']}
                X:text { } !{@translator} <br/>
            }

            </td></tr></table>
        }

    </td></tr>

    </table>
    </body>

}

}