| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746 |
- <?xml version='1.0'?>
- <!--
- Copyright © 2004-2006 by Idiom Technologies, Inc. All rights reserved.
- IDIOM is a registered trademark of Idiom Technologies, Inc. and WORLDSERVER
- and WORLDSTART are trademarks of Idiom Technologies, Inc. All other
- trademarks are the property of their respective owners.
- IDIOM TECHNOLOGIES, INC. IS DELIVERING THE SOFTWARE "AS IS," WITH
- ABSOLUTELY NO WARRANTIES WHATSOEVER, WHETHER EXPRESS OR IMPLIED, AND IDIOM
- TECHNOLOGIES, INC. DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- PURPOSE AND WARRANTY OF NON-INFRINGEMENT. IDIOM TECHNOLOGIES, INC. SHALL NOT
- BE LIABLE FOR INDIRECT, INCIDENTAL, SPECIAL, COVER, PUNITIVE, EXEMPLARY,
- RELIANCE, OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED TO LOSS OF
- ANTICIPATED PROFIT), ARISING FROM ANY CAUSE UNDER OR RELATED TO OR ARISING
- OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF IDIOM
- TECHNOLOGIES, INC. HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
- Idiom Technologies, Inc. and its licensors shall not be liable for any
- damages suffered by any person as a result of using and/or modifying the
- Software or its derivatives. In no event shall Idiom Technologies, Inc.'s
- liability for any damages hereunder exceed the amounts received by Idiom
- Technologies, Inc. as a result of this transaction.
- These terms and conditions supersede the terms and conditions in any
- licensing agreement to the extent that such terms and conditions conflict
- with those set forth herein.
- This file is part of the DITA Open Toolkit project hosted on Sourceforge.net.
- See the accompanying license.txt file for applicable licenses.
- -->
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:fo="http://www.w3.org/1999/XSL/Format"
- xmlns:rx="http://www.renderx.com/XSL/Extensions"
- version="2.0">
- <!-- common attribute sets -->
- <xsl:attribute-set name="common.border__top">
- <xsl:attribute name="border-before-style">solid</xsl:attribute>
- <xsl:attribute name="border-before-width">1pt</xsl:attribute>
- <xsl:attribute name="border-before-color">black</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="common.border__bottom">
- <xsl:attribute name="border-after-style">solid</xsl:attribute>
- <xsl:attribute name="border-after-width">1pt</xsl:attribute>
- <xsl:attribute name="border-after-color">black</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="common.border__right">
- <xsl:attribute name="border-end-style">solid</xsl:attribute>
- <xsl:attribute name="border-end-width">1pt</xsl:attribute>
- <xsl:attribute name="border-end-color">black</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="common.border__left">
- <xsl:attribute name="border-start-style">solid</xsl:attribute>
- <xsl:attribute name="border-start-width">1pt</xsl:attribute>
- <xsl:attribute name="border-start-color">black</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="common.border" use-attribute-sets="common.border__top common.border__right common.border__bottom common.border__left"/>
- <xsl:attribute-set name="base-font">
- <xsl:attribute name="font-size"><xsl:value-of select="$default-font-size"/></xsl:attribute>
- </xsl:attribute-set>
- <!-- titles -->
- <xsl:attribute-set name="common.title">
- <xsl:attribute name="font-family">sans-serif</xsl:attribute>
- </xsl:attribute-set>
- <!-- paragraph-like blocks -->
- <xsl:attribute-set name="common.block">
- <xsl:attribute name="space-before">0.6em</xsl:attribute>
- <xsl:attribute name="space-after">0.6em</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="common.link">
- <xsl:attribute name="color">blue</xsl:attribute>
- <xsl:attribute name="font-style">italic</xsl:attribute>
- </xsl:attribute-set>
- <!-- common element specific attribute sets -->
- <xsl:attribute-set name="tm">
- <xsl:attribute name="border-left-width">0pt</xsl:attribute>
- <xsl:attribute name="border-right-width">0pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="tm__content">
- <xsl:attribute name="font-size">75%</xsl:attribute>
- <xsl:attribute name="baseline-shift">20%</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="tm__content__service">
- <xsl:attribute name="font-size">40%</xsl:attribute>
- <xsl:attribute name="baseline-shift">50%</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="author">
- </xsl:attribute-set>
- <xsl:attribute-set name="source">
- </xsl:attribute-set>
- <xsl:attribute-set name="topic.title" use-attribute-sets="common.title common.border__bottom">
- <xsl:attribute name="border-after-width">3pt</xsl:attribute>
- <xsl:attribute name="space-before">0pt</xsl:attribute>
- <xsl:attribute name="space-after">5.8pt</xsl:attribute>
- <xsl:attribute name="font-size">10pt</xsl:attribute>
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- <xsl:attribute name="padding-top">10.8pt</xsl:attribute>
- <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="topic.title__content">
- <xsl:attribute name="line-height">100%</xsl:attribute>
- <xsl:attribute name="border-left-width">0pt</xsl:attribute>
- <xsl:attribute name="border-right-width">0pt</xsl:attribute>
- <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="topic.topic.title" use-attribute-sets="common.title common.border__bottom">
- <xsl:attribute name="space-before">5pt</xsl:attribute>
- <xsl:attribute name="space-before">6pt</xsl:attribute>
- <xsl:attribute name="space-after">5pt</xsl:attribute>
- <xsl:attribute name="font-size">10pt</xsl:attribute>
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- <xsl:attribute name="padding-top">10pt</xsl:attribute>
- <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="topic.topic.title__content">
- <xsl:attribute name="border-left-width">0pt</xsl:attribute>
- <xsl:attribute name="border-right-width">0pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="topic.topic.topic.title" use-attribute-sets="common.title">
- <xsl:attribute name="space-before">5pt</xsl:attribute>
- <xsl:attribute name="space-after">2pt</xsl:attribute>
- <xsl:attribute name="font-size">8pt</xsl:attribute>
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="topic.topic.topic.title__content">
- </xsl:attribute-set>
- <xsl:attribute-set name="topic.topic.topic.topic.title" use-attribute-sets="base-font common.title">
- <xsl:attribute name="space-before">5pt</xsl:attribute>
- <xsl:attribute name="start-indent"><xsl:value-of select="$side-col-width"/></xsl:attribute>
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="topic.topic.topic.topic.title__content">
- </xsl:attribute-set>
- <xsl:attribute-set name="topic.topic.topic.topic.topic.title" use-attribute-sets="base-font common.title">
- <xsl:attribute name="start-indent"><xsl:value-of select="$side-col-width"/></xsl:attribute>
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="topic.topic.topic.topic.topic.title__content">
- </xsl:attribute-set>
- <xsl:attribute-set name="topic.topic.topic.topic.topic.topic.title" use-attribute-sets="base-font common.title">
- <xsl:attribute name="start-indent"><xsl:value-of select="$side-col-width"/></xsl:attribute>
- <xsl:attribute name="font-style">italic</xsl:attribute>
- <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="topic.topic.topic.topic.topic.topic.title__content">
- </xsl:attribute-set>
- <xsl:attribute-set name="section.title" use-attribute-sets="common.title">
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- <xsl:attribute name="space-before">5pt</xsl:attribute>
- <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="example.title" use-attribute-sets="common.title">
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
- <xsl:attribute name="space-after">5pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="fig">
- </xsl:attribute-set>
- <xsl:attribute-set name="fig.title" use-attribute-sets="base-font common.title">
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- <xsl:attribute name="space-before">5pt</xsl:attribute>
- <xsl:attribute name="space-after">5pt</xsl:attribute>
- <xsl:attribute name="keep-with-previous.within-page">always</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="topic" use-attribute-sets="base-font">
- </xsl:attribute-set>
- <xsl:attribute-set name="titlealts" use-attribute-sets="common.border">
- <xsl:attribute name="background-color">#f0f0d0</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="navtitle" use-attribute-sets="common.title">
- </xsl:attribute-set>
- <xsl:attribute-set name="navtitle__label">
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="searchtitle">
- </xsl:attribute-set>
- <xsl:attribute-set name="searchtitle__label">
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="body__toplevel" use-attribute-sets="base-font">
- <xsl:attribute name="start-indent"><xsl:value-of select="$side-col-width"/></xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="body__secondLevel" use-attribute-sets="base-font">
- <xsl:attribute name="start-indent"><xsl:value-of select="$side-col-width"/></xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="body" use-attribute-sets="base-font">
- <xsl:attribute name="start-indent"><xsl:value-of select="$side-col-width"/></xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="abstract" use-attribute-sets="body">
- </xsl:attribute-set>
- <xsl:attribute-set name="shortdesc">
- </xsl:attribute-set>
- <xsl:attribute-set name="topic__shortdesc" use-attribute-sets="body">
- </xsl:attribute-set>
- <xsl:attribute-set name="section" use-attribute-sets="base-font">
- <xsl:attribute name="line-height"><xsl:value-of select="$default-line-height"/></xsl:attribute>
- <xsl:attribute name="space-before">0.6em</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="section__content">
- </xsl:attribute-set>
- <xsl:attribute-set name="example" use-attribute-sets="base-font common.border">
- <xsl:attribute name="line-height"><xsl:value-of select="$default-line-height"/></xsl:attribute>
- <xsl:attribute name="space-before">0.6em</xsl:attribute>
- <xsl:attribute name="start-indent">36pt + from-parent(start-indent)</xsl:attribute>
- <xsl:attribute name="end-indent">36pt</xsl:attribute>
- <xsl:attribute name="padding">5pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="example__content">
- </xsl:attribute-set>
- <xsl:attribute-set name="desc">
- <xsl:attribute name="border-left-width">0pt</xsl:attribute>
- <xsl:attribute name="border-right-width">0pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="prolog" use-attribute-sets="base-font">
- <xsl:attribute name="start-indent">30pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="div">
- </xsl:attribute-set>
- <xsl:attribute-set name="p" use-attribute-sets="common.block">
- <xsl:attribute name="text-indent">0em</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="lq" use-attribute-sets="base-font common.border">
- <xsl:attribute name="space-before">5pt</xsl:attribute>
- <xsl:attribute name="padding-left">6pt</xsl:attribute>
- <xsl:attribute name="start-indent">30pt</xsl:attribute>
- <xsl:attribute name="end-indent">30pt</xsl:attribute>
- <xsl:attribute name="text-align">start</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="lq_simple" use-attribute-sets="base-font common.border">
- <xsl:attribute name="space-before">5pt</xsl:attribute>
- <xsl:attribute name="space-after">5pt</xsl:attribute>
- <xsl:attribute name="padding-left">6pt</xsl:attribute>
- <xsl:attribute name="start-indent">50pt</xsl:attribute>
- <xsl:attribute name="end-indent">50pt</xsl:attribute>
- <xsl:attribute name="text-align">start</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="lq_link" use-attribute-sets="base-font common.link">
- <xsl:attribute name="space-after">10pt</xsl:attribute>
- <xsl:attribute name="end-indent">50pt</xsl:attribute>
- <xsl:attribute name="text-align">end</xsl:attribute>
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="lq_title" use-attribute-sets="base-font">
- <xsl:attribute name="space-after">10pt</xsl:attribute>
- <xsl:attribute name="end-indent">50pt</xsl:attribute>
- <xsl:attribute name="text-align">end</xsl:attribute>
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- <xsl:attribute name="font-style">italic</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="q">
- <xsl:attribute name="border-left-width">0pt</xsl:attribute>
- <xsl:attribute name="border-right-width">0pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="figgroup">
- <xsl:attribute name="border-left-width">0pt</xsl:attribute>
- <xsl:attribute name="border-right-width">0pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="note" use-attribute-sets="common.block">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__table" use-attribute-sets="common.block">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__image__column">
- <xsl:attribute name="column-number">1</xsl:attribute>
- <xsl:attribute name="column-width">32pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="note__text__column">
- <xsl:attribute name="column-number">2</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="note__image__entry">
- <xsl:attribute name="padding-right">5pt</xsl:attribute>
- <xsl:attribute name="start-indent">0pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="note__text__entry">
- <xsl:attribute name="start-indent">0pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label">
- <xsl:attribute name="border-left-width">0pt</xsl:attribute>
- <xsl:attribute name="border-right-width">0pt</xsl:attribute>
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label__note">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label__notice">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label__tip">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label__fastpath">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label__restriction">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label__important">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label__remember">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label__attention">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label__caution">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label__danger">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label__warning">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label__trouble">
- </xsl:attribute-set>
- <xsl:attribute-set name="note__label__other">
- </xsl:attribute-set>
- <xsl:attribute-set name="pre" use-attribute-sets="base-font common.block">
- <xsl:attribute name="white-space-treatment">preserve</xsl:attribute>
- <xsl:attribute name="white-space-collapse">false</xsl:attribute>
- <xsl:attribute name="linefeed-treatment">preserve</xsl:attribute>
- <xsl:attribute name="wrap-option">wrap</xsl:attribute>
- <xsl:attribute name="font-family">monospace</xsl:attribute>
- <xsl:attribute name="line-height">106%</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="__spectitle">
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="__border__right" use-attribute-sets="common.border__right">
- <xsl:attribute name="padding-right">6pt</xsl:attribute>
- <xsl:attribute name="end-indent">6pt + from-parent(end-indent)</xsl:attribute>
- </xsl:attribute-set>
-
- <xsl:attribute-set name="__border__left" use-attribute-sets="common.border__left">
- <xsl:attribute name="padding-left">6pt</xsl:attribute>
- <xsl:attribute name="start-indent">6pt + from-parent(start-indent)</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="__border__top" use-attribute-sets="common.border__top">
- <xsl:attribute name="padding-top">6pt</xsl:attribute>
- </xsl:attribute-set>
-
- <xsl:attribute-set name="__border__bot" use-attribute-sets="common.border__bottom">
- <xsl:attribute name="padding-bottom">6pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="__border__topbot" use-attribute-sets="__border__top __border__bot">
- </xsl:attribute-set>
-
- <xsl:attribute-set name="__border__sides" use-attribute-sets="__border__right __border__left">
- </xsl:attribute-set>
-
- <xsl:attribute-set name="__border__all" use-attribute-sets="__border__right __border__left __border__top __border__bot">
- </xsl:attribute-set>
- <xsl:attribute-set name="__expanse__page">
- <xsl:attribute name="start-indent">0</xsl:attribute>
- <xsl:attribute name="end-indent">0</xsl:attribute>
- <xsl:attribute name="width">auto</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="__expanse__column">
- </xsl:attribute-set>
- <xsl:attribute-set name="__expanse__textline">
- </xsl:attribute-set>
- <xsl:attribute-set name="__expanse__spread">
- </xsl:attribute-set>
- <xsl:attribute-set name="lines" use-attribute-sets="base-font">
- <xsl:attribute name="space-before">0.8em</xsl:attribute>
- <xsl:attribute name="space-after">0.8em</xsl:attribute>
- <!-- <xsl:attribute name="white-space-treatment">ignore-if-after-linefeed</xsl:attribute>-->
- <xsl:attribute name="white-space-collapse">true</xsl:attribute>
- <xsl:attribute name="linefeed-treatment">preserve</xsl:attribute>
- <xsl:attribute name="wrap-option">wrap</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="keyword">
- <xsl:attribute name="border-left-width">0pt</xsl:attribute>
- <xsl:attribute name="border-right-width">0pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="term">
- <xsl:attribute name="border-left-width">0pt</xsl:attribute>
- <xsl:attribute name="border-right-width">0pt</xsl:attribute>
- <xsl:attribute name="font-style">italic</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="ph">
- <xsl:attribute name="border-left-width">0pt</xsl:attribute>
- <xsl:attribute name="border-right-width">0pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="boolean">
- <xsl:attribute name="border-left-width">0pt</xsl:attribute>
- <xsl:attribute name="border-right-width">0pt</xsl:attribute>
- <xsl:attribute name="color">green</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="state">
- <xsl:attribute name="border-left-width">0pt</xsl:attribute>
- <xsl:attribute name="border-right-width">0pt</xsl:attribute>
- <xsl:attribute name="color">red</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="alt">
- </xsl:attribute-set>
- <xsl:attribute-set name="object">
- </xsl:attribute-set>
- <xsl:attribute-set name="param">
- </xsl:attribute-set>
- <xsl:attribute-set name="draft-comment" use-attribute-sets="common.border">
- <xsl:attribute name="background-color">#FF99FF</xsl:attribute>
- <xsl:attribute name="color">#CC3333</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="draft-comment__label">
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="required-cleanup">
- <xsl:attribute name="background">yellow</xsl:attribute>
- <xsl:attribute name="color">#CC3333</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="required-cleanup__label">
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="fn">
- <xsl:attribute name="font-size">8pt</xsl:attribute>
- <xsl:attribute name="color">purple</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="fn__id">
- <xsl:attribute name="font-style">italic</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="fn__callout">
- <xsl:attribute name="keep-with-previous.within-line">always</xsl:attribute>
- <xsl:attribute name="baseline-shift">super</xsl:attribute>
- <xsl:attribute name="font-size">75%</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="fn__body" use-attribute-sets="base-font">
- <xsl:attribute name="provisional-distance-between-starts">8mm</xsl:attribute>
- <xsl:attribute name="provisional-label-separation">2mm</xsl:attribute>
- <xsl:attribute name="line-height">1.2</xsl:attribute>
- <xsl:attribute name="start-indent">0pt</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="__align__left">
- <xsl:attribute name="text-align">start</xsl:attribute>
- <xsl:attribute name="display-align">before</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="__align__right">
- <xsl:attribute name="text-align">end</xsl:attribute>
- <xsl:attribute name="display-align">before</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="__align__center">
- <xsl:attribute name="text-align">center</xsl:attribute>
- <xsl:attribute name="display-align">before</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="__align__justify">
- <xsl:attribute name="text-align">justify</xsl:attribute>
- <xsl:attribute name="display-align">before</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="indextermref">
- <xsl:attribute name="font-style">italic</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="cite">
- <xsl:attribute name="font-style">italic</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="concept">
- </xsl:attribute-set>
- <xsl:attribute-set name="conbody" use-attribute-sets="body">
- </xsl:attribute-set>
- <xsl:attribute-set name="topichead">
- </xsl:attribute-set>
- <xsl:attribute-set name="topicgroup">
- </xsl:attribute-set>
- <xsl:attribute-set name="topicmeta">
- </xsl:attribute-set>
- <xsl:attribute-set name="searchtitle">
- </xsl:attribute-set>
- <xsl:attribute-set name="searchtitle__label">
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="publisher">
- </xsl:attribute-set>
- <xsl:attribute-set name="copyright">
- </xsl:attribute-set>
- <xsl:attribute-set name="copyryear">
- </xsl:attribute-set>
- <xsl:attribute-set name="copyrholder">
- </xsl:attribute-set>
- <xsl:attribute-set name="critdates">
- </xsl:attribute-set>
- <xsl:attribute-set name="created">
- </xsl:attribute-set>
- <xsl:attribute-set name="revised">
- </xsl:attribute-set>
- <xsl:attribute-set name="permissions">
- </xsl:attribute-set>
- <xsl:attribute-set name="category">
- </xsl:attribute-set>
- <xsl:attribute-set name="audience">
- </xsl:attribute-set>
- <xsl:attribute-set name="keywords">
- </xsl:attribute-set>
- <xsl:attribute-set name="prodinfo">
- </xsl:attribute-set>
- <xsl:attribute-set name="prodname">
- </xsl:attribute-set>
- <xsl:attribute-set name="vrmlist">
- </xsl:attribute-set>
- <xsl:attribute-set name="vrm">
- </xsl:attribute-set>
- <xsl:attribute-set name="brand">
- </xsl:attribute-set>
- <xsl:attribute-set name="series">
- </xsl:attribute-set>
- <xsl:attribute-set name="platform">
- </xsl:attribute-set>
- <xsl:attribute-set name="prognum">
- </xsl:attribute-set>
- <xsl:attribute-set name="featnum">
- </xsl:attribute-set>
- <xsl:attribute-set name="component">
- </xsl:attribute-set>
- <xsl:attribute-set name="othermeta">
- </xsl:attribute-set>
- <xsl:attribute-set name="resourceid">
- </xsl:attribute-set>
- <xsl:attribute-set name="reference">
- </xsl:attribute-set>
- <xsl:attribute-set name="refbody" use-attribute-sets="body">
- </xsl:attribute-set>
- <xsl:attribute-set name="refsyn">
- </xsl:attribute-set>
- <xsl:attribute-set name="metadata">
- </xsl:attribute-set>
- <xsl:attribute-set name="image__float">
- </xsl:attribute-set>
- <xsl:attribute-set name="image__block">
- </xsl:attribute-set>
- <xsl:attribute-set name="image__inline">
- </xsl:attribute-set>
- <xsl:attribute-set name="image">
- </xsl:attribute-set>
- <xsl:attribute-set name="image.artlabel">
- <xsl:attribute name="font-weight">bold</xsl:attribute>
- <xsl:attribute name="font-style">italic</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="flag.image" use-attribute-sets="image">
- </xsl:attribute-set>
- <xsl:attribute-set name="__unresolved__conref">
- <xsl:attribute name="color">#CC3333</xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="__fo__root" use-attribute-sets="base-font">
- <xsl:attribute name="font-family">serif</xsl:attribute>
- <!-- TODO: https://issues.apache.org/jira/browse/FOP-2409 -->
- <xsl:attribute name="xml:lang" select="translate($locale, '_', '-')"/>
- <xsl:attribute name="writing-mode" select="$writing-mode"/>
- </xsl:attribute-set>
- <xsl:attribute-set name="__force__page__count">
- <xsl:attribute name="force-page-count">
- <xsl:choose>
- <xsl:when test="/*[contains(@class, ' bookmap/bookmap ')]">
- <xsl:value-of select="'even'"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="'auto'"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:attribute>
- </xsl:attribute-set>
- <xsl:attribute-set name="page-sequence.cover" use-attribute-sets="__force__page__count">
- </xsl:attribute-set>
- <xsl:attribute-set name="page-sequence.frontmatter">
- <xsl:attribute name="format">i</xsl:attribute>
- </xsl:attribute-set>
-
- <xsl:attribute-set name="page-sequence.notice" use-attribute-sets="__force__page__count page-sequence.frontmatter">
- </xsl:attribute-set>
-
- <xsl:attribute-set name="page-sequence.backmatter.notice" use-attribute-sets="__force__page__count">
- <xsl:attribute name="format">1</xsl:attribute>
- </xsl:attribute-set>
-
- <xsl:attribute-set name="page-sequence.preface" use-attribute-sets="__force__page__count page-sequence.frontmatter">
- </xsl:attribute-set>
- <xsl:attribute-set name="page-sequence.toc" use-attribute-sets="__force__page__count page-sequence.frontmatter">
- </xsl:attribute-set>
- <xsl:attribute-set name="page-sequence.lot" use-attribute-sets="page-sequence.toc">
- </xsl:attribute-set>
-
- <xsl:attribute-set name="page-sequence.lof" use-attribute-sets="page-sequence.toc">
- </xsl:attribute-set>
-
- <xsl:attribute-set name="page-sequence.body" use-attribute-sets="__force__page__count">
- </xsl:attribute-set>
-
- <xsl:attribute-set name="page-sequence.part" use-attribute-sets="__force__page__count">
- </xsl:attribute-set>
-
- <xsl:attribute-set name="page-sequence.appendix" use-attribute-sets="__force__page__count">
- </xsl:attribute-set>
-
- <xsl:attribute-set name="page-sequence.glossary" use-attribute-sets="__force__page__count">
- </xsl:attribute-set>
-
- <xsl:attribute-set name="page-sequence.index" use-attribute-sets="__force__page__count">
- </xsl:attribute-set>
- </xsl:stylesheet>
|