From: Norman Walsh Date: Mon, 20 Jan 2003 21:58:10 +0000 (+0000) Subject: Explain changes to titlepage template code X-Git-Tag: release/1.79.1~6^2~4868 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2bc081cef080ec6792fa672c0a763c3836ee5e48;p=docbook-dsssl Explain changes to titlepage template code --- diff --git a/xsl/RELEASE-NOTES.xml b/xsl/RELEASE-NOTES.xml index 30f9021fd..b30b018fe 100644 --- a/xsl/RELEASE-NOTES.xml +++ b/xsl/RELEASE-NOTES.xml @@ -18,6 +18,59 @@ This file documents (mostly) changes to the public APIs. What, exactly, counts as a public API is still somewhat in question, but it includes at least the global parameters. +Release 1.60.0 + +Lots of bug fixes. + + +The format of the titlepage.templates.xml files and +the stylesheet that transforms them have been significantly changed. All of the +attributes used to control the templates are now namespace qualified. So what +used to be: + +]]> + +is now: + +]]> + +Attributes from other namespaces (including those that are unqualified) are +now copied directly through. In practice, this means that the names that used +to be fo: qualified: + +]]> + +are now unqualified: + +]]> + +The t:titlepage and t:titlepage-content +elements both generate wrappers now. And unqualified attributes on those elements +are passed through. This means that you can now make the title font apply to +ane entire titlepage and make the entire recto +titlepage centered by specifying the font and alignment on the those elements: + +<t:titlepage t:element="article" t:wrapper="fo:block" + font-family="{$title.font.family}"> + + <t:titlepage-content t:side="recto" + text-align="center"> + + + + Release 1.59.2 The 1.59.2 fixes an FO bug in the page masters that causes FOP to fail.