view docs/xsls/content.xsls @ 4034:e2c075e774b6

Cache size accounting fix: actual cache size on disk was less than needed by sum of sizes of files loaded by worker processes themselves while cache loader was running. The bug has been introduced in r3900.
author Igor Sysoev <igor@sysoev.ru>
date Thu, 25 Aug 2011 17:29:34 +0000
parents fc808f006ff4
children ac19e755a132
line wrap: on
line source

X:stylesheet {

X:template = "section[@name and @title]" {
    <a name="{@name}" /> <center><h4> !{@title} </h4></center>
    !!;
}

X:template = "section[not(@name) and @title]" {
    <center><h4> !{@title} </h4></center>
    !!;
}

X:template = "section[not(@name) and not(@title)]" { !!; }

X:template = "para" { <p> !!; </p> }

X:template = "value" { <i> !!; </i> }

}