HHH-3580 removed some more obsolete resources and started to fix the failing tests; later we might move build.xml into the pom
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15482 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
cc03033e59
commit
08b6d1ea13
|
@ -0,0 +1,100 @@
|
|||
<!-- $Id: build.xml 15105 2008-08-18 19:20:37Z hardy.ferentschik $ -->
|
||||
<!--
|
||||
Hibernate Entity Manager ANT build script.
|
||||
-->
|
||||
|
||||
<project name="HibernateEntityManager" basedir=".">
|
||||
|
||||
<target name="packjar">
|
||||
<property name="extension" value="jar"/>
|
||||
<property name="packagename" value="${jarname}"/>
|
||||
<property name="headerdirectory" value="."/>
|
||||
<mkdir dir="${package.dir}"/>
|
||||
<mkdir dir="${package.tmp.dir}/${headerdirectory}"/>
|
||||
<copy todir="${package.tmp.dir}/${headerdirectory}">
|
||||
<fileset dir="${classes.dir}">
|
||||
<include name="**/test/pack/${packagename}/**.*"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
<jar destfile="${package.dir}/${jarname}.${extension}">
|
||||
<fileset dir="${package.tmp.dir}">
|
||||
<include name="**/*.*"/>
|
||||
</fileset>
|
||||
<fileset dir="${testresources.dir}/${jarname}">
|
||||
<include name="**/*.*"/>
|
||||
</fileset>
|
||||
</jar>
|
||||
<delete dir="${package.tmp.dir}"/>
|
||||
</target>
|
||||
|
||||
<target name="packexploded">
|
||||
<property name="extension" value="jar"/>
|
||||
<!-- property name="jarname"/ -->
|
||||
<mkdir dir="${package.dir}/${jarname}.${extension}"/>
|
||||
<copy todir="${package.dir}/${jarname}.${extension}">
|
||||
<fileset dir="${classes.dir}">
|
||||
<include name="**/test/pack/${jarname}/**.*"/>
|
||||
</fileset>
|
||||
<fileset dir="${testresources.dir}/${jarname}">
|
||||
<include name="**/*.*"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
<target name="package" description="Prepare all needed jars and pars">
|
||||
<antcall target="packjar" inheritall="true">
|
||||
<param name="extension" value="par"/>
|
||||
<param name="jarname" value="defaultpar"/>
|
||||
</antcall>
|
||||
<antcall target="packjar" inheritall="true">
|
||||
<param name="extension" value="par"/>
|
||||
<param name="jarname" value="space par"/>
|
||||
<param name="packagename" value="spacepar"/>
|
||||
</antcall>
|
||||
<antcall target="packjar" inheritall="true">
|
||||
<param name="extension" value="par"/>
|
||||
<param name="jarname" value="explicitpar"/>
|
||||
</antcall>
|
||||
<antcall target="packjar" inheritall="true">
|
||||
<param name="extension" value="par"/>
|
||||
<param name="jarname" value="excludehbmpar"/>
|
||||
</antcall>
|
||||
<antcall target="packjar" inheritall="true">
|
||||
<param name="extension" value="jar"/>
|
||||
<param name="jarname" value="externaljar"/>
|
||||
</antcall>
|
||||
<antcall target="packjar" inheritall="true">
|
||||
<param name="extension" value="par"/>
|
||||
<param name="jarname" value="cfgxmlpar"/>
|
||||
</antcall>
|
||||
<antcall target="packjar" inheritall="true">
|
||||
<param name="extension" value="jar"/>
|
||||
<param name="jarname" value="overridenpar"/>
|
||||
</antcall>
|
||||
|
||||
<!-- nested jar -->
|
||||
<!--
|
||||
<jar destfile="${package.dir}/nestedjar.ear">
|
||||
<fileset dir="${package.dir}">
|
||||
<include name="defaultpar.par"/>
|
||||
</fileset>
|
||||
</jar>
|
||||
<copy todir="${package.dir}/nesteddir.ear">
|
||||
<fileset dir="${package.dir}">
|
||||
<include name="defaultpar.par"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
|
||||
<antcall target="packjar" inheritall="true">
|
||||
<param name="extension" value="war"/>
|
||||
<param name="jarname" value="war"/>
|
||||
<param name="headerdirectory" value="WEB-INF/classes"/>
|
||||
</antcall>
|
||||
|
||||
<antcall target="packexploded" inheritall="true">
|
||||
<param name="extension" value="par"/>
|
||||
<param name="jarname" value="explodedpar"/>
|
||||
</antcall>
|
||||
-->
|
||||
</target>
|
||||
</project>
|
|
@ -1 +0,0 @@
|
|||
build
|
|
@ -1,9 +0,0 @@
|
|||
We're using the DocBook XSL distribution for HTML and PDF
|
||||
generation. The best results can be achieved with the
|
||||
Saxon XSLT processor (don't use Xalan!) and the Apache
|
||||
FOP library.
|
||||
|
||||
The documentation is generated with the distribution
|
||||
build.xml target 'doc<pdf|html|htmlsingle>'.
|
||||
|
||||
christian@hibernate.org
|
|
@ -1,14 +0,0 @@
|
|||
<project name="Documentation" default="all.doc" basedir=".">
|
||||
|
||||
<import file="docbook-common-build.xml"/>
|
||||
<target name="all.doc" depends="clean">
|
||||
|
||||
<!-- TRANSLATOR: Duplicate this call for your language -->
|
||||
<antcall target="lang.all">
|
||||
<param name="docname" value="hibernate_entitymanager"/>
|
||||
<param name="lang" value="en"/>
|
||||
</antcall>
|
||||
|
||||
</target>
|
||||
|
||||
</project>
|
|
@ -1,209 +0,0 @@
|
|||
<!--
|
||||
To build the reference docs for a particular language only, use "ant -Dlang=en", for
|
||||
example, and call either lang.all, lang.docpdf, lang.dochtml, or lang.dochtmlsingle
|
||||
for the target of your choice.
|
||||
|
||||
You can also call lang.section-check to track down missing identifiers in a particular
|
||||
language, or you can call lang.revdiff to get a difference report for a particular
|
||||
language, compared with the English reference.
|
||||
-->
|
||||
<project name="ReferenceDocumentation" default="all.doc" basedir=".">
|
||||
<!-- Allow this to be overriden by others importing this project. -->
|
||||
<dirname property="imported.basedir" file="${ant.file.ReferenceDocumentation}"/>
|
||||
|
||||
<!-- Set build directories for all formats. -->
|
||||
<property name="build.dir" value="${basedir}/build"/>
|
||||
|
||||
<!-- Support files for build process. -->
|
||||
<property name="support.dir" value="${imported.basedir}/support"/>
|
||||
|
||||
<!-- Base name for documentation artifacts. -->
|
||||
<property name="docname" value="hibernate_reference"/>
|
||||
|
||||
<!-- Set DocBook stylesheets. -->
|
||||
<property name="db.style.fopdf" value="fopdf.xsl"/>
|
||||
<property name="db.style.html" value="html_chunk.xsl"/>
|
||||
<property name="db.style.htmlsingle" value="html.xsl"/>
|
||||
|
||||
<!-- Classpath for the build tools. -->
|
||||
<path id="lib.classpath">
|
||||
<fileset dir="${support.dir}/lib">
|
||||
<include name="**/*.jar"/>
|
||||
</fileset>
|
||||
</path>
|
||||
|
||||
<!-- ################################################################## -->
|
||||
|
||||
<target name="all.doc"
|
||||
depends="clean"
|
||||
description="Compile documentation for all languages and all formats.">
|
||||
|
||||
<!-- TRANSLATOR: Duplicate this line for your language -->
|
||||
<antcall target="lang.all"><param name="lang" value="en"/></antcall>
|
||||
<antcall target="lang.all"><param name="lang" value="fr"/></antcall>
|
||||
<!-- TODO: These translations need updating before we can enable them...
|
||||
<antcall target="lang.all"><param name="lang" value="ja"/></antcall>
|
||||
<antcall target="lang.all"><param name="lang" value="ko"/></antcall>
|
||||
<antcall target="lang.all"><param name="lang" value="zh-cn"/></antcall>
|
||||
-->
|
||||
|
||||
</target>
|
||||
|
||||
<target name="all.revdiff"
|
||||
description="Generates a diff report for all translated versions.">
|
||||
|
||||
<!-- TRANSLATOR: Duplicate this line for your language -->
|
||||
<antcall target="lang.revdiff"><param name="lang" value="fr"/></antcall>
|
||||
<antcall target="lang.revdiff"><param name="lang" value="ko"/></antcall>
|
||||
<antcall target="lang.revdiff"><param name="lang" value="ja"/></antcall>
|
||||
<antcall target="lang.revdiff"><param name="lang" value="zh-cn"/></antcall>
|
||||
|
||||
</target>
|
||||
|
||||
<!-- ################################################################## -->
|
||||
|
||||
<target name="clean">
|
||||
|
||||
<!-- Delete build directory. -->
|
||||
<delete dir="${build.dir}"/>
|
||||
|
||||
</target>
|
||||
|
||||
<target name="lang.all">
|
||||
<!-- Compile the documentation for a single language in all formats. -->
|
||||
<antcall target="lang.docpdf"/>
|
||||
<antcall target="lang.dochtml"/>
|
||||
<antcall target="lang.dochtmlsingle"/>
|
||||
<antcall target="lang.htmlmisc"/>
|
||||
</target>
|
||||
|
||||
|
||||
<target name="lang.docpdf.prepare">
|
||||
|
||||
<!-- Copy all the images to the output location, will be removed later. -->
|
||||
<copy todir="${build.dir}/${lang}/pdf/images">
|
||||
<fileset dir="${basedir}/${lang}/images">
|
||||
<include name="**/*.png"/>
|
||||
<include name="**/*.svg"/>
|
||||
<include name="**/*.gif"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
|
||||
<!-- Create the XSL/FO temporary file. -->
|
||||
<java classname="com.icl.saxon.StyleSheet" fork="true" dir="${basedir}" maxmemory="128m" >
|
||||
<classpath refid="lib.classpath"/>
|
||||
<arg value="-o"/>
|
||||
<arg value="${build.dir}/${lang}/pdf/docbook_fop.tmp"/>
|
||||
<arg value="${basedir}/${lang}/master.xml"/>
|
||||
<arg value="${basedir}/${lang}/styles/${db.style.fopdf}"/>
|
||||
</java>
|
||||
|
||||
<available property="custom.fop.userconfig.present" file="userconfig.xml" filepath="${basedir}/${lang}/fop"/>
|
||||
</target>
|
||||
|
||||
<target name="lang.docpdf.customized" depends="lang.docpdf.prepare" if="custom.fop.userconfig.present">
|
||||
|
||||
<copy todir="${build.dir}/${lang}/pdf">
|
||||
<fileset dir="${basedir}/${lang}/fop">
|
||||
<include name="*"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
|
||||
<!-- Create a PDF from the XSL/FO, using customized fop userconfig.xml -->
|
||||
<java classname="org.apache.fop.apps.Fop" fork="true" dir="${basedir}" maxmemory="128m" >
|
||||
<classpath refid="lib.classpath"/>
|
||||
<arg value="-c"/>
|
||||
<arg value="${basedir}/${lang}/fop/userconfig.xml"/>
|
||||
<arg value="${build.dir}/${lang}/pdf/docbook_fop.tmp"/>
|
||||
<arg value="${build.dir}/${lang}/pdf/${docname}.pdf"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<target name="lang.docpdf.normal" depends="lang.docpdf.prepare" unless="custom.fop.userconfig.present">
|
||||
<!-- Create a PDF from the XSL/FO. -->
|
||||
<java classname="org.apache.fop.apps.Fop" fork="true" dir="${basedir}">
|
||||
<classpath refid="lib.classpath"/>
|
||||
<arg value="${build.dir}/${lang}/pdf/docbook_fop.tmp"/>
|
||||
<arg value="${build.dir}/${lang}/pdf/${docname}.pdf"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<target name="lang.docpdf" depends="lang.docpdf.normal,lang.docpdf.customized"
|
||||
description="Generates the PDF documentation only for a language (set lang)">
|
||||
<!-- House keeping,delete temporary files. -->
|
||||
<delete>
|
||||
<fileset dir="${build.dir}/${lang}/pdf" excludes="**/*.pdf"/>
|
||||
</delete>
|
||||
<delete dir="${build.dir}/${lang}/pdf/images"/>
|
||||
</target>
|
||||
|
||||
<target name="lang.dochtml"
|
||||
description="Generates the HTML documentation only for a language (set lang)">
|
||||
|
||||
<mkdir dir="${build.dir}/${lang}/html/"/>
|
||||
|
||||
<java classname="com.icl.saxon.StyleSheet" fork="true" dir="${build.dir}/${lang}/html">
|
||||
<classpath refid="lib.classpath"/>
|
||||
<arg value="${basedir}/${lang}/master.xml"/>
|
||||
<arg value="${basedir}/${lang}/styles/${db.style.html}"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<target name="lang.dochtmlsingle"
|
||||
description="Generates the single-page HTML documentation only for a language (set lang)">
|
||||
|
||||
<mkdir dir="${build.dir}/${lang}/html_single/"/>
|
||||
|
||||
<java classname="com.icl.saxon.StyleSheet" fork="true" dir="${basedir}">
|
||||
<classpath refid="lib.classpath"/>
|
||||
<arg value="-o"/>
|
||||
<arg value="${build.dir}/${lang}/html_single/index.html"/>
|
||||
<arg value="${basedir}/${lang}/master.xml"/>
|
||||
<arg value="${basedir}/${lang}/styles/${db.style.htmlsingle}"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<target name="lang.htmlmisc">
|
||||
|
||||
<!-- Copy images and CSS for HTML documentation, language specific. -->
|
||||
<copy todir="${build.dir}/${lang}/shared/images">
|
||||
<fileset dir="${basedir}/${lang}/images">
|
||||
<include name="**/*.png"/>
|
||||
<include name="**/*.gif"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${build.dir}/${lang}/shared/css">
|
||||
<fileset dir="${basedir}/${lang}/styles">
|
||||
<include name="**/*.css"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
|
||||
</target>
|
||||
|
||||
<target name="lang.revdiff"
|
||||
description="Reports difference between English and translation (set lang)">
|
||||
|
||||
<mkdir dir="${build.dir}"/>
|
||||
|
||||
<taskdef name="revdiff"
|
||||
classname="org.hibernate.docproc.revdiff.RevDiffReportTask"
|
||||
classpathref="lib.classpath">
|
||||
|
||||
</taskdef>
|
||||
|
||||
<revdiff original="${basedir}/en/master.xml"
|
||||
copy="${basedir}/${lang}/master.xml"
|
||||
report="${build.dir}/status_${lang}.html"/>
|
||||
|
||||
</target>
|
||||
|
||||
<target name="lang.section-check" depends="lang.dochtml"
|
||||
description="Reports missing unique chapter/section identifiers (set lang)">
|
||||
<java classname="com.icl.saxon.StyleSheet" fork="true" dir="${build.dir}/${lang}/html">
|
||||
<classpath refid="lib.classpath"/>
|
||||
<arg value="${basedir}/${lang}/master.xml"/>
|
||||
<arg value="${support.dir}/section-check.xsl"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
</project>
|
|
@ -1,363 +0,0 @@
|
|||
2004-01-21 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* calstblx.dtd, catalog.xml, dbcentx.mod, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbook.cat, docbookx.dtd, htmltblx.mod:
|
||||
Changed version number to V4.3CR2
|
||||
|
||||
* dbpoolx.mod, htmltblx.mod: Make sure floatstyle is on table and informaltable
|
||||
|
||||
2003-12-21 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* Makefile, freshmeat.xsl: Support freshmeat target
|
||||
|
||||
* calstblx.dtd, catalog.xml, dbcentx.mod, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbook.cat, htmltblx.mod:
|
||||
Updated version numbers
|
||||
|
||||
* dbpoolx.mod: Refactor parameter entities for informaltable so that textobject is handled correctly; avoid duplicate ID on caption when HTML tables are allowed.
|
||||
|
||||
* docbookx.dtd: DocBook V4.3CR2 released
|
||||
|
||||
2003-12-20 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* dbpoolx.mod: Put HTML attributes on caption of HTML tables are allowed
|
||||
|
||||
2003-12-19 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* Makefile: Add doc target
|
||||
|
||||
* htmltblx.mod: Make sure textobject goes in the DocBook branch of informaltable
|
||||
|
||||
2003-12-02 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* calstblx.dtd, catalog.xml, dbcentx.mod, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbook.cat, htmltblx.mod:
|
||||
Updated version number
|
||||
|
||||
* docbookx.dtd: Released 4.3CR1
|
||||
|
||||
2003-10-28 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* calstblx.dtd, catalog.xml, dbcentx.mod, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbook.cat, docbookx.dtd, htmltblx.mod:
|
||||
Released 4.3b5
|
||||
|
||||
* dbnotnx.mod: Added SWF notation
|
||||
|
||||
* dbpoolx.mod: Make firstterm isomorphic to glossterm
|
||||
|
||||
2003-09-28 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* dbpoolx.mod: RFE #573812: allow blockinfo on blockquote
|
||||
|
||||
* dbpoolx.mod: RFE #564776: added process, service, server, and daemon to the class values of systemitem
|
||||
|
||||
* dbpoolx.mod: RFE #571998: added initializer to paramdef
|
||||
|
||||
* dbpoolx.mod: RFE #518074: added a number of new values to the class attribute of database
|
||||
|
||||
* dbpoolx.mod: RFE #533734: allow void to be optional on {method|constructor|destructor}synopsis
|
||||
|
||||
* dbpoolx.mod: Added StepAlternatives
|
||||
|
||||
* dbpoolx.mod: RFE #507975: revision should allow author or authorinitials
|
||||
|
||||
* dbpoolx.mod: RFE #517604: allow optional title on glosslist
|
||||
|
||||
* dbpoolx.mod: RFE #570068: added emailmessage, webpage, and newsposting as pubwork values for citetitle
|
||||
|
||||
* dbpoolx.mod: RFE #571996: added prefix, namespace, and localname to class for sgmltag
|
||||
|
||||
2003-09-25 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* calstblx.dtd, catalog.xml, dbcentx.mod, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbook.cat, docbookx.dtd, htmltblx.mod:
|
||||
Changed V4.2b2 to V4.2b3
|
||||
|
||||
* dbhierx.mod: Allow Set to be recursive
|
||||
|
||||
* dbhierx.mod, dbpoolx.mod: Added type attribute to indexterm and index
|
||||
|
||||
* dbpoolx.mod: Added xml:base
|
||||
|
||||
* dbpoolx.mod: Added code
|
||||
|
||||
* dbpoolx.mod: RFE #615473: added floatstyle to (informal)figure, (informal)example, and (informal)equation
|
||||
|
||||
* htmltblx.mod: Fixup some PEs so that we don't get duplicated attribute declarations
|
||||
|
||||
* htmltblx.mod: Put blockinfo and textobject back into the CALS table model
|
||||
|
||||
2003-08-15 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* calstblx.dtd, catalog.xml, dbcentx.mod, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbook.cat, docbookx.dtd, htmltblx.mod:
|
||||
Changed 4.2 to 4.3b2
|
||||
|
||||
* calstblx.dtd, dbpoolx.mod, htmltblx.mod, soextblx.dtd:
|
||||
Allow HTML table models in addition to CALS or SOEx table models (2003 Apr)
|
||||
|
||||
* dbpoolx.mod: Task markup (2003 Jun)
|
||||
|
||||
2003-08-11 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* dbhierx.mod: Related to RFE 514435: allow multiple refnamediv elements in refentry (2003 Jul)
|
||||
|
||||
* dbnotnx.mod: RFE 698844: add PDF notation (2003 May)
|
||||
|
||||
* dbpoolx.mod: RFE 660044: support continuation and startinglinenumber on verbatims (2003 Feb)
|
||||
|
||||
* dbpoolx.mod: Related to RFE 679316: add orgname to inlines (2003 Jul)
|
||||
|
||||
* dbpoolx.mod: RFE 655526: support modifier in funcprototype (2003 Feb)
|
||||
|
||||
* dbpoolx.mod: RFE 573419: add bidirectional text override (2003 Apr)
|
||||
|
||||
* dbpoolx.mod: Added function attribute to keycap for improved semantics (2003 Jul)
|
||||
|
||||
* dbpoolx.mod: RFE 691762: add language attribute to verbatim environments (2003 May)
|
||||
|
||||
* dbpoolx.mod: RFE 705885: add namespace attribute to sgmltag (2003 May)
|
||||
|
||||
* dbpoolx.mod: RFE 565716: support for URI element (2003 Apr)
|
||||
|
||||
2003-08-09 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* dbpoolx.mod: RFE 582822: paramdef and varargs on funcprototype (2003 Feb)
|
||||
|
||||
* dbpoolx.mod: RFE 638456: support translators (2003 Feb)
|
||||
|
||||
* dbpoolx.mod: Added xrefstyle (2002 Dec)
|
||||
|
||||
* dbpoolx.mod: RFE 473365: choice attribute for paramdef (2003 Feb)
|
||||
|
||||
* dbpoolx.mod: RFE 570068: new values for pubwork (2003 Jan)
|
||||
|
||||
* docbookx.dtd: Fix SDATA entity for euro
|
||||
|
||||
2002-07-17 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* calstblx.dtd, catalog.xml, dbcentx.mod, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbook.cat, docbookx.dtd:
|
||||
DocBook XML V4.2 released
|
||||
|
||||
2002-05-28 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* calstblx.dtd, catalog.xml, dbcentx.mod, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbook.cat, docbookx.dtd:
|
||||
Updated comments to reflect CR3
|
||||
|
||||
2002-05-21 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* dbnotnx.mod: SVG notation accidentally left out of notation.class
|
||||
|
||||
* docbookx.dtd: Fix syntactic error intentionally introduced behind mutually exclusive PEs. Now make the DTD useless, but not syntactically invalid
|
||||
|
||||
2002-05-12 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* dbpoolx.mod: Add accidentally missing local.info.class to info.class
|
||||
|
||||
2002-03-19 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* calstblx.dtd, dbcentx.mod, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod:
|
||||
Prepare for CR1
|
||||
|
||||
* catalog.xml, docbook.cat: Prepare for CR1 and fix search-and-replace typos
|
||||
|
||||
* dbpoolx.mod: Make type other tokens in bibliorelation unique for SGML compatibility
|
||||
|
||||
* dbpoolx.mod: Make spatial/temporal other tokens unique for SGML compatibility
|
||||
|
||||
* dbpoolx.mod: Added bibliosource, bibliorelation, and bibliocoverage
|
||||
|
||||
* dbpoolx.mod: Move bibliorelation type attribute into a PE so that it can be expanded the way we want
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #480957
|
||||
|
||||
* dbpoolx.mod: Revise graphic attributes: add contentwidth, contentdepth, and valign
|
||||
|
||||
* dbpoolx.mod: Add class attribute to orgname
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #480954: add textdata element
|
||||
|
||||
* dbpoolx.mod: Added blockinfo element
|
||||
|
||||
* dbpoolx.mod: RFE #513426: Text alternative for tables
|
||||
|
||||
* dbpoolx.mod: Add consortium to the list of classes on orgname
|
||||
|
||||
* docbookx.dtd: DocBook V4.2 Candidate Release 1 released
|
||||
|
||||
2002-02-05 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* dbhierx.mod: Implemented RFE #501363
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #492099
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #498848
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #480955
|
||||
|
||||
2002-01-06 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* dbcentx.mod: Added marked sections around character set entity references
|
||||
|
||||
2001-11-20 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* calstblx.dtd, catalog.xml, dbcentx.mod, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbook.cat, docbookx.dtd:
|
||||
DocBook V4.2b1 released
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #482821
|
||||
|
||||
2001-11-19 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* dbhierx.mod, dbpoolx.mod: Implemented RFE #456460
|
||||
|
||||
2001-11-18 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* dbpoolx.mod: RFE #482817: Add errortext element
|
||||
|
||||
2001-11-17 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* dbpoolx.mod: RFE 482821: Add extension to the list of class values on filename
|
||||
|
||||
* dbpoolx.mod: RFE 482053: Add support for DOI in meta
|
||||
|
||||
* dbpoolx.mod: Removed bogus occurrence indicator in info.class; fixed typo in qandaset PEs
|
||||
|
||||
2001-11-13 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* 40chg.txt, 41chg.txt, LostLog: Removed old files
|
||||
|
||||
* Makefile: Fixed typo
|
||||
|
||||
* Makefile: Makefile
|
||||
|
||||
* README: Removed version information
|
||||
|
||||
* README, readme.txt: Renamed
|
||||
|
||||
* calstblx.dtd, catalog.xml, dbcentx.mod, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbook.cat, docbookx.dtd:
|
||||
Removed 'XML' from public identifiers for files that will now be common to both XML and SGML
|
||||
|
||||
* catalog.xml: Fixed missing end tag
|
||||
|
||||
2001-11-12 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* calstblx.dtd, dbcentx.mod, dbgenent.mod, dbnotnx.mod, readme.txt:
|
||||
Updated version numbers
|
||||
|
||||
* catalog.xml, docbook.cat: Added XML Catalog; updated public identifiers in catalog
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #480956
|
||||
|
||||
* dbpoolx.mod: Former RFE 133: Added newsgroup class to systemitem
|
||||
|
||||
2001-11-09 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* dbhierx.mod: Implemented RFE #426382
|
||||
|
||||
* dbhierx.mod: Implemented RFE #417671
|
||||
|
||||
* dbhierx.mod, dbpoolx.mod: Implemented RFE #436072
|
||||
|
||||
* dbhierx.mod, dbpoolx.mod, docbookx.dtd: Changed version number
|
||||
|
||||
* dbnotnx.mod: Implemented RFE #440597
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #435485
|
||||
|
||||
* dbpoolx.mod: Expand the content model of the following elements from smallcptr.char.mix back to cptr.char.mix: interfacename, action, database, filename, hardware, keycap, option, parameter, property, and systemitem (command, interface, and literal were never reduced).
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #431418
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #431419
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #435466
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #439136
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #431415
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #431413
|
||||
|
||||
* dbpoolx.mod: Implemented RFE #434439
|
||||
|
||||
2001-11-07 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* calstblx.dtd, dbcentx.mod, dbhierx.mod, dbpoolx.mod, docbookx.dtd:
|
||||
Towards a 4.2 release: reparameterize so that the SGML DTD is just a customization of the XML DTD
|
||||
|
||||
* calstblx.dtd, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbookx.dtd:
|
||||
Whitespace fixes
|
||||
|
||||
2001-08-07 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* dbhierx.mod: RFE 426382: Norm to allow SimpleSect inside Section
|
||||
|
||||
* dbpoolx.mod: RFE 431419: Norm to add markup for FS type and partition
|
||||
|
||||
* dbpoolx.mod: RFE 431418: Norm to add typing to funcdef and paramdef
|
||||
|
||||
* dbpoolx.mod: Fix comments; implement proposal of the TC to expand the content model of selected inlines
|
||||
|
||||
* dbpoolx.mod: RFE 434439: Add language attribute to fieldsynopsis et al.
|
||||
|
||||
* dbpoolx.mod: RFE 431415: Norm to add markup for host identifiers
|
||||
|
||||
2001-06-18 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* 40chg.txt, 41chg.txt, LostLog, Makefile, calstblx.dtd, dbcentx.mod, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbook.cat, docbookx.cat, docbookx.dtd, readme.txt:
|
||||
Additional work on DocBook XML V5.0; I had the wrong CVS repository for a while so there's a bunch of changes lumped together here
|
||||
|
||||
* Makefile: branches: 1.1.2;
|
||||
file Makefile was initially added on branch V50-devel.
|
||||
|
||||
2001-03-12 <ndw@users.sourceforge.net>
|
||||
|
||||
* calstblx.dtd, dbcentx.mod, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbookx.dtd, readme.txt:
|
||||
Updated version numbers
|
||||
|
||||
* dbcentx.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbookx.dtd, soextblx.dtd:
|
||||
New file.
|
||||
|
||||
* docbook.cat: New file.
|
||||
|
||||
* docbookx.cat: branches: 1.1.2;
|
||||
file docbookx.cat was initially added on branch V50-devel.
|
||||
|
||||
* docbookx.cat: New file.
|
||||
|
||||
2001-01-14 <ndw@users.sourceforge.net>
|
||||
|
||||
* dbpoolx.mod: branches: 1.5.2;
|
||||
RFE #140: Allow multiple MsgExplan inside SimpleMsgEntry
|
||||
|
||||
2000-11-12 <ndw@users.sourceforge.net>
|
||||
|
||||
* dbhierx.mod: branches: 1.6.2;
|
||||
Add refentry; accidentally left out
|
||||
|
||||
* dbhierx.mod: Allow beginpage to be the first child of toc, lot, appendix, chapter,
|
||||
part, preface, reference, and refentry. (It can't be at the start of
|
||||
bibliography, glossary, index, or setindex because of ambiguity
|
||||
problems.)
|
||||
|
||||
2000-09-19 <ndw@users.sourceforge.net>
|
||||
|
||||
* 40chg.txt, calstblx.dtd, dbcentx.mod, dbgenent.ent, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbookx.dtd, readme.txt, soextblx.dtd:
|
||||
DocBook XML V4.0
|
||||
|
||||
* 40chg.txt, soextblx.dtd: branches: 1.2.2;
|
||||
DocBook XML V4.1
|
||||
|
||||
* 41chg.txt, LostLog, calstblx.dtd, dbcentx.mod, dbgenent.ent, dbgenent.mod, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbook.cat, docbookx.dtd, readme.txt:
|
||||
DocBook XML V4.1.1
|
||||
|
||||
* 41chg.txt, LostLog, calstblx.dtd, dbcentx.mod, dbgenent.ent, dbhierx.mod, dbnotnx.mod, dbpoolx.mod, docbook.cat, docbookx.dtd, readme.txt:
|
||||
DocBook XML V4.1
|
||||
|
||||
* 41chg.txt, LostLog, docbook.cat: branches: 1.3.2;
|
||||
DocBook XML V4.1.2
|
||||
|
||||
* calstblx.dtd, dbcentx.mod, dbnotnx.mod, docbookx.dtd, readme.txt:
|
||||
branches: 1.4.2;
|
||||
DocBook XML V4.1.2
|
||||
|
||||
* dbgenent.mod: branches: 1.2.2;
|
||||
DocBook XML V4.1.2
|
||||
|
||||
* dbhierx.mod, dbpoolx.mod: DocBook XML V4.1.2
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
README for the DocBook XML DTD
|
||||
|
||||
For more information about DocBook, please see
|
||||
|
||||
http://www.oasis-open.org/docbook/
|
||||
|
||||
Please send all questions, comments, concerns, and bug reports to the
|
||||
DocBook mailing list: docbook@lists.oasis-open.org
|
|
@ -1,205 +0,0 @@
|
|||
<!-- ...................................................................... -->
|
||||
<!-- DocBook CALS Table Model V4.3CR3 ........................................ -->
|
||||
<!-- File calstblx.mod .................................................... -->
|
||||
|
||||
<!-- Copyright 1992-2002 HaL Computer Systems, Inc.,
|
||||
O'Reilly & Associates, Inc., ArborText, Inc., Fujitsu Software
|
||||
Corporation, Norman Walsh, Sun Microsystems, Inc., and the
|
||||
Organization for the Advancement of Structured Information
|
||||
Standards (OASIS).
|
||||
|
||||
This DTD is based on the CALS Table Model
|
||||
PUBLIC "-//USA-DOD//DTD Table Model 951010//EN"
|
||||
|
||||
$Id: calstblx.dtd 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
|
||||
Permission to use, copy, modify and distribute the DocBook DTD
|
||||
and its accompanying documentation for any purpose and without fee
|
||||
is hereby granted in perpetuity, provided that the above copyright
|
||||
notice and this paragraph appear in all copies. The copyright
|
||||
holders make no representation about the suitability of the DTD for
|
||||
any purpose. It is provided "as is" without expressed or implied
|
||||
warranty.
|
||||
|
||||
If you modify the DocBook DTD in any way, except for declaring and
|
||||
referencing additional sets of general entities and declaring
|
||||
additional notations, label your DTD as a variant of DocBook. See
|
||||
the maintenance documentation for more information.
|
||||
|
||||
Please direct all questions, bug reports, or suggestions for
|
||||
changes to the docbook@lists.oasis-open.org mailing list. For more
|
||||
information, see http://www.oasis-open.org/docbook/.
|
||||
-->
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
|
||||
<!-- This module contains the definitions for the CALS Table Model
|
||||
converted to XML. It has been modified slightly for use in the
|
||||
combined HTML/CALS models supported by DocBook V4.3.
|
||||
-->
|
||||
|
||||
<!-- These definitions are not directly related to the table model, but are
|
||||
used in the default CALS table model and are usually defined elsewhere
|
||||
(and prior to the inclusion of this table module) in a CALS DTD. -->
|
||||
|
||||
<!ENTITY % bodyatt "">
|
||||
<!ENTITY % secur "">
|
||||
|
||||
<!-- no if zero(s),
|
||||
yes if any other digits value -->
|
||||
|
||||
<!ENTITY % yesorno 'CDATA'>
|
||||
<!ENTITY % titles 'title?'>
|
||||
|
||||
<!-- default for use in entry content -->
|
||||
|
||||
<!ENTITY % paracon '#PCDATA'>
|
||||
|
||||
<!--
|
||||
The parameter entities as defined below provide the CALS table model
|
||||
as published (as part of the Example DTD) in MIL-HDBK-28001.
|
||||
|
||||
These following declarations provide the CALS-compliant default definitions
|
||||
for these entities. However, these entities can and should be redefined
|
||||
(by giving the appropriate parameter entity declaration(s) prior to the
|
||||
reference to this Table Model declaration set entity) to fit the needs
|
||||
of the current application.
|
||||
-->
|
||||
|
||||
<!ENTITY % tbl.table.name "(table|chart)">
|
||||
<!ENTITY % tbl.table-titles.mdl "%titles;,">
|
||||
<!ENTITY % tbl.table-main.mdl "(tgroup+|graphic+)">
|
||||
<!ENTITY % tbl.table.mdl "%tbl.table-titles.mdl; %tbl.table-main.mdl;">
|
||||
<!ENTITY % tbl.table.att '
|
||||
tabstyle CDATA #IMPLIED
|
||||
tocentry %yesorno; #IMPLIED
|
||||
shortentry %yesorno; #IMPLIED
|
||||
orient (port|land) #IMPLIED
|
||||
pgwide %yesorno; #IMPLIED '>
|
||||
<!ENTITY % tbl.tgroup.mdl "colspec*,spanspec*,thead?,tfoot?,tbody">
|
||||
<!ENTITY % tbl.tgroup.att '
|
||||
tgroupstyle CDATA #IMPLIED '>
|
||||
<!ENTITY % tbl.hdft.mdl "colspec*,row+">
|
||||
<!ENTITY % tbl.row.mdl "(entry|entrytbl)+">
|
||||
<!ENTITY % tbl.entrytbl.mdl "colspec*,spanspec*,thead?,tbody">
|
||||
<!ENTITY % tbl.entry.mdl "(para|warning|caution|note|legend|%paracon;)*">
|
||||
|
||||
<!ENTITY % tbl.frame.attval "top|bottom|topbot|all|sides|none">
|
||||
<!ENTITY % tbl.tbody.mdl "row+">
|
||||
|
||||
<!-- ===== Element and attribute declarations follow. ===== -->
|
||||
|
||||
<!ELEMENT table %ho; (%tbl.table.mdl;)>
|
||||
|
||||
<!ATTLIST table
|
||||
frame (%tbl.frame.attval;) #IMPLIED
|
||||
colsep %yesorno; #IMPLIED
|
||||
rowsep %yesorno; #IMPLIED
|
||||
%tbl.table.att;
|
||||
%bodyatt;
|
||||
%secur;
|
||||
>
|
||||
|
||||
<!ELEMENT tgroup %ho; (%tbl.tgroup.mdl;) >
|
||||
|
||||
<!ATTLIST tgroup
|
||||
cols CDATA #REQUIRED
|
||||
%tbl.tgroup.att;
|
||||
colsep %yesorno; #IMPLIED
|
||||
rowsep %yesorno; #IMPLIED
|
||||
align (left|right|center|justify|char) #IMPLIED
|
||||
char CDATA #IMPLIED
|
||||
charoff CDATA #IMPLIED
|
||||
%secur;
|
||||
>
|
||||
|
||||
<!ELEMENT colspec %ho; EMPTY >
|
||||
|
||||
<!ATTLIST colspec
|
||||
colnum CDATA #IMPLIED
|
||||
colname CDATA #IMPLIED
|
||||
colwidth CDATA #IMPLIED
|
||||
colsep %yesorno; #IMPLIED
|
||||
rowsep %yesorno; #IMPLIED
|
||||
align (left|right|center|justify|char) #IMPLIED
|
||||
char CDATA #IMPLIED
|
||||
charoff CDATA #IMPLIED
|
||||
>
|
||||
|
||||
<!ELEMENT spanspec %ho; EMPTY >
|
||||
|
||||
<!ATTLIST spanspec
|
||||
namest CDATA #REQUIRED
|
||||
nameend CDATA #REQUIRED
|
||||
spanname CDATA #REQUIRED
|
||||
colsep %yesorno; #IMPLIED
|
||||
rowsep %yesorno; #IMPLIED
|
||||
align (left|right|center|justify|char) #IMPLIED
|
||||
char CDATA #IMPLIED
|
||||
charoff CDATA #IMPLIED
|
||||
>
|
||||
|
||||
<!ELEMENT thead %ho; (%tbl.hdft.mdl;)>
|
||||
<!ATTLIST thead
|
||||
valign (top|middle|bottom) #IMPLIED
|
||||
%secur;
|
||||
>
|
||||
|
||||
<!ELEMENT tfoot %ho; (%tbl.hdft.mdl;)>
|
||||
<!ATTLIST tfoot
|
||||
valign (top|middle|bottom) #IMPLIED
|
||||
%secur;
|
||||
>
|
||||
|
||||
<!ELEMENT tbody %ho; (%tbl.tbody.mdl;)>
|
||||
|
||||
<!ATTLIST tbody
|
||||
valign (top|middle|bottom) #IMPLIED
|
||||
%secur;
|
||||
>
|
||||
|
||||
<!ELEMENT row %ho; (%tbl.row.mdl;)>
|
||||
|
||||
<!ATTLIST row
|
||||
rowsep %yesorno; #IMPLIED
|
||||
valign (top|middle|bottom) #IMPLIED
|
||||
%secur;
|
||||
>
|
||||
|
||||
<!ELEMENT entrytbl %ho; (%tbl.entrytbl.mdl;)>
|
||||
|
||||
<!ATTLIST entrytbl
|
||||
cols CDATA #REQUIRED
|
||||
%tbl.tgroup.att;
|
||||
colname CDATA #IMPLIED
|
||||
spanname CDATA #IMPLIED
|
||||
namest CDATA #IMPLIED
|
||||
nameend CDATA #IMPLIED
|
||||
colsep %yesorno; #IMPLIED
|
||||
rowsep %yesorno; #IMPLIED
|
||||
align (left|right|center|justify|char) #IMPLIED
|
||||
char CDATA #IMPLIED
|
||||
charoff CDATA #IMPLIED
|
||||
%secur;
|
||||
>
|
||||
|
||||
<!ELEMENT entry %ho; (%tbl.entry.mdl;)*>
|
||||
|
||||
<!ATTLIST entry
|
||||
colname CDATA #IMPLIED
|
||||
namest CDATA #IMPLIED
|
||||
nameend CDATA #IMPLIED
|
||||
spanname CDATA #IMPLIED
|
||||
morerows CDATA #IMPLIED
|
||||
colsep %yesorno; #IMPLIED
|
||||
rowsep %yesorno; #IMPLIED
|
||||
align (left|right|center|justify|char) #IMPLIED
|
||||
char CDATA #IMPLIED
|
||||
charoff CDATA #IMPLIED
|
||||
rotate %yesorno; #IMPLIED
|
||||
valign (top|middle|bottom) #IMPLIED
|
||||
%secur;
|
||||
>
|
||||
|
||||
<!-- End of DocBook CALS Table Model V4.3CR3 ................................. -->
|
||||
<!-- ...................................................................... -->
|
|
@ -1,115 +0,0 @@
|
|||
<?xml version='1.0'?>
|
||||
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
<!-- XML Catalog data for DocBook XML V4.3CR3 ................................ -->
|
||||
<!-- File catalog.xml ..................................................... -->
|
||||
|
||||
<!-- Please direct all questions, bug reports, or suggestions for
|
||||
changes to the docbook@lists.oasis-open.org mailing list. For more
|
||||
information, see http://www.oasis-open.org/.
|
||||
-->
|
||||
|
||||
<!-- This is the catalog data file for DocBook V4.3CR3. It is provided as
|
||||
a convenience in building your own catalog files. You need not use
|
||||
the filenames listed here, and need not use the filename method of
|
||||
identifying storage objects at all. See the documentation for
|
||||
detailed information on the files associated with the DocBook DTD.
|
||||
See XML Catalogs at http://www.oasis-open.org/committees/entity/ for
|
||||
detailed information on supplying and using catalog data.
|
||||
-->
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
<!-- DocBook driver file .................................................. -->
|
||||
|
||||
<public publicId="-//OASIS//DTD DocBook XML V4.3CR3//EN"
|
||||
uri="docbookx.dtd"/>
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
<!-- DocBook modules ...................................................... -->
|
||||
|
||||
<public publicId="-//OASIS//DTD DocBook CALS Table Model V4.3CR3//EN"
|
||||
uri="calstblx.dtd"/>
|
||||
|
||||
<public publicId="-//OASIS//DTD XML Exchange Table Model 19990315//EN"
|
||||
uri="soextblx.dtd"/>
|
||||
|
||||
<public publicId="-//OASIS//ELEMENTS DocBook Information Pool V4.3CR3//EN"
|
||||
uri="dbpoolx.mod"/>
|
||||
|
||||
<public publicId="-//OASIS//ELEMENTS DocBook Document Hierarchy V4.3CR3//EN"
|
||||
uri="dbhierx.mod"/>
|
||||
|
||||
<public publicId="-//OASIS//ENTITIES DocBook Additional General Entities V4.3CR3//EN"
|
||||
uri="dbgenent.mod"/>
|
||||
|
||||
<public publicId="-//OASIS//ENTITIES DocBook Notations V4.3CR3//EN"
|
||||
uri="dbnotnx.mod"/>
|
||||
|
||||
<public publicId="-//OASIS//ENTITIES DocBook Character Entities V4.3CR3//EN"
|
||||
uri="dbcentx.mod"/>
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
<!-- ISO entity sets ...................................................... -->
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Diacritical Marks//EN//XML"
|
||||
uri="ent/iso-dia.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN//XML"
|
||||
uri="ent/iso-num.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Publishing//EN//XML"
|
||||
uri="ent/iso-pub.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES General Technical//EN//XML"
|
||||
uri="ent/iso-tech.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Added Latin 1//EN//XML"
|
||||
uri="ent/iso-lat1.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Added Latin 2//EN//XML"
|
||||
uri="ent/iso-lat2.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Greek Letters//EN//XML"
|
||||
uri="ent/iso-grk1.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Monotoniko Greek//EN//XML"
|
||||
uri="ent/iso-grk2.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Greek Symbols//EN//XML"
|
||||
uri="ent/iso-grk3.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN//XML"
|
||||
uri="ent/iso-grk4.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN//XML"
|
||||
uri="ent/iso-amsa.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN//XML"
|
||||
uri="ent/iso-amsb.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN//XML"
|
||||
uri="ent/iso-amsc.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN//XML"
|
||||
uri="ent/iso-amsn.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN//XML"
|
||||
uri="ent/iso-amso.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN//XML"
|
||||
uri="ent/iso-amsr.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Box and Line Drawing//EN//XML"
|
||||
uri="ent/iso-box.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Russian Cyrillic//EN//XML"
|
||||
uri="ent/iso-cyr1.ent"/>
|
||||
|
||||
<public publicId="ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN//XML"
|
||||
uri="ent/iso-cyr2.ent"/>
|
||||
|
||||
<!-- End of catalog data for DocBook XML V4.3CR3 ............................. -->
|
||||
<!-- ...................................................................... -->
|
||||
|
||||
</catalog>
|
|
@ -1,384 +0,0 @@
|
|||
<!-- ...................................................................... -->
|
||||
<!-- DocBook character entities module V4.3CR3 ............................... -->
|
||||
<!-- File dbcentx.mod ..................................................... -->
|
||||
|
||||
<!-- Copyright 1992-2002 HaL Computer Systems, Inc.,
|
||||
O'Reilly & Associates, Inc., ArborText, Inc., Fujitsu Software
|
||||
Corporation, Norman Walsh, Sun Microsystems, Inc., and the
|
||||
Organization for the Advancement of Structured Information
|
||||
Standards (OASIS).
|
||||
|
||||
$Id: dbcentx.mod 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
|
||||
Permission to use, copy, modify and distribute the DocBook DTD
|
||||
and its accompanying documentation for any purpose and without fee
|
||||
is hereby granted in perpetuity, provided that the above copyright
|
||||
notice and this paragraph appear in all copies. The copyright
|
||||
holders make no representation about the suitability of the DTD for
|
||||
any purpose. It is provided "as is" without expressed or implied
|
||||
warranty.
|
||||
|
||||
If you modify the DocBook DTD in any way, except for declaring and
|
||||
referencing additional sets of general entities and declaring
|
||||
additional notations, label your DTD as a variant of DocBook. See
|
||||
the maintenance documentation for more information.
|
||||
|
||||
Please direct all questions, bug reports, or suggestions for
|
||||
changes to the docbook@lists.oasis-open.org mailing list. For more
|
||||
information, see http://www.oasis-open.org/docbook/.
|
||||
-->
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
|
||||
<!-- This module contains the entity declarations for the standard ISO
|
||||
entity sets used by DocBook.
|
||||
|
||||
In DTD driver files referring to this module, please use an entity
|
||||
declaration that uses the public identifier shown below:
|
||||
|
||||
<!ENTITY % dbcent PUBLIC
|
||||
"-//OASIS//ENTITIES DocBook Character Entities V4.3CR3//EN"
|
||||
"dbcentx.mod">
|
||||
%dbcent;
|
||||
|
||||
See the documentation for detailed information on the parameter
|
||||
entity and module scheme used in DocBook, customizing DocBook and
|
||||
planning for interchange, and changes made since the last release
|
||||
of DocBook.
|
||||
-->
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
|
||||
<![%sgml.features;[
|
||||
|
||||
<!ENTITY % ISOamsa.module "INCLUDE">
|
||||
<![ %ISOamsa.module; [
|
||||
<!ENTITY % ISOamsa PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN">
|
||||
<!--end of ISOamsa.module-->]]>
|
||||
|
||||
<!ENTITY % ISOamsb.module "INCLUDE">
|
||||
<![ %ISOamsb.module; [
|
||||
<!ENTITY % ISOamsb PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN">
|
||||
<!--end of ISOamsb.module-->]]>
|
||||
|
||||
<!ENTITY % ISOamsc.module "INCLUDE">
|
||||
<![ %ISOamsc.module; [
|
||||
<!ENTITY % ISOamsc PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN">
|
||||
<!--end of ISOamsc.module-->]]>
|
||||
|
||||
<!ENTITY % ISOamsn.module "INCLUDE">
|
||||
<![ %ISOamsn.module; [
|
||||
<!ENTITY % ISOamsn PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN">
|
||||
<!--end of ISOamsn.module-->]]>
|
||||
|
||||
<!ENTITY % ISOamso.module "INCLUDE">
|
||||
<![ %ISOamso.module; [
|
||||
<!ENTITY % ISOamso PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN">
|
||||
<!--end of ISOamso.module-->]]>
|
||||
|
||||
<!ENTITY % ISOamsr.module "INCLUDE">
|
||||
<![ %ISOamsr.module; [
|
||||
<!ENTITY % ISOamsr PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN">
|
||||
<!--end of ISOamsr.module-->]]>
|
||||
|
||||
<!ENTITY % ISObox.module "INCLUDE">
|
||||
<![ %ISObox.module; [
|
||||
<!ENTITY % ISObox PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Box and Line Drawing//EN">
|
||||
<!--end of ISObox.module-->]]>
|
||||
|
||||
<!ENTITY % ISOcyr1.module "INCLUDE">
|
||||
<![ %ISOcyr1.module; [
|
||||
<!ENTITY % ISOcyr1 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Russian Cyrillic//EN">
|
||||
<!--end of ISOcyr1.module-->]]>
|
||||
|
||||
<!ENTITY % ISOcyr2.module "INCLUDE">
|
||||
<![ %ISOcyr2.module; [
|
||||
<!ENTITY % ISOcyr2 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN">
|
||||
<!--end of ISOcyr2.module-->]]>
|
||||
|
||||
<!ENTITY % ISOdia.module "INCLUDE">
|
||||
<![ %ISOdia.module; [
|
||||
<!ENTITY % ISOdia PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Diacritical Marks//EN">
|
||||
<!--end of ISOdia.module-->]]>
|
||||
|
||||
<!ENTITY % ISOgrk1.module "INCLUDE">
|
||||
<![ %ISOgrk1.module; [
|
||||
<!ENTITY % ISOgrk1 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Greek Letters//EN">
|
||||
<!--end of ISOgrk1.module-->]]>
|
||||
|
||||
<!ENTITY % ISOgrk2.module "INCLUDE">
|
||||
<![ %ISOgrk2.module; [
|
||||
<!ENTITY % ISOgrk2 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Monotoniko Greek//EN">
|
||||
<!--end of ISOgrk2.module-->]]>
|
||||
|
||||
<!ENTITY % ISOgrk3.module "INCLUDE">
|
||||
<![ %ISOgrk3.module; [
|
||||
<!ENTITY % ISOgrk3 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Greek Symbols//EN">
|
||||
<!--end of ISOgrk3.module-->]]>
|
||||
|
||||
<!ENTITY % ISOgrk4.module "INCLUDE">
|
||||
<![ %ISOgrk4.module; [
|
||||
<!ENTITY % ISOgrk4 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN">
|
||||
<!--end of ISOgrk4.module-->]]>
|
||||
|
||||
<!ENTITY % ISOlat1.module "INCLUDE">
|
||||
<![ %ISOlat1.module; [
|
||||
<!ENTITY % ISOlat1 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Latin 1//EN">
|
||||
<!--end of ISOlat1.module-->]]>
|
||||
|
||||
<!ENTITY % ISOlat2.module "INCLUDE">
|
||||
<![ %ISOlat2.module; [
|
||||
<!ENTITY % ISOlat2 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Latin 2//EN">
|
||||
<!--end of ISOlat2.module-->]]>
|
||||
|
||||
<!ENTITY % ISOnum.module "INCLUDE">
|
||||
<![ %ISOnum.module; [
|
||||
<!ENTITY % ISOnum PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN">
|
||||
<!--end of ISOnum.module-->]]>
|
||||
|
||||
<!ENTITY % ISOpub.module "INCLUDE">
|
||||
<![ %ISOpub.module; [
|
||||
<!ENTITY % ISOpub PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Publishing//EN">
|
||||
<!--end of ISOpub.module-->]]>
|
||||
|
||||
<!ENTITY % ISOtech.module "INCLUDE">
|
||||
<![ %ISOtech.module; [
|
||||
<!ENTITY % ISOtech PUBLIC
|
||||
"ISO 8879:1986//ENTITIES General Technical//EN">
|
||||
<!--end of ISOtech.module-->]]>
|
||||
|
||||
<!--end of sgml.features-->]]>
|
||||
|
||||
<![%xml.features;[
|
||||
|
||||
<!ENTITY % ISOamsa.module "INCLUDE">
|
||||
<![%ISOamsa.module;[
|
||||
<!ENTITY % ISOamsa PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN//XML"
|
||||
"ent/iso-amsa.ent">
|
||||
<!--end of ISOamsa.module-->]]>
|
||||
|
||||
<!ENTITY % ISOamsb.module "INCLUDE">
|
||||
<![%ISOamsb.module;[
|
||||
<!ENTITY % ISOamsb PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN//XML"
|
||||
"ent/iso-amsb.ent">
|
||||
<!--end of ISOamsb.module-->]]>
|
||||
|
||||
<!ENTITY % ISOamsc.module "INCLUDE">
|
||||
<![%ISOamsc.module;[
|
||||
<!ENTITY % ISOamsc PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN//XML"
|
||||
"ent/iso-amsc.ent">
|
||||
<!--end of ISOamsc.module-->]]>
|
||||
|
||||
<!ENTITY % ISOamsn.module "INCLUDE">
|
||||
<![%ISOamsn.module;[
|
||||
<!ENTITY % ISOamsn PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN//XML"
|
||||
"ent/iso-amsn.ent">
|
||||
<!--end of ISOamsn.module-->]]>
|
||||
|
||||
<!ENTITY % ISOamso.module "INCLUDE">
|
||||
<![%ISOamso.module;[
|
||||
<!ENTITY % ISOamso PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN//XML"
|
||||
"ent/iso-amso.ent">
|
||||
<!--end of ISOamso.module-->]]>
|
||||
|
||||
<!ENTITY % ISOamsr.module "INCLUDE">
|
||||
<![%ISOamsr.module;[
|
||||
<!ENTITY % ISOamsr PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN//XML"
|
||||
"ent/iso-amsr.ent">
|
||||
<!--end of ISOamsr.module-->]]>
|
||||
|
||||
<!ENTITY % ISObox.module "INCLUDE">
|
||||
<![%ISObox.module;[
|
||||
<!ENTITY % ISObox PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Box and Line Drawing//EN//XML"
|
||||
"ent/iso-box.ent">
|
||||
<!--end of ISObox.module-->]]>
|
||||
|
||||
<!ENTITY % ISOcyr1.module "INCLUDE">
|
||||
<![%ISOcyr1.module;[
|
||||
<!ENTITY % ISOcyr1 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Russian Cyrillic//EN//XML"
|
||||
"ent/iso-cyr1.ent">
|
||||
<!--end of ISOcyr1.module-->]]>
|
||||
|
||||
<!ENTITY % ISOcyr2.module "INCLUDE">
|
||||
<![%ISOcyr2.module;[
|
||||
<!ENTITY % ISOcyr2 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN//XML"
|
||||
"ent/iso-cyr2.ent">
|
||||
<!--end of ISOcyr2.module-->]]>
|
||||
|
||||
<!ENTITY % ISOdia.module "INCLUDE">
|
||||
<![%ISOdia.module;[
|
||||
<!ENTITY % ISOdia PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Diacritical Marks//EN//XML"
|
||||
"ent/iso-dia.ent">
|
||||
<!--end of ISOdia.module-->]]>
|
||||
|
||||
<!ENTITY % ISOgrk1.module "INCLUDE">
|
||||
<![%ISOgrk1.module;[
|
||||
<!ENTITY % ISOgrk1 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Greek Letters//EN//XML"
|
||||
"ent/iso-grk1.ent">
|
||||
<!--end of ISOgrk1.module-->]]>
|
||||
|
||||
<!ENTITY % ISOgrk2.module "INCLUDE">
|
||||
<![%ISOgrk2.module;[
|
||||
<!ENTITY % ISOgrk2 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Monotoniko Greek//EN//XML"
|
||||
"ent/iso-grk2.ent">
|
||||
<!--end of ISOgrk2.module-->]]>
|
||||
|
||||
<!ENTITY % ISOgrk3.module "INCLUDE">
|
||||
<![%ISOgrk3.module;[
|
||||
<!ENTITY % ISOgrk3 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Greek Symbols//EN//XML"
|
||||
"ent/iso-grk3.ent">
|
||||
<!--end of ISOgrk3.module-->]]>
|
||||
|
||||
<!ENTITY % ISOgrk4.module "INCLUDE">
|
||||
<![%ISOgrk4.module;[
|
||||
<!ENTITY % ISOgrk4 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN//XML"
|
||||
"ent/iso-grk4.ent">
|
||||
<!--end of ISOgrk4.module-->]]>
|
||||
|
||||
<!ENTITY % ISOlat1.module "INCLUDE">
|
||||
<![%ISOlat1.module;[
|
||||
<!ENTITY % ISOlat1 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Latin 1//EN//XML"
|
||||
"ent/iso-lat1.ent">
|
||||
<!--end of ISOlat1.module-->]]>
|
||||
|
||||
<!ENTITY % ISOlat2.module "INCLUDE">
|
||||
<![%ISOlat2.module;[
|
||||
<!ENTITY % ISOlat2 PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Added Latin 2//EN//XML"
|
||||
"ent/iso-lat2.ent">
|
||||
<!--end of ISOlat2.module-->]]>
|
||||
|
||||
<!ENTITY % ISOnum.module "INCLUDE">
|
||||
<![%ISOnum.module;[
|
||||
<!ENTITY % ISOnum PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN//XML"
|
||||
"ent/iso-num.ent">
|
||||
<!--end of ISOnum.module-->]]>
|
||||
|
||||
<!ENTITY % ISOpub.module "INCLUDE">
|
||||
<![%ISOpub.module;[
|
||||
<!ENTITY % ISOpub PUBLIC
|
||||
"ISO 8879:1986//ENTITIES Publishing//EN//XML"
|
||||
"ent/iso-pub.ent">
|
||||
<!--end of ISOpub.module-->]]>
|
||||
|
||||
<!ENTITY % ISOtech.module "INCLUDE">
|
||||
<![%ISOtech.module;[
|
||||
<!ENTITY % ISOtech PUBLIC
|
||||
"ISO 8879:1986//ENTITIES General Technical//EN//XML"
|
||||
"ent/iso-tech.ent">
|
||||
<!--end of ISOtech.module-->]]>
|
||||
|
||||
<!--end of xml.features-->]]>
|
||||
|
||||
<![ %ISOamsa.module; [
|
||||
%ISOamsa;
|
||||
]]>
|
||||
|
||||
<![ %ISOamsb.module; [
|
||||
%ISOamsb;
|
||||
]]>
|
||||
|
||||
<![ %ISOamsc.module; [
|
||||
%ISOamsc;
|
||||
]]>
|
||||
|
||||
<![ %ISOamsn.module; [
|
||||
%ISOamsn;
|
||||
]]>
|
||||
|
||||
<![ %ISOamso.module; [
|
||||
%ISOamso;
|
||||
]]>
|
||||
|
||||
<![ %ISOamsr.module; [
|
||||
%ISOamsr;
|
||||
]]>
|
||||
|
||||
<![ %ISObox.module; [
|
||||
%ISObox;
|
||||
]]>
|
||||
|
||||
<![ %ISOcyr1.module; [
|
||||
%ISOcyr1;
|
||||
]]>
|
||||
|
||||
<![ %ISOcyr2.module; [
|
||||
%ISOcyr2;
|
||||
]]>
|
||||
|
||||
<![ %ISOdia.module; [
|
||||
%ISOdia;
|
||||
]]>
|
||||
|
||||
<![ %ISOgrk1.module; [
|
||||
%ISOgrk1;
|
||||
]]>
|
||||
|
||||
<![ %ISOgrk2.module; [
|
||||
%ISOgrk2;
|
||||
]]>
|
||||
|
||||
<![ %ISOgrk3.module; [
|
||||
%ISOgrk3;
|
||||
]]>
|
||||
|
||||
<![ %ISOgrk4.module; [
|
||||
%ISOgrk4;
|
||||
]]>
|
||||
|
||||
<![ %ISOlat1.module; [
|
||||
%ISOlat1;
|
||||
]]>
|
||||
|
||||
<![ %ISOlat2.module; [
|
||||
%ISOlat2;
|
||||
]]>
|
||||
|
||||
<![ %ISOnum.module; [
|
||||
%ISOnum;
|
||||
]]>
|
||||
|
||||
<![ %ISOpub.module; [
|
||||
%ISOpub;
|
||||
]]>
|
||||
|
||||
<![ %ISOtech.module; [
|
||||
%ISOtech;
|
||||
]]>
|
||||
|
||||
<!-- End of DocBook character entity sets module V4.3CR3 ..................... -->
|
||||
<!-- ...................................................................... -->
|
|
@ -1,41 +0,0 @@
|
|||
<!-- ...................................................................... -->
|
||||
<!-- DocBook additional general entities V4.3CR3 ............................. -->
|
||||
|
||||
<!-- Copyright 1992-2002 HaL Computer Systems, Inc.,
|
||||
O'Reilly & Associates, Inc., ArborText, Inc., Fujitsu Software
|
||||
Corporation, Norman Walsh, Sun Microsystems, Inc., and the
|
||||
Organization for the Advancement of Structured Information
|
||||
Standards (OASIS).
|
||||
|
||||
In DTD driver files referring to this module, please use an entity
|
||||
declaration that uses the public identifier shown below:
|
||||
|
||||
<!ENTITY % dbgenent PUBLIC
|
||||
"-//OASIS//ENTITIES DocBook Additional General Entities V4.3CR3//EN"
|
||||
"dbgenent.mod">
|
||||
%dbgenent;
|
||||
-->
|
||||
|
||||
<!-- File dbgenent.mod .................................................... -->
|
||||
|
||||
<!-- You can edit this file to add the following:
|
||||
|
||||
o General entity declarations of any kind. For example:
|
||||
|
||||
<!ENTITY productname "WinWidget"> (small boilerplate)
|
||||
<!ENTITY legal-notice SYSTEM "notice.sgm"> (large boilerplate)
|
||||
|
||||
o Notation declarations. For example:
|
||||
|
||||
<!NOTATION chicken-scratch SYSTEM>
|
||||
|
||||
o Declarations for and references to external parameter entities
|
||||
containing collections of any of the above. For example:
|
||||
|
||||
<!ENTITY % all-titles PUBLIC "-//DocTools//ELEMENTS Book Titles//EN"
|
||||
"booktitles.ent">
|
||||
%all-titles;
|
||||
-->
|
||||
|
||||
<!-- End of DocBook additional general entities V4.3CR3 ...................... -->
|
||||
<!-- ...................................................................... -->
|
File diff suppressed because it is too large
Load Diff
|
@ -1,102 +0,0 @@
|
|||
<!-- ...................................................................... -->
|
||||
<!-- DocBook notations module V4.3CR3 ........................................ -->
|
||||
<!-- File dbnotnx.mod ..................................................... -->
|
||||
|
||||
<!-- Copyright 1992-2002 HaL Computer Systems, Inc.,
|
||||
O'Reilly & Associates, Inc., ArborText, Inc., Fujitsu Software
|
||||
Corporation, Norman Walsh, Sun Microsystems, Inc., and the
|
||||
Organization for the Advancement of Structured Information
|
||||
Standards (OASIS).
|
||||
|
||||
$Id: dbnotnx.mod 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
|
||||
Permission to use, copy, modify and distribute the DocBook DTD
|
||||
and its accompanying documentation for any purpose and without fee
|
||||
is hereby granted in perpetuity, provided that the above copyright
|
||||
notice and this paragraph appear in all copies. The copyright
|
||||
holders make no representation about the suitability of the DTD for
|
||||
any purpose. It is provided "as is" without expressed or implied
|
||||
warranty.
|
||||
|
||||
If you modify the DocBook DTD in any way, except for declaring and
|
||||
referencing additional sets of general entities and declaring
|
||||
additional notations, label your DTD as a variant of DocBook. See
|
||||
the maintenance documentation for more information.
|
||||
|
||||
Please direct all questions, bug reports, or suggestions for
|
||||
changes to the docbook@lists.oasis-open.org mailing list. For more
|
||||
information, see http://www.oasis-open.org/docbook/.
|
||||
-->
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
|
||||
<!-- This module contains the entity declarations for the standard ISO
|
||||
entity sets used by DocBook.
|
||||
|
||||
In DTD driver files referring to this module, please use an entity
|
||||
declaration that uses the public identifier shown below:
|
||||
|
||||
<!ENTITY % dbnotn PUBLIC
|
||||
"-//OASIS//ENTITIES DocBook Notations V4.3CR3//EN"
|
||||
"dbnotnx.mod">
|
||||
%dbnotn;
|
||||
|
||||
See the documentation for detailed information on the parameter
|
||||
entity and module scheme used in DocBook, customizing DocBook and
|
||||
planning for interchange, and changes made since the last release
|
||||
of DocBook.
|
||||
-->
|
||||
|
||||
<!ENTITY % local.notation.class "">
|
||||
<!ENTITY % notation.class
|
||||
"BMP| CGM-CHAR | CGM-BINARY | CGM-CLEAR | DITROFF | DVI
|
||||
| EPS | EQN | FAX | GIF | GIF87a | GIF89a
|
||||
| JPG | JPEG | IGES | PCX
|
||||
| PIC | PNG | PS | SGML | TBL | TEX | TIFF | WMF | WPG
|
||||
| SVG | PDF | SWF
|
||||
| linespecific
|
||||
%local.notation.class;">
|
||||
|
||||
<!NOTATION BMP PUBLIC
|
||||
"+//ISBN 0-7923-94.2-1::Graphic Notation//NOTATION Microsoft Windows bitmap//EN">
|
||||
<!NOTATION CGM-CHAR PUBLIC "ISO 8632/2//NOTATION Character encoding//EN">
|
||||
<!NOTATION CGM-BINARY PUBLIC "ISO 8632/3//NOTATION Binary encoding//EN">
|
||||
<!NOTATION CGM-CLEAR PUBLIC "ISO 8632/4//NOTATION Clear text encoding//EN">
|
||||
<!NOTATION DITROFF SYSTEM "DITROFF">
|
||||
<!NOTATION DVI SYSTEM "DVI">
|
||||
<!NOTATION EPS PUBLIC
|
||||
"+//ISBN 0-201-18127-4::Adobe//NOTATION PostScript Language Ref. Manual//EN">
|
||||
<!NOTATION EQN SYSTEM "EQN">
|
||||
<!NOTATION FAX PUBLIC
|
||||
"-//USA-DOD//NOTATION CCITT Group 4 Facsimile Type 1 Untiled Raster//EN">
|
||||
<!NOTATION GIF SYSTEM "GIF">
|
||||
<!NOTATION GIF87a PUBLIC
|
||||
"-//CompuServe//NOTATION Graphics Interchange Format 87a//EN">
|
||||
|
||||
<!NOTATION GIF89a PUBLIC
|
||||
"-//CompuServe//NOTATION Graphics Interchange Format 89a//EN">
|
||||
<!NOTATION JPG SYSTEM "JPG">
|
||||
<!NOTATION JPEG SYSTEM "JPG">
|
||||
<!NOTATION IGES PUBLIC
|
||||
"-//USA-DOD//NOTATION (ASME/ANSI Y14.26M-1987) Initial Graphics Exchange Specification//EN">
|
||||
<!NOTATION PCX PUBLIC
|
||||
"+//ISBN 0-7923-94.2-1::Graphic Notation//NOTATION ZSoft PCX bitmap//EN">
|
||||
<!NOTATION PIC SYSTEM "PIC">
|
||||
<!NOTATION PNG SYSTEM "http://www.w3.org/TR/REC-png">
|
||||
<!NOTATION PS SYSTEM "PS">
|
||||
<!NOTATION SGML PUBLIC
|
||||
"ISO 8879:1986//NOTATION Standard Generalized Markup Language//EN">
|
||||
<!NOTATION TBL SYSTEM "TBL">
|
||||
<!NOTATION TEX PUBLIC
|
||||
"+//ISBN 0-201-13448-9::Knuth//NOTATION The TeXbook//EN">
|
||||
<!NOTATION TIFF SYSTEM "TIFF">
|
||||
<!NOTATION WMF PUBLIC
|
||||
"+//ISBN 0-7923-94.2-1::Graphic Notation//NOTATION Microsoft Windows Metafile//EN">
|
||||
<!NOTATION WPG SYSTEM "WPG"> <!--WordPerfect Graphic format-->
|
||||
<!NOTATION SVG SYSTEM "http://www.w3.org/TR/SVG/">
|
||||
<!NOTATION PDF SYSTEM "http://www.adobe.com/products/acrobat/adobepdf.html">
|
||||
<!NOTATION SWF SYSTEM "http://www.macromedia.com/software/flash">
|
||||
<!NOTATION linespecific SYSTEM "linespecific">
|
||||
|
||||
<!-- End of DocBook notations module V4.3CR3 ................................. -->
|
||||
<!-- ...................................................................... -->
|
File diff suppressed because it is too large
Load Diff
|
@ -1,110 +0,0 @@
|
|||
-- ...................................................................... --
|
||||
-- Catalog data for DocBook XML V4.3CR3 .................................... --
|
||||
-- File docbook.cat ..................................................... --
|
||||
|
||||
-- Please direct all questions, bug reports, or suggestions for
|
||||
changes to the docbook@lists.oasis-open.org mailing list. For more
|
||||
information, see http://www.oasis-open.org/.
|
||||
--
|
||||
|
||||
-- This is the catalog data file for DocBook XML V4.3CR3. It is provided as
|
||||
a convenience in building your own catalog files. You need not use
|
||||
the filenames listed here, and need not use the filename method of
|
||||
identifying storage objects at all. See the documentation for
|
||||
detailed information on the files associated with the DocBook DTD.
|
||||
See SGML Open Technical Resolution 9401 for detailed information
|
||||
on supplying and using catalog data.
|
||||
--
|
||||
|
||||
-- ...................................................................... --
|
||||
-- DocBook driver file .................................................. --
|
||||
|
||||
PUBLIC "-//OASIS//DTD DocBook XML V4.3CR3//EN"
|
||||
"docbookx.dtd"
|
||||
|
||||
-- ...................................................................... --
|
||||
-- DocBook modules ...................................................... --
|
||||
|
||||
PUBLIC "-//OASIS//DTD DocBook CALS Table Model V4.3CR3//EN"
|
||||
"calstblx.dtd"
|
||||
|
||||
PUBLIC "-//OASIS//DTD XML Exchange Table Model 19990315//EN"
|
||||
"soextblx.dtd"
|
||||
|
||||
PUBLIC "-//OASIS//ELEMENTS DocBook Information Pool V4.3CR3//EN"
|
||||
"dbpoolx.mod"
|
||||
|
||||
PUBLIC "-//OASIS//ELEMENTS DocBook Document Hierarchy V4.3CR3//EN"
|
||||
"dbhierx.mod"
|
||||
|
||||
PUBLIC "-//OASIS//ENTITIES DocBook Additional General Entities V4.3CR3//EN"
|
||||
"dbgenent.mod"
|
||||
|
||||
PUBLIC "-//OASIS//ENTITIES DocBook Notations V4.3CR3//EN"
|
||||
"dbnotnx.mod"
|
||||
|
||||
PUBLIC "-//OASIS//ENTITIES DocBook Character Entities V4.3CR3//EN"
|
||||
"dbcentx.mod"
|
||||
|
||||
-- ...................................................................... --
|
||||
-- ISO entity sets ...................................................... --
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Diacritical Marks//EN//XML"
|
||||
"ent/iso-dia.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN//XML"
|
||||
"ent/iso-num.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Publishing//EN//XML"
|
||||
"ent/iso-pub.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES General Technical//EN//XML"
|
||||
"ent/iso-tech.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Added Latin 1//EN//XML"
|
||||
"ent/iso-lat1.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Added Latin 2//EN//XML"
|
||||
"ent/iso-lat2.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Greek Letters//EN//XML"
|
||||
"ent/iso-grk1.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Monotoniko Greek//EN//XML"
|
||||
"ent/iso-grk2.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Greek Symbols//EN//XML"
|
||||
"ent/iso-grk3.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN//XML"
|
||||
"ent/iso-grk4.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN//XML"
|
||||
"ent/iso-amsa.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN//XML"
|
||||
"ent/iso-amsb.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN//XML"
|
||||
"ent/iso-amsc.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN//XML"
|
||||
"ent/iso-amsn.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN//XML"
|
||||
"ent/iso-amso.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN//XML"
|
||||
"ent/iso-amsr.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Box and Line Drawing//EN//XML"
|
||||
"ent/iso-box.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Russian Cyrillic//EN//XML"
|
||||
"ent/iso-cyr1.ent"
|
||||
|
||||
PUBLIC "ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN//XML"
|
||||
"ent/iso-cyr2.ent"
|
||||
|
||||
-- End of catalog data for DocBook XML V4.3CR3 ............................. --
|
||||
-- ...................................................................... --
|
|
@ -1,165 +0,0 @@
|
|||
<!-- ...................................................................... -->
|
||||
<!-- DocBook XML DTD V4.3CR3 ................................................. -->
|
||||
<!-- File docbookx.dtd .................................................... -->
|
||||
|
||||
<!-- Copyright 1992-2002 HaL Computer Systems, Inc.,
|
||||
O'Reilly & Associates, Inc., ArborText, Inc., Fujitsu Software
|
||||
Corporation, Norman Walsh, Sun Microsystems, Inc., and the
|
||||
Organization for the Advancement of Structured Information
|
||||
Standards (OASIS).
|
||||
|
||||
$Id: docbookx.dtd 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
|
||||
Permission to use, copy, modify and distribute the DocBook XML DTD
|
||||
and its accompanying documentation for any purpose and without fee
|
||||
is hereby granted in perpetuity, provided that the above copyright
|
||||
notice and this paragraph appear in all copies. The copyright
|
||||
holders make no representation about the suitability of the DTD for
|
||||
any purpose. It is provided "as is" without expressed or implied
|
||||
warranty.
|
||||
|
||||
If you modify the DocBook DTD in any way, except for declaring and
|
||||
referencing additional sets of general entities and declaring
|
||||
additional notations, label your DTD as a variant of DocBook. See
|
||||
the maintenance documentation for more information.
|
||||
|
||||
Please direct all questions, bug reports, or suggestions for
|
||||
changes to the docbook@lists.oasis-open.org mailing list. For more
|
||||
information, see http://www.oasis-open.org/docbook/.
|
||||
-->
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
|
||||
<!-- This is the driver file for V4.3CR3 of the DocBook DTD.
|
||||
Please use the following formal public identifier to identify it:
|
||||
|
||||
"-//OASIS//DTD DocBook XML V4.3CR3//EN"
|
||||
|
||||
For example, if your document's top-level element is Book, and
|
||||
you are using DocBook directly, use the FPI in the DOCTYPE
|
||||
declaration:
|
||||
|
||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3CR3//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.3b2/docbookx.dtd"
|
||||
[...]>
|
||||
|
||||
Or, if you have a higher-level driver file that customizes DocBook,
|
||||
use the FPI in the parameter entity declaration:
|
||||
|
||||
<!ENTITY % DocBookDTD PUBLIC "-//OASIS//DTD DocBook XML V4.3CR3//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.3b2/docbookx.dtd">
|
||||
%DocBookDTD;
|
||||
|
||||
See the documentation for detailed information on the parameter
|
||||
entity and module scheme used in DocBook, customizing DocBook and
|
||||
planning for interchange, and changes made since the last release
|
||||
of DocBook.
|
||||
-->
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
<!-- Enable SGML features ................................................. -->
|
||||
|
||||
<!ENTITY % sgml.features "IGNORE">
|
||||
<![%sgml.features;[
|
||||
<!ENTITY % xml.features "IGNORE">
|
||||
]]>
|
||||
<!ENTITY % xml.features "INCLUDE">
|
||||
|
||||
<![%sgml.features;[
|
||||
<![%xml.features;[
|
||||
|
||||
<!-- ERROR: Exactly one of xml.features and sgml.features must be turned on! -->
|
||||
<!ENTITY % dbnotn SYSTEM "http://www.oasis-open.org/docbook/xml/configerror.txt">
|
||||
<!ENTITY % dbcent SYSTEM "http://www.oasis-open.org/docbook/xml/configerror.txt">
|
||||
<!ENTITY % dbpool SYSTEM "http://www.oasis-open.org/docbook/xml/configerror.txt">
|
||||
<!ENTITY % dbhier SYSTEM "http://www.oasis-open.org/docbook/xml/configerror.txt">
|
||||
<!ENTITY % dbgenent SYSTEM "http://www.oasis-open.org/docbook/xml/configerror.txt">
|
||||
|
||||
]]>
|
||||
]]>
|
||||
|
||||
<![%sgml.features;[
|
||||
<!ENTITY % ho "- O">
|
||||
<!ENTITY % hh "- -">
|
||||
]]>
|
||||
|
||||
<![%xml.features;[
|
||||
<!ENTITY % ho "">
|
||||
<!ENTITY % hh "">
|
||||
]]>
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
<!-- Notation declarations ................................................ -->
|
||||
|
||||
<!ENTITY % dbnotn.module "INCLUDE">
|
||||
<![%dbnotn.module;[
|
||||
<!ENTITY % dbnotn PUBLIC
|
||||
"-//OASIS//ENTITIES DocBook Notations V4.3CR3//EN"
|
||||
"dbnotnx.mod">
|
||||
%dbnotn;
|
||||
]]>
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
<!-- ISO character entity sets ............................................ -->
|
||||
|
||||
<!ENTITY % dbcent.module "INCLUDE">
|
||||
<![%dbcent.module;[
|
||||
|
||||
<![%sgml.features;[
|
||||
<!ENTITY euro SDATA "[euro ]"><!-- euro sign -->
|
||||
]]>
|
||||
<![%xml.features;[
|
||||
<!ENTITY euro "€"><!-- euro sign, U+20AC NEW -->
|
||||
]]>
|
||||
|
||||
<!ENTITY % dbcent PUBLIC
|
||||
"-//OASIS//ENTITIES DocBook Character Entities V4.3CR3//EN"
|
||||
"dbcentx.mod">
|
||||
%dbcent;
|
||||
]]>
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
<!-- DTD modules .......................................................... -->
|
||||
|
||||
<!-- Information pool .............. -->
|
||||
|
||||
<!ENTITY % dbpool.module "INCLUDE">
|
||||
<![ %dbpool.module; [
|
||||
<!ENTITY % dbpool PUBLIC
|
||||
"-//OASIS//ELEMENTS DocBook Information Pool V4.3CR3//EN"
|
||||
"dbpoolx.mod">
|
||||
%dbpool;
|
||||
]]>
|
||||
|
||||
<!-- Redeclaration placeholder ..... -->
|
||||
|
||||
<!ENTITY % intermod.redecl.module "IGNORE">
|
||||
<![%intermod.redecl.module;[
|
||||
<!-- Defining rdbmods here makes some buggy XML parsers happy. -->
|
||||
<!ENTITY % rdbmods "">
|
||||
%rdbmods;
|
||||
<!--end of intermod.redecl.module-->]]>
|
||||
|
||||
<!-- Document hierarchy ............ -->
|
||||
|
||||
<!ENTITY % dbhier.module "INCLUDE">
|
||||
<![ %dbhier.module; [
|
||||
<!ENTITY % dbhier PUBLIC
|
||||
"-//OASIS//ELEMENTS DocBook Document Hierarchy V4.3CR3//EN"
|
||||
"dbhierx.mod">
|
||||
%dbhier;
|
||||
]]>
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
<!-- Other general entities ............................................... -->
|
||||
|
||||
<!ENTITY % dbgenent.module "INCLUDE">
|
||||
<![ %dbgenent.module; [
|
||||
<!ENTITY % dbgenent PUBLIC
|
||||
"-//OASIS//ENTITIES DocBook Additional General Entities V4.3CR3//EN"
|
||||
"dbgenent.mod">
|
||||
%dbgenent;
|
||||
]]>
|
||||
|
||||
<!-- End of DocBook XML DTD V4.3CR3 .......................................... -->
|
||||
<!-- ...................................................................... -->
|
|
@ -1,63 +0,0 @@
|
|||
<!-- iso-amsa.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz
|
||||
With additional derivations from
|
||||
ftp://ftp.unicode.org/Public/MAPPINGS/VENDORS/MISC/SGML.TXT -->
|
||||
|
||||
<!ENTITY cularr "↶"> <!-- ANTICLOCKWISE TOP SEMICIRCLE ARROW -->
|
||||
<!ENTITY curarr "↷"> <!-- CLOCKWISE TOP SEMICIRCLE ARROW -->
|
||||
<!ENTITY dArr "⇓"> <!-- DOWNWARDS DOUBLE ARROW -->
|
||||
<!ENTITY darr2 "⇊"> <!-- DOWNWARDS PAIRED ARROWS -->
|
||||
<!ENTITY dharl "⇃"> <!-- DOWNWARDS HARPOON WITH BARB LEFTWARDS -->
|
||||
<!ENTITY dharr "⇂"> <!-- DOWNWARDS HARPOON WITH BARB RIGHTWARDS -->
|
||||
<!ENTITY lAarr "⇚"> <!-- LEFTWARDS TRIPLE ARROW -->
|
||||
<!ENTITY Larr "↞"> <!-- LEFTWARDS TWO HEADED ARROW -->
|
||||
<!ENTITY larr2 "⇇"> <!-- LEFTWARDS PAIRED ARROWS -->
|
||||
<!ENTITY larrhk "↩"> <!-- LEFTWARDS ARROW WITH HOOK -->
|
||||
<!ENTITY larrlp "↫"> <!-- LEFTWARDS ARROW WITH LOOP -->
|
||||
<!ENTITY larrtl "↢"> <!-- LEFTWARDS ARROW WITH TAIL -->
|
||||
<!ENTITY lhard "↽"> <!-- LEFTWARDS HARPOON WITH BARB DOWNWARDS -->
|
||||
<!ENTITY lharu "↼"> <!-- LEFTWARDS HARPOON WITH BARB UPWARDS -->
|
||||
<!ENTITY hArr "⇔"> <!-- -->
|
||||
<!ENTITY harr "↔"> <!-- LEFT RIGHT ARROW -->
|
||||
<!ENTITY lrarr2 "⇆"> <!-- LEFTWARDS ARROW OVER RIGHTWARDS ARROW -->
|
||||
<!ENTITY rlarr2 "⇄"> <!-- RIGHTWARDS ARROW OVER LEFTWARDS ARROW -->
|
||||
<!ENTITY harrw "↭"> <!-- LEFT RIGHT WAVE ARROW -->
|
||||
<!ENTITY rlhar2 "⇌"> <!-- RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON -->
|
||||
<!ENTITY lrhar2 "⇋"> <!-- LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON -->
|
||||
<!ENTITY lsh "↰"> <!-- UPWARDS ARROW WITH TIP LEFTWARDS -->
|
||||
<!ENTITY map "↦"> <!-- RIGHTWARDS ARROW FROM BAR -->
|
||||
<!ENTITY mumap "⊸"> <!-- MULTIMAP -->
|
||||
<!ENTITY nearr "↗"> <!-- NORTH EAST ARROW -->
|
||||
<!ENTITY nlArr "⇍"> <!-- LEFTWARDS DOUBLE ARROW WITH STROKE -->
|
||||
<!ENTITY nlarr "↚"> <!-- LEFTWARDS ARROW WITH STROKE -->
|
||||
<!ENTITY nhArr "⇎"> <!-- LEFT RIGHT DOUBLE ARROW WITH STROKE -->
|
||||
<!ENTITY nharr "↮"> <!-- LEFT RIGHT ARROW WITH STROKE -->
|
||||
<!ENTITY nrarr "↛"> <!-- RIGHTWARDS ARROW WITH STROKE -->
|
||||
<!ENTITY nrArr "⇏"> <!-- RIGHTWARDS DOUBLE ARROW WITH STROKE -->
|
||||
<!ENTITY nwarr "↖"> <!-- NORTH WEST ARROW -->
|
||||
<!ENTITY olarr "↺"> <!-- ANTICLOCKWISE OPEN CIRCLE ARROW -->
|
||||
<!ENTITY orarr "↻"> <!-- CLOCKWISE OPEN CIRCLE ARROW -->
|
||||
<!ENTITY rAarr "⇛"> <!-- RIGHTWARDS TRIPLE ARROW -->
|
||||
<!ENTITY Rarr "↠"> <!-- RIGHTWARDS TWO HEADED ARROW -->
|
||||
<!ENTITY rarr2 "⇉"> <!-- RIGHTWARDS PAIRED ARROWS -->
|
||||
<!ENTITY rarrhk "↪"> <!-- RIGHTWARDS ARROW WITH HOOK -->
|
||||
<!ENTITY rarrlp "↬"> <!-- RIGHTWARDS ARROW WITH LOOP -->
|
||||
<!ENTITY rarrtl "↣"> <!-- RIGHTWARDS ARROW WITH TAIL -->
|
||||
<!ENTITY rarrw "↝"> <!-- RIGHTWARDS SQUIGGLE ARROW -->
|
||||
<!ENTITY rhard "⇁"> <!-- RIGHTWARDS HARPOON WITH BARB DOWNWARDS -->
|
||||
<!ENTITY rharu "⇀"> <!-- RIGHTWARDS HARPOON WITH BARB UPWARDS -->
|
||||
<!ENTITY rsh "↱"> <!-- UPWARDS ARROW WITH TIP RIGHTWARDS -->
|
||||
<!ENTITY drarr "↘"> <!-- SOUTH EAST ARROW -->
|
||||
<!ENTITY dlarr "↙"> <!-- SOUTH WEST ARROW -->
|
||||
<!ENTITY uArr "⇑"> <!-- UPWARDS DOUBLE ARROW -->
|
||||
<!ENTITY uarr2 "⇈"> <!-- UPWARDS PAIRED ARROWS -->
|
||||
<!ENTITY vArr "⇕"> <!-- UP DOWN DOUBLE ARROW -->
|
||||
<!ENTITY varr "↕"> <!-- UP DOWN ARROW -->
|
||||
<!ENTITY uharl "↿"> <!-- UPWARDS HARPOON WITH BARB LEFTWARDS -->
|
||||
<!ENTITY uharr "↾"> <!-- UPWARDS HARPOON WITH BARB RIGHTWARDS -->
|
||||
<!ENTITY xlArr "⇐"> <!-- LEFTWARDS DOUBLE ARROW -->
|
||||
<!ENTITY xhArr "↔"> <!-- LEFT RIGHT ARROW -->
|
||||
<!ENTITY xharr "↔"> <!-- LEFT RIGHT ARROW -->
|
||||
<!ENTITY xrArr "⇒"> <!-- RIGHTWARDS DOUBLE ARROW -->
|
|
@ -1,49 +0,0 @@
|
|||
<!-- iso-amsb.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz.
|
||||
With additional derivations from
|
||||
ftp://ftp.unicode.org/Public/MAPPINGS/VENDORS/MISC/SGML.TXT -->
|
||||
|
||||
<!ENTITY amalg "∐"> <!-- N-ARY COPRODUCT -->
|
||||
<!ENTITY Barwed "⌆"> <!-- PERSPECTIVE -->
|
||||
<!ENTITY barwed "⊼"> <!-- NAND -->
|
||||
<!ENTITY Cap "⋒"> <!-- DOUBLE INTERSECTION -->
|
||||
<!ENTITY Cup "⋓"> <!-- DOUBLE UNION -->
|
||||
<!ENTITY cuvee "⋎"> <!-- CURLY LOGICAL OR -->
|
||||
<!ENTITY cuwed "⋏"> <!-- CURLY LOGICAL AND -->
|
||||
<!ENTITY diam "⋄"> <!-- DIAMOND OPERATOR -->
|
||||
<!ENTITY divonx "⋇"> <!-- DIVISION TIMES -->
|
||||
<!ENTITY intcal "⊺"> <!-- INTERCALATE -->
|
||||
<!ENTITY lthree "⋋"> <!-- LEFT SEMIDIRECT PRODUCT -->
|
||||
<!ENTITY ltimes "⋉"> <!-- LEFT NORMAL FACTOR SEMIDIRECT PRODUCT -->
|
||||
<!ENTITY minusb "⊟"> <!-- SQUARED MINUS -->
|
||||
<!ENTITY oast "⊛"> <!-- CIRCLED ASTERISK OPERATOR -->
|
||||
<!ENTITY ocir "⊚"> <!-- CIRCLED RING OPERATOR -->
|
||||
<!ENTITY odash "⊝"> <!-- CIRCLED DASH -->
|
||||
<!ENTITY odot "⊙"> <!-- CIRCLED DOT OPERATOR -->
|
||||
<!ENTITY ominus "⊖"> <!-- CIRCLED MINUS -->
|
||||
<!ENTITY oplus "⊕"> <!-- CIRCLED PLUS -->
|
||||
<!ENTITY osol "⊘"> <!-- CIRCLED DIVISION SLASH -->
|
||||
<!ENTITY otimes "⊗"> <!-- CIRCLED TIMES -->
|
||||
<!ENTITY plusb "⊞"> <!-- SQUARED PLUS -->
|
||||
<!ENTITY plusdo "∔"> <!-- DOT PLUS -->
|
||||
<!ENTITY rthree "⋌"> <!-- RIGHT SEMIDIRECT PRODUCT -->
|
||||
<!ENTITY rtimes "⋊"> <!-- RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT -->
|
||||
<!ENTITY sdot "⋅"> <!-- DOT OPERATOR -->
|
||||
<!ENTITY sdotb "⊡"> <!-- SQUARED DOT OPERATOR -->
|
||||
<!ENTITY setmn "∖"> <!-- SET MINUS -->
|
||||
<!ENTITY sqcap "⊓"> <!-- SQUARE CAP -->
|
||||
<!ENTITY sqcup "⊔"> <!-- SQUARE CUP -->
|
||||
<!ENTITY ssetmn "∖"> <!-- SET MINUS -->
|
||||
<!ENTITY sstarf "⋆"> <!-- STAR OPERATOR -->
|
||||
<!ENTITY timesb "⊠"> <!-- SQUARED TIMES -->
|
||||
<!ENTITY top "⊤"> <!-- DOWN TACK -->
|
||||
<!ENTITY uplus "⊎"> <!-- MULTISET UNION -->
|
||||
<!ENTITY wreath "≀"> <!-- WREATH PRODUCT -->
|
||||
<!ENTITY xcirc "○"> <!-- WHITE CIRCLE -->
|
||||
<!ENTITY xdtri "▽"> <!-- WHITE DOWN-POINTING TRIANGLE -->
|
||||
<!ENTITY xutri "△"> <!-- WHITE UP-POINTING TRIANGLE -->
|
||||
<!ENTITY coprod "∐"> <!-- N-ARY COPRODUCT -->
|
||||
<!ENTITY prod "∏"> <!-- N-ARY PRODUCT -->
|
||||
<!ENTITY sum "∑"> <!-- N-ARY SUMMATION -->
|
|
@ -1,15 +0,0 @@
|
|||
<!-- iso-amsc.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz -->
|
||||
|
||||
<!ENTITY rceil "⌉"> <!-- RIGHT CEILING -->
|
||||
<!ENTITY rfloor "⌋"> <!-- RIGHT FLOOR -->
|
||||
<!ENTITY rpargt ""> <!-- -->
|
||||
<!ENTITY urcorn "⌝"> <!-- TOP RIGHT CORNER -->
|
||||
<!ENTITY drcorn "⌟"> <!-- BOTTOM RIGHT CORNER -->
|
||||
<!ENTITY lceil "⌈"> <!-- LEFT CEILING -->
|
||||
<!ENTITY lfloor "⌊"> <!-- LEFT FLOOR -->
|
||||
<!-- lpargt Unknown unicode character -->
|
||||
<!ENTITY ulcorn "⌜"> <!-- TOP LEFT CORNER -->
|
||||
<!ENTITY dlcorn "⌞"> <!-- BOTTOM LEFT CORNER -->
|
|
@ -1,66 +0,0 @@
|
|||
<!-- iso-amsn.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz
|
||||
With additional derivations from
|
||||
ftp://ftp.unicode.org/Public/MAPPINGS/VENDORS/MISC/SGML.TXT -->
|
||||
|
||||
<!ENTITY gnap ""> <!-- -->
|
||||
<!ENTITY gne "≩"> <!-- -->
|
||||
<!ENTITY gnE "≩"> <!-- -->
|
||||
<!ENTITY gnsim "⋧"> <!-- GREATER-THAN BUT NOT EQUIVALENT TO -->
|
||||
<!ENTITY gvnE "≩"> <!-- GREATER-THAN BUT NOT EQUAL TO -->
|
||||
<!ENTITY lnap ""> <!-- -->
|
||||
<!ENTITY lnE "≨"> <!-- -->
|
||||
<!ENTITY lne "≨"> <!-- -->
|
||||
<!ENTITY lnsim "⋦"> <!-- -->
|
||||
<!ENTITY lvnE "≨"> <!-- LESS-THAN BUT NOT EQUAL TO -->
|
||||
<!ENTITY nap "≉"> <!-- NOT ALMOST EQUAL TO -->
|
||||
<!ENTITY ncong "≇"> <!-- NEITHER APPROXIMATELY NOR ACTUALLY EQUAL TO -->
|
||||
<!ENTITY nequiv "≢"> <!-- NOT IDENTICAL TO -->
|
||||
<!ENTITY ngE "≱"> <!-- -->
|
||||
<!ENTITY nge "≱"> <!-- NEITHER GREATER-THAN NOR EQUAL TO -->
|
||||
<!ENTITY nges "≱"> <!-- -->
|
||||
<!ENTITY ngt "≯"> <!-- NOT GREATER-THAN -->
|
||||
<!ENTITY nle "≰"> <!-- NEITHER LESS-THAN NOR EQUAL TO -->
|
||||
<!ENTITY nlE "≰"> <!-- -->
|
||||
<!ENTITY nles "≰"> <!-- -->
|
||||
<!ENTITY nlt "≮"> <!-- NOT LESS-THAN -->
|
||||
<!ENTITY nltri "⋪"> <!-- NOT NORMAL SUBGROUP OF -->
|
||||
<!ENTITY nltrie "⋬"> <!-- NOT NORMAL SUBGROUP OF OR EQUAL TO -->
|
||||
<!ENTITY nmid "∤"> <!-- DOES NOT DIVIDE -->
|
||||
<!ENTITY npar "∦"> <!-- NOT PARALLEL TO -->
|
||||
<!ENTITY npr "⊀"> <!-- DOES NOT PRECEDE -->
|
||||
<!ENTITY npre "⋠"> <!-- DOES NOT PRECEDE OR EQUAL -->
|
||||
<!ENTITY nrtri "⋫"> <!-- DOES NOT CONTAIN AS NORMAL SUBGROUP -->
|
||||
<!ENTITY nrtrie "⋭"> <!-- DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL -->
|
||||
<!ENTITY nsc "⊁"> <!-- DOES NOT SUCCEED -->
|
||||
<!ENTITY nsce "⋡"> <!-- DOES NOT SUCCEED OR EQUAL -->
|
||||
<!ENTITY nsim "≁"> <!-- -->
|
||||
<!ENTITY nsime "≄"> <!-- -->
|
||||
<!ENTITY nsmid ""> <!-- -->
|
||||
<!ENTITY nspar "∦"> <!-- NOT PARALLEL TO -->
|
||||
<!ENTITY nsub "⊄"> <!-- NOT A SUBSET OF -->
|
||||
<!ENTITY nsube "⊈"> <!-- -->
|
||||
<!ENTITY nsubE "⊈"> <!-- -->
|
||||
<!ENTITY nsup "⊅"> <!-- NOT A SUPERSET OF -->
|
||||
<!ENTITY nsupE "⊉"> <!-- -->
|
||||
<!ENTITY nsupe "⊉"> <!-- -->
|
||||
<!ENTITY nvdash "⊬"> <!-- DOES NOT PROVE -->
|
||||
<!ENTITY nvDash "⊭"> <!-- NOT TRUE -->
|
||||
<!ENTITY nVDash "⊯"> <!-- NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE -->
|
||||
<!ENTITY nVdash "⊮"> <!-- DOES NOT FORCE -->
|
||||
<!ENTITY prnap "⋨"> <!-- -->
|
||||
<!ENTITY prnE ""> <!-- -->
|
||||
<!ENTITY prnsim "⋨"> <!-- -->
|
||||
<!ENTITY scnap "⋩"> <!-- -->
|
||||
<!ENTITY scnE ""> <!-- -->
|
||||
<!ENTITY scnsim "⋩"> <!-- -->
|
||||
<!ENTITY subne "⊊"> <!-- -->
|
||||
<!ENTITY subnE "⊊"> <!-- SUBSET OF WITH NOT EQUAL TO -->
|
||||
<!ENTITY supne "⊋"> <!-- -->
|
||||
<!ENTITY supnE "⊋"> <!-- -->
|
||||
<!ENTITY vsubnE ""> <!-- -->
|
||||
<!ENTITY vsubne "⊊"> <!-- SUBSET OF WITH NOT EQUAL TO -->
|
||||
<!ENTITY vsupne "⊋"> <!-- SUPERSET OF WITH NOT EQUAL TO -->
|
||||
<!ENTITY vsupnE "⊋"> <!-- SUPERSET OF WITH NOT EQUAL TO -->
|
|
@ -1,26 +0,0 @@
|
|||
<!-- iso-amso.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz
|
||||
With additional derivations from
|
||||
ftp://ftp.unicode.org/Public/MAPPINGS/VENDORS/MISC/SGML.TXT -->
|
||||
|
||||
<!ENTITY ang "∠"> <!-- ANGLE -->
|
||||
<!ENTITY angmsd "∡"> <!-- MEASURED ANGLE -->
|
||||
<!ENTITY beth "ℶ"> <!-- BET SYMBOL -->
|
||||
<!ENTITY bprime "‵"> <!-- REVERSED PRIME -->
|
||||
<!ENTITY comp "∁"> <!-- COMPLEMENT -->
|
||||
<!ENTITY daleth "ℸ"> <!-- DALET SYMBOL -->
|
||||
<!ENTITY ell "ℓ"> <!-- SCRIPT SMALL L -->
|
||||
<!ENTITY empty "∅"> <!-- -->
|
||||
<!ENTITY gimel "ℷ"> <!-- GIMEL SYMBOL -->
|
||||
<!ENTITY image "ℑ"> <!-- BLACK-LETTER CAPITAL I -->
|
||||
<!ENTITY inodot "ı"> <!-- LATIN SMALL LETTER DOTLESS I -->
|
||||
<!-- jnodot Unknown unicode character -->
|
||||
<!ENTITY nexist "∄"> <!-- THERE DOES NOT EXIST -->
|
||||
<!ENTITY oS "Ⓢ"> <!-- CIRCLED LATIN CAPITAL LETTER S -->
|
||||
<!ENTITY planck "ℏ"> <!-- PLANCK CONSTANT OVER TWO PI -->
|
||||
<!ENTITY real "ℜ"> <!-- BLACK-LETTER CAPITAL R -->
|
||||
<!ENTITY sbsol "﹨"> <!-- SMALL REVERSE SOLIDUS -->
|
||||
<!ENTITY vprime "′"> <!-- PRIME -->
|
||||
<!ENTITY weierp "℘"> <!-- SCRIPT CAPITAL P -->
|
|
@ -1,91 +0,0 @@
|
|||
<!-- iso-amsr.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz.
|
||||
With additional derivations from
|
||||
ftp://ftp.unicode.org/Public/MAPPINGS/VENDORS/MISC/SGML.TXT -->
|
||||
|
||||
<!ENTITY ape "≊"> <!-- -->
|
||||
<!ENTITY asymp "≍"> <!-- EQUIVALENT TO -->
|
||||
<!ENTITY bcong "≌"> <!-- ALL EQUAL TO -->
|
||||
<!ENTITY bepsi "∍"> <!-- SMALL CONTAINS AS MEMBER -->
|
||||
<!ENTITY bowtie "⋈"> <!-- -->
|
||||
<!ENTITY bsim "∽"> <!-- -->
|
||||
<!ENTITY bsime "⋍"> <!-- -->
|
||||
<!ENTITY bump "≎"> <!-- -->
|
||||
<!ENTITY bumpe "≏"> <!-- -->
|
||||
<!ENTITY cire "≗"> <!-- -->
|
||||
<!ENTITY colone "≔"> <!-- -->
|
||||
<!ENTITY cuepr "⋞"> <!-- -->
|
||||
<!ENTITY cuesc "⋟"> <!-- -->
|
||||
<!ENTITY cupre "≼"> <!-- -->
|
||||
<!ENTITY dashv "⊣"> <!-- -->
|
||||
<!ENTITY ecir "≖"> <!-- -->
|
||||
<!ENTITY ecolon "≕"> <!-- -->
|
||||
<!ENTITY eDot "≑"> <!-- -->
|
||||
<!ENTITY esdot "≐"> <!-- -->
|
||||
<!ENTITY efDot "≒"> <!-- -->
|
||||
<!ENTITY egs "⋝"> <!-- -->
|
||||
<!ENTITY els "⋜"> <!-- -->
|
||||
<!ENTITY erDot "≓"> <!-- -->
|
||||
<!ENTITY fork "⋔"> <!-- -->
|
||||
<!ENTITY frown "⌢"> <!-- -->
|
||||
<!ENTITY gap "≳"> <!-- GREATER-THAN OR EQUIVALENT TO -->
|
||||
<!ENTITY gsdot "⋗"> <!-- -->
|
||||
<!ENTITY gE "≧"> <!-- -->
|
||||
<!ENTITY gel "⋛"> <!-- -->
|
||||
<!ENTITY gEl "⋛"> <!-- -->
|
||||
<!ENTITY ges "≥"> <!-- GREATER-THAN OR EQUAL TO -->
|
||||
<!ENTITY Gg "⋙"> <!-- VERY MUCH GREATER-THAN -->
|
||||
<!ENTITY gl "≷"> <!-- -->
|
||||
<!ENTITY gsim "≳"> <!-- GREATER-THAN OR EQUIVALENT TO -->
|
||||
<!ENTITY Gt "≫"> <!-- MUCH GREATER-THAN -->
|
||||
<!ENTITY lap "≲"> <!-- LESS-THAN OR EQUIVALENT TO -->
|
||||
<!ENTITY ldot "⋖"> <!-- -->
|
||||
<!ENTITY lE "≦"> <!-- -->
|
||||
<!ENTITY lEg "⋚"> <!-- -->
|
||||
<!ENTITY leg "⋚"> <!-- -->
|
||||
<!ENTITY les "≤"> <!-- LESS-THAN OR EQUAL TO -->
|
||||
<!ENTITY lg "≶"> <!-- LESS-THAN OR GREATER-THAN -->
|
||||
<!ENTITY Ll "⋘"> <!-- -->
|
||||
<!ENTITY lsim "≲"> <!-- LESS-THAN OR EQUIVALENT TO -->
|
||||
<!ENTITY Lt "≪"> <!-- MUCH LESS-THAN -->
|
||||
<!ENTITY ltrie "⊴"> <!-- -->
|
||||
<!ENTITY mid "∣"> <!-- -->
|
||||
<!ENTITY models "⊧"> <!-- MODELS -->
|
||||
<!ENTITY pr "≺"> <!-- -->
|
||||
<!ENTITY prap "≾"> <!-- -->
|
||||
<!ENTITY pre "≼"> <!-- -->
|
||||
<!ENTITY prsim "≾"> <!-- -->
|
||||
<!ENTITY rtrie "⊵"> <!-- -->
|
||||
<!ENTITY samalg "∐"> <!-- -->
|
||||
<!ENTITY sc "≻"> <!-- -->
|
||||
<!ENTITY scap "≿"> <!-- -->
|
||||
<!ENTITY sccue "≽"> <!-- -->
|
||||
<!ENTITY sce "≽"> <!-- -->
|
||||
<!ENTITY scsim "≿"> <!-- -->
|
||||
<!ENTITY sfrown "⌢"> <!-- FROWN -->
|
||||
<!ENTITY smid ""> <!-- -->
|
||||
<!ENTITY smile "⌣"> <!-- -->
|
||||
<!ENTITY spar "∥"> <!-- PARALLEL TO -->
|
||||
<!ENTITY sqsub "⊏"> <!-- -->
|
||||
<!ENTITY sqsube "⊑"> <!-- -->
|
||||
<!ENTITY sqsup "⊐"> <!-- -->
|
||||
<!ENTITY sqsupe "⊒"> <!-- -->
|
||||
<!ENTITY ssmile "⌣"> <!-- SMILE -->
|
||||
<!ENTITY Sub "⋐"> <!-- -->
|
||||
<!ENTITY subE "⊆"> <!-- -->
|
||||
<!ENTITY Sup "⋑"> <!-- -->
|
||||
<!ENTITY supE "⊇"> <!-- -->
|
||||
<!ENTITY thkap "≈"> <!-- ALMOST EQUAL TO -->
|
||||
<!ENTITY thksim "∼"> <!-- TILDE OPERATOR -->
|
||||
<!ENTITY trie "≜"> <!-- -->
|
||||
<!ENTITY twixt "≬"> <!-- BETWEEN -->
|
||||
<!ENTITY vdash "⊢"> <!-- -->
|
||||
<!ENTITY Vdash "⊩"> <!-- -->
|
||||
<!ENTITY vDash "⊨"> <!-- -->
|
||||
<!ENTITY veebar "⊻"> <!-- -->
|
||||
<!ENTITY vltri "⊲"> <!-- -->
|
||||
<!ENTITY vprop "∝"> <!-- -->
|
||||
<!ENTITY vrtri "⊳"> <!-- -->
|
||||
<!ENTITY Vvdash "⊪"> <!-- -->
|
|
@ -1,45 +0,0 @@
|
|||
<!-- iso-box.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz -->
|
||||
|
||||
<!ENTITY boxh "─"> <!-- BOX DRAWINGS LIGHT HORIZONTAL -->
|
||||
<!ENTITY boxv "│"> <!-- BOX DRAWINGS LIGHT VERTICAL -->
|
||||
<!ENTITY boxur "└"> <!-- BOX DRAWINGS LIGHT UP AND RIGHT -->
|
||||
<!ENTITY boxul "┘"> <!-- BOX DRAWINGS LIGHT UP AND LEFT -->
|
||||
<!ENTITY boxdl "┐"> <!-- BOX DRAWINGS LIGHT DOWN AND LEFT -->
|
||||
<!ENTITY boxdr "┌"> <!-- BOX DRAWINGS LIGHT DOWN AND RIGHT -->
|
||||
<!ENTITY boxvr "├"> <!-- BOX DRAWINGS LIGHT VERTICAL AND RIGHT -->
|
||||
<!ENTITY boxhu "┴"> <!-- BOX DRAWINGS LIGHT UP AND HORIZONTAL -->
|
||||
<!ENTITY boxvl "┤"> <!-- BOX DRAWINGS LIGHT VERTICAL AND LEFT -->
|
||||
<!ENTITY boxhd "┬"> <!-- BOX DRAWINGS LIGHT DOWN AND HORIZONTAL -->
|
||||
<!ENTITY boxvh "┼"> <!-- BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL -->
|
||||
<!ENTITY boxvR "╞"> <!-- BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE -->
|
||||
<!ENTITY boxhU "╧"> <!-- BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE -->
|
||||
<!ENTITY boxvL "╡"> <!-- BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE -->
|
||||
<!ENTITY boxhD "╤"> <!-- BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE -->
|
||||
<!ENTITY boxvH "╪"> <!-- BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE -->
|
||||
<!ENTITY boxH "═"> <!-- BOX DRAWINGS DOUBLE HORIZONTAL -->
|
||||
<!ENTITY boxV "║"> <!-- BOX DRAWINGS DOUBLE VERTICAL -->
|
||||
<!ENTITY boxUR "╘"> <!-- BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE -->
|
||||
<!ENTITY boxUL "╛"> <!-- BOX DRAWINGS UP SINGLE AND LEFT DOUBLE -->
|
||||
<!ENTITY boxDL "╕"> <!-- BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE -->
|
||||
<!ENTITY boxDR "╒"> <!-- BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE -->
|
||||
<!ENTITY boxVR "╟"> <!-- BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE -->
|
||||
<!ENTITY boxHU "╨"> <!-- BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE -->
|
||||
<!ENTITY boxVL "╢"> <!-- BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE -->
|
||||
<!ENTITY boxHD "╥"> <!-- BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE -->
|
||||
<!ENTITY boxVH "╫"> <!-- BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE -->
|
||||
<!ENTITY boxVr "╠"> <!-- BOX DRAWINGS DOUBLE VERTICAL AND RIGHT -->
|
||||
<!ENTITY boxHu "╩"> <!-- BOX DRAWINGS DOUBLE UP AND HORIZONTAL -->
|
||||
<!ENTITY boxVl "╣"> <!-- BOX DRAWINGS DOUBLE VERTICAL AND LEFT -->
|
||||
<!ENTITY boxHd "╦"> <!-- BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL -->
|
||||
<!ENTITY boxVh "╬"> <!-- BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL -->
|
||||
<!ENTITY boxuR "╙"> <!-- BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE -->
|
||||
<!ENTITY boxUl "╜"> <!-- BOX DRAWINGS UP DOUBLE AND LEFT SINGLE -->
|
||||
<!ENTITY boxdL "╖"> <!-- BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE -->
|
||||
<!ENTITY boxDr "╓"> <!-- BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE -->
|
||||
<!ENTITY boxUr "╚"> <!-- BOX DRAWINGS DOUBLE UP AND RIGHT -->
|
||||
<!ENTITY boxuL "╝"> <!-- BOX DRAWINGS DOUBLE UP AND LEFT -->
|
||||
<!ENTITY boxDl "╗"> <!-- BOX DRAWINGS DOUBLE DOWN AND LEFT -->
|
||||
<!ENTITY boxdR "╔"> <!-- BOX DRAWINGS DOUBLE DOWN AND RIGHT -->
|
|
@ -1,72 +0,0 @@
|
|||
<!-- iso-cyr1.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz -->
|
||||
|
||||
<!ENTITY acy "а"> <!-- CYRILLIC SMALL LETTER A -->
|
||||
<!ENTITY Acy "А"> <!-- CYRILLIC CAPITAL LETTER A -->
|
||||
<!ENTITY bcy "б"> <!-- CYRILLIC SMALL LETTER BE -->
|
||||
<!ENTITY Bcy "Б"> <!-- CYRILLIC CAPITAL LETTER BE -->
|
||||
<!ENTITY vcy "в"> <!-- CYRILLIC SMALL LETTER VE -->
|
||||
<!ENTITY Vcy "В"> <!-- CYRILLIC CAPITAL LETTER VE -->
|
||||
<!ENTITY gcy "г"> <!-- CYRILLIC SMALL LETTER GHE -->
|
||||
<!ENTITY Gcy "Г"> <!-- CYRILLIC CAPITAL LETTER GHE -->
|
||||
<!ENTITY dcy "д"> <!-- CYRILLIC SMALL LETTER DE -->
|
||||
<!ENTITY Dcy "Д"> <!-- CYRILLIC CAPITAL LETTER DE -->
|
||||
<!ENTITY iecy "е"> <!-- CYRILLIC SMALL LETTER IE -->
|
||||
<!ENTITY IEcy "Е"> <!-- CYRILLIC CAPITAL LETTER IE -->
|
||||
<!ENTITY iocy "ё"> <!-- CYRILLIC SMALL LETTER IO -->
|
||||
<!ENTITY IOcy "Ё"> <!-- CYRILLIC CAPITAL LETTER IO -->
|
||||
<!ENTITY zhcy "ж"> <!-- CYRILLIC SMALL LETTER ZHE -->
|
||||
<!ENTITY ZHcy "Ж"> <!-- CYRILLIC CAPITAL LETTER ZHE -->
|
||||
<!ENTITY zcy "з"> <!-- CYRILLIC SMALL LETTER ZE -->
|
||||
<!ENTITY Zcy "З"> <!-- CYRILLIC CAPITAL LETTER ZE -->
|
||||
<!ENTITY icy "и"> <!-- CYRILLIC SMALL LETTER I -->
|
||||
<!ENTITY Icy "И"> <!-- CYRILLIC CAPITAL LETTER I -->
|
||||
<!ENTITY jcy "й"> <!-- CYRILLIC SMALL LETTER SHORT I -->
|
||||
<!ENTITY Jcy "Й"> <!-- CYRILLIC CAPITAL LETTER SHORT I -->
|
||||
<!ENTITY kcy "к"> <!-- CYRILLIC SMALL LETTER KA -->
|
||||
<!ENTITY Kcy "К"> <!-- CYRILLIC CAPITAL LETTER KA -->
|
||||
<!ENTITY lcy "л"> <!-- CYRILLIC SMALL LETTER EL -->
|
||||
<!ENTITY Lcy "Л"> <!-- CYRILLIC CAPITAL LETTER EL -->
|
||||
<!ENTITY mcy "м"> <!-- CYRILLIC SMALL LETTER EM -->
|
||||
<!ENTITY Mcy "М"> <!-- CYRILLIC CAPITAL LETTER EM -->
|
||||
<!ENTITY ncy "н"> <!-- CYRILLIC SMALL LETTER EN -->
|
||||
<!ENTITY Ncy "Н"> <!-- CYRILLIC CAPITAL LETTER EN -->
|
||||
<!ENTITY ocy "о"> <!-- CYRILLIC SMALL LETTER O -->
|
||||
<!ENTITY Ocy "О"> <!-- CYRILLIC CAPITAL LETTER O -->
|
||||
<!ENTITY pcy "п"> <!-- CYRILLIC SMALL LETTER PE -->
|
||||
<!ENTITY Pcy "П"> <!-- CYRILLIC CAPITAL LETTER PE -->
|
||||
<!ENTITY rcy "р"> <!-- CYRILLIC SMALL LETTER ER -->
|
||||
<!ENTITY Rcy "Р"> <!-- CYRILLIC CAPITAL LETTER ER -->
|
||||
<!ENTITY scy "с"> <!-- CYRILLIC SMALL LETTER ES -->
|
||||
<!ENTITY Scy "С"> <!-- CYRILLIC CAPITAL LETTER ES -->
|
||||
<!ENTITY tcy "т"> <!-- CYRILLIC SMALL LETTER TE -->
|
||||
<!ENTITY Tcy "Т"> <!-- CYRILLIC CAPITAL LETTER TE -->
|
||||
<!ENTITY ucy "у"> <!-- CYRILLIC SMALL LETTER U -->
|
||||
<!ENTITY Ucy "У"> <!-- CYRILLIC CAPITAL LETTER U -->
|
||||
<!ENTITY fcy "ф"> <!-- CYRILLIC SMALL LETTER EF -->
|
||||
<!ENTITY Fcy "Ф"> <!-- CYRILLIC CAPITAL LETTER EF -->
|
||||
<!ENTITY khcy "х"> <!-- CYRILLIC SMALL LETTER HA -->
|
||||
<!ENTITY KHcy "Х"> <!-- CYRILLIC CAPITAL LETTER HA -->
|
||||
<!ENTITY tscy "ц"> <!-- CYRILLIC SMALL LETTER TSE -->
|
||||
<!ENTITY TScy "Ц"> <!-- CYRILLIC CAPITAL LETTER TSE -->
|
||||
<!ENTITY chcy "ч"> <!-- CYRILLIC SMALL LETTER CHE -->
|
||||
<!ENTITY CHcy "Ч"> <!-- CYRILLIC CAPITAL LETTER CHE -->
|
||||
<!ENTITY shcy "ш"> <!-- CYRILLIC SMALL LETTER SHA -->
|
||||
<!ENTITY SHcy "Ш"> <!-- CYRILLIC CAPITAL LETTER SHA -->
|
||||
<!ENTITY shchcy "щ"> <!-- CYRILLIC SMALL LETTER SHCHA -->
|
||||
<!ENTITY SHCHcy "Щ"> <!-- CYRILLIC CAPITAL LETTER SHCHA -->
|
||||
<!ENTITY hardcy "ъ"> <!-- CYRILLIC SMALL LETTER HARD SIGN -->
|
||||
<!ENTITY HARDcy "Ъ"> <!-- CYRILLIC CAPITAL LETTER HARD SIGN -->
|
||||
<!ENTITY ycy "ы"> <!-- CYRILLIC SMALL LETTER YERU -->
|
||||
<!ENTITY Ycy "Ы"> <!-- CYRILLIC CAPITAL LETTER YERU -->
|
||||
<!ENTITY softcy "ь"> <!-- CYRILLIC SMALL LETTER SOFT SIGN -->
|
||||
<!ENTITY SOFTcy "Ь"> <!-- CYRILLIC CAPITAL LETTER SOFT SIGN -->
|
||||
<!ENTITY ecy "э"> <!-- CYRILLIC SMALL LETTER E -->
|
||||
<!ENTITY Ecy "Э"> <!-- CYRILLIC CAPITAL LETTER E -->
|
||||
<!ENTITY yucy "ю"> <!-- CYRILLIC SMALL LETTER YU -->
|
||||
<!ENTITY YUcy "Ю"> <!-- CYRILLIC CAPITAL LETTER YU -->
|
||||
<!ENTITY yacy "я"> <!-- CYRILLIC SMALL LETTER YA -->
|
||||
<!ENTITY YAcy "Я"> <!-- CYRILLIC CAPITAL LETTER YA -->
|
||||
<!ENTITY numero "№"> <!-- NUMERO SIGN -->
|
|
@ -1,31 +0,0 @@
|
|||
<!-- iso-cyr2.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz -->
|
||||
|
||||
<!ENTITY djcy "ђ"> <!-- CYRILLIC SMALL LETTER DJE -->
|
||||
<!ENTITY DJcy "Ђ"> <!-- CYRILLIC CAPITAL LETTER DJE -->
|
||||
<!ENTITY gjcy "ѓ"> <!-- CYRILLIC SMALL LETTER GJE -->
|
||||
<!ENTITY GJcy "Ѓ"> <!-- CYRILLIC CAPITAL LETTER GJE -->
|
||||
<!ENTITY jukcy "є"> <!-- CYRILLIC SMALL LETTER UKRAINIAN IE -->
|
||||
<!ENTITY Jukcy "Є"> <!-- CYRILLIC CAPITAL LETTER UKRAINIAN IE -->
|
||||
<!ENTITY dscy "ѕ"> <!-- CYRILLIC SMALL LETTER DZE -->
|
||||
<!ENTITY DScy "Ѕ"> <!-- CYRILLIC CAPITAL LETTER DZE -->
|
||||
<!ENTITY iukcy "і"> <!-- CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I -->
|
||||
<!ENTITY Iukcy "І"> <!-- CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I -->
|
||||
<!ENTITY yicy "ї"> <!-- CYRILLIC SMALL LETTER YI -->
|
||||
<!ENTITY YIcy "Ї"> <!-- CYRILLIC CAPITAL LETTER YI -->
|
||||
<!ENTITY jsercy "ј"> <!-- CYRILLIC SMALL LETTER JE -->
|
||||
<!ENTITY Jsercy "Ј"> <!-- CYRILLIC CAPITAL LETTER JE -->
|
||||
<!ENTITY ljcy "љ"> <!-- CYRILLIC SMALL LETTER LJE -->
|
||||
<!ENTITY LJcy "Љ"> <!-- CYRILLIC CAPITAL LETTER LJE -->
|
||||
<!ENTITY njcy "њ"> <!-- CYRILLIC SMALL LETTER NJE -->
|
||||
<!ENTITY NJcy "Њ"> <!-- CYRILLIC CAPITAL LETTER NJE -->
|
||||
<!ENTITY tshcy "ћ"> <!-- CYRILLIC SMALL LETTER TSHE -->
|
||||
<!ENTITY TSHcy "Ћ"> <!-- CYRILLIC CAPITAL LETTER TSHE -->
|
||||
<!ENTITY kjcy "ќ"> <!-- CYRILLIC SMALL LETTER KJE -->
|
||||
<!ENTITY KJcy "Ќ"> <!-- CYRILLIC CAPITAL LETTER KJE -->
|
||||
<!ENTITY ubrcy "ў"> <!-- CYRILLIC SMALL LETTER SHORT U -->
|
||||
<!ENTITY Ubrcy "Ў"> <!-- CYRILLIC CAPITAL LETTER SHORT U -->
|
||||
<!ENTITY dzcy "џ"> <!-- CYRILLIC SMALL LETTER DZHE -->
|
||||
<!ENTITY DZcy "Џ"> <!-- CYRILLIC CAPITAL LETTER DZHE -->
|
|
@ -1,19 +0,0 @@
|
|||
<!-- iso-dia.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz -->
|
||||
|
||||
<!ENTITY acute "´"> <!-- ACUTE ACCENT -->
|
||||
<!ENTITY breve "˘"> <!-- BREVE -->
|
||||
<!ENTITY caron "ˇ"> <!-- CARON -->
|
||||
<!ENTITY cedil "¸"> <!-- CEDILLA -->
|
||||
<!ENTITY circ "^"> <!-- RING OPERATOR -->
|
||||
<!ENTITY dblac "˝"> <!-- DOUBLE ACUTE ACCENT -->
|
||||
<!ENTITY die "¨"> <!-- -->
|
||||
<!ENTITY dot "˙"> <!-- DOT ABOVE -->
|
||||
<!ENTITY grave "`"> <!-- GRAVE ACCENT -->
|
||||
<!ENTITY macr "¯"> <!-- MACRON -->
|
||||
<!ENTITY ogon "˛"> <!-- OGONEK -->
|
||||
<!ENTITY ring "˚"> <!-- RING ABOVE -->
|
||||
<!ENTITY tilde "˜"> <!-- TILDE -->
|
||||
<!ENTITY uml "¨"> <!-- -->
|
|
@ -1,54 +0,0 @@
|
|||
<!-- iso-grk1.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz -->
|
||||
|
||||
<!ENTITY agr "α"> <!-- -->
|
||||
<!ENTITY Agr "Α"> <!-- GREEK CAPITAL LETTER ALPHA -->
|
||||
<!ENTITY bgr "β"> <!-- GREEK SMALL LETTER BETA -->
|
||||
<!ENTITY Bgr "Β"> <!-- GREEK CAPITAL LETTER BETA -->
|
||||
<!ENTITY ggr "γ"> <!-- GREEK SMALL LETTER GAMMA -->
|
||||
<!ENTITY Ggr "Γ"> <!-- GREEK CAPITAL LETTER GAMMA -->
|
||||
<!ENTITY dgr "δ"> <!-- GREEK SMALL LETTER DELTA -->
|
||||
<!ENTITY Dgr "Δ"> <!-- GREEK CAPITAL LETTER DELTA -->
|
||||
<!ENTITY egr "ε"> <!-- -->
|
||||
<!ENTITY Egr "Ε"> <!-- GREEK CAPITAL LETTER EPSILON -->
|
||||
<!ENTITY zgr "ζ"> <!-- GREEK SMALL LETTER ZETA -->
|
||||
<!ENTITY Zgr "Ζ"> <!-- GREEK CAPITAL LETTER ZETA -->
|
||||
<!ENTITY eegr "η"> <!-- GREEK SMALL LETTER ETA -->
|
||||
<!ENTITY EEgr "Η"> <!-- GREEK CAPITAL LETTER ETA -->
|
||||
<!ENTITY thgr "θ"> <!-- -->
|
||||
<!ENTITY THgr "Θ"> <!-- GREEK CAPITAL LETTER THETA -->
|
||||
<!ENTITY igr "ι"> <!-- GREEK SMALL LETTER IOTA -->
|
||||
<!ENTITY Igr "Ι"> <!-- GREEK CAPITAL LETTER IOTA -->
|
||||
<!ENTITY kgr "κ"> <!-- GREEK SMALL LETTER KAPPA -->
|
||||
<!ENTITY Kgr "Κ"> <!-- GREEK CAPITAL LETTER KAPPA -->
|
||||
<!ENTITY lgr "λ"> <!-- GREEK SMALL LETTER LAMDA -->
|
||||
<!ENTITY Lgr "Λ"> <!-- GREEK CAPITAL LETTER LAMDA -->
|
||||
<!ENTITY mgr "μ"> <!-- GREEK SMALL LETTER MU -->
|
||||
<!ENTITY Mgr "Μ"> <!-- GREEK CAPITAL LETTER MU -->
|
||||
<!ENTITY ngr "ν"> <!-- GREEK SMALL LETTER NU -->
|
||||
<!ENTITY Ngr "Ν"> <!-- GREEK CAPITAL LETTER NU -->
|
||||
<!ENTITY xgr "ξ"> <!-- GREEK SMALL LETTER XI -->
|
||||
<!ENTITY Xgr "Ξ"> <!-- GREEK CAPITAL LETTER XI -->
|
||||
<!ENTITY ogr "ο"> <!-- GREEK SMALL LETTER OMICRON -->
|
||||
<!ENTITY Ogr "Ο"> <!-- GREEK CAPITAL LETTER OMICRON -->
|
||||
<!ENTITY pgr "π"> <!-- GREEK SMALL LETTER PI -->
|
||||
<!ENTITY Pgr "Π"> <!-- GREEK CAPITAL LETTER PI -->
|
||||
<!ENTITY rgr "ρ"> <!-- GREEK SMALL LETTER RHO -->
|
||||
<!ENTITY Rgr "Ρ"> <!-- GREEK CAPITAL LETTER RHO -->
|
||||
<!ENTITY sgr "σ"> <!-- GREEK SMALL LETTER SIGMA -->
|
||||
<!ENTITY Sgr "Σ"> <!-- GREEK CAPITAL LETTER SIGMA -->
|
||||
<!ENTITY sfgr "ς"> <!-- -->
|
||||
<!ENTITY tgr "τ"> <!-- GREEK SMALL LETTER TAU -->
|
||||
<!ENTITY Tgr "Τ"> <!-- GREEK CAPITAL LETTER TAU -->
|
||||
<!ENTITY ugr "υ"> <!-- GREEK SMALL LETTER UPSILON -->
|
||||
<!ENTITY Ugr "Υ"> <!-- -->
|
||||
<!ENTITY phgr "φ"> <!-- GREEK SMALL LETTER PHI -->
|
||||
<!ENTITY PHgr "Φ"> <!-- GREEK CAPITAL LETTER PHI -->
|
||||
<!ENTITY khgr "χ"> <!-- GREEK SMALL LETTER CHI -->
|
||||
<!ENTITY KHgr "Χ"> <!-- GREEK CAPITAL LETTER CHI -->
|
||||
<!ENTITY psgr "ψ"> <!-- GREEK SMALL LETTER PSI -->
|
||||
<!ENTITY PSgr "Ψ"> <!-- GREEK CAPITAL LETTER PSI -->
|
||||
<!ENTITY ohgr "ω"> <!-- GREEK SMALL LETTER OMEGA -->
|
||||
<!ENTITY OHgr "Ω"> <!-- GREEK CAPITAL LETTER OMEGA -->
|
|
@ -1,25 +0,0 @@
|
|||
<!-- iso-grk2.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz -->
|
||||
|
||||
<!ENTITY aacgr "ά"> <!-- GREEK SMALL LETTER ALPHA WITH TONOS -->
|
||||
<!ENTITY Aacgr "Ά"> <!-- GREEK CAPITAL LETTER ALPHA WITH TONOS -->
|
||||
<!ENTITY eacgr "έ"> <!-- GREEK SMALL LETTER EPSILON WITH TONOS -->
|
||||
<!ENTITY Eacgr "Έ"> <!-- GREEK CAPITAL LETTER EPSILON WITH TONOS -->
|
||||
<!ENTITY eeacgr "ή"> <!-- GREEK SMALL LETTER ETA WITH TONOS -->
|
||||
<!ENTITY EEacgr "Ή"> <!-- GREEK CAPITAL LETTER ETA WITH TONOS -->
|
||||
<!ENTITY idigr "ϊ"> <!-- GREEK SMALL LETTER IOTA WITH DIALYTIKA -->
|
||||
<!ENTITY Idigr "Ϊ"> <!-- GREEK CAPITAL LETTER IOTA WITH DIALYTIKA -->
|
||||
<!ENTITY iacgr "ί"> <!-- GREEK SMALL LETTER IOTA WITH TONOS -->
|
||||
<!ENTITY Iacgr "Ί"> <!-- GREEK CAPITAL LETTER IOTA WITH TONOS -->
|
||||
<!ENTITY idiagr "ΐ"> <!-- GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS -->
|
||||
<!ENTITY oacgr "ό"> <!-- GREEK SMALL LETTER OMICRON WITH TONOS -->
|
||||
<!ENTITY Oacgr "Ό"> <!-- GREEK CAPITAL LETTER OMICRON WITH TONOS -->
|
||||
<!ENTITY udigr "ϋ"> <!-- GREEK SMALL LETTER UPSILON WITH DIALYTIKA -->
|
||||
<!ENTITY Udigr "Ϋ"> <!-- GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA -->
|
||||
<!ENTITY uacgr "ύ"> <!-- GREEK SMALL LETTER UPSILON WITH TONOS -->
|
||||
<!ENTITY Uacgr "Ύ"> <!-- GREEK CAPITAL LETTER UPSILON WITH TONOS -->
|
||||
<!ENTITY udiagr "ΰ"> <!-- GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS -->
|
||||
<!ENTITY ohacgr "ώ"> <!-- GREEK SMALL LETTER OMEGA WITH TONOS -->
|
||||
<!ENTITY OHacgr "Ώ"> <!-- GREEK CAPITAL LETTER OMEGA WITH TONOS -->
|
|
@ -1,48 +0,0 @@
|
|||
<!-- iso-grk3.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz -->
|
||||
|
||||
<!ENTITY alpha "α"> <!-- -->
|
||||
<!ENTITY beta "β"> <!-- GREEK SMALL LETTER BETA -->
|
||||
<!ENTITY gamma "γ"> <!-- GREEK SMALL LETTER GAMMA -->
|
||||
<!ENTITY Gamma "Γ"> <!-- GREEK CAPITAL LETTER GAMMA -->
|
||||
<!ENTITY gammad "Ϝ"> <!-- GREEK LETTER DIGAMMA -->
|
||||
<!ENTITY delta "δ"> <!-- GREEK SMALL LETTER DELTA -->
|
||||
<!ENTITY Delta "Δ"> <!-- GREEK CAPITAL LETTER DELTA -->
|
||||
<!ENTITY epsi "∊"> <!-- -->
|
||||
<!ENTITY epsiv "ε"> <!-- -->
|
||||
<!ENTITY epsis "∊"> <!-- -->
|
||||
<!ENTITY zeta "ζ"> <!-- GREEK SMALL LETTER ZETA -->
|
||||
<!ENTITY eta "η"> <!-- GREEK SMALL LETTER ETA -->
|
||||
<!ENTITY thetas "θ"> <!-- -->
|
||||
<!ENTITY Theta "Θ"> <!-- GREEK CAPITAL LETTER THETA -->
|
||||
<!ENTITY thetav "ϑ"> <!-- -->
|
||||
<!ENTITY iota "ι"> <!-- GREEK SMALL LETTER IOTA -->
|
||||
<!ENTITY kappa "κ"> <!-- GREEK SMALL LETTER KAPPA -->
|
||||
<!ENTITY kappav "ϰ"> <!-- GREEK KAPPA SYMBOL -->
|
||||
<!ENTITY lambda "λ"> <!-- GREEK SMALL LETTER LAMDA -->
|
||||
<!ENTITY Lambda "Λ"> <!-- GREEK CAPITAL LETTER LAMDA -->
|
||||
<!ENTITY mu "μ"> <!-- GREEK SMALL LETTER MU -->
|
||||
<!ENTITY nu "ν"> <!-- GREEK SMALL LETTER NU -->
|
||||
<!ENTITY xi "ξ"> <!-- GREEK SMALL LETTER XI -->
|
||||
<!ENTITY Xi "Ξ"> <!-- GREEK CAPITAL LETTER XI -->
|
||||
<!ENTITY pi "π"> <!-- GREEK SMALL LETTER PI -->
|
||||
<!ENTITY piv "ϖ"> <!-- GREEK PI SYMBOL -->
|
||||
<!ENTITY Pi "Π"> <!-- GREEK CAPITAL LETTER PI -->
|
||||
<!ENTITY rho "ρ"> <!-- GREEK SMALL LETTER RHO -->
|
||||
<!ENTITY rhov "ϱ"> <!-- GREEK RHO SYMBOL -->
|
||||
<!ENTITY sigma "σ"> <!-- GREEK SMALL LETTER SIGMA -->
|
||||
<!ENTITY Sigma "Σ"> <!-- GREEK CAPITAL LETTER SIGMA -->
|
||||
<!ENTITY sigmav "ς"> <!-- -->
|
||||
<!ENTITY tau "τ"> <!-- GREEK SMALL LETTER TAU -->
|
||||
<!ENTITY upsi "υ"> <!-- GREEK SMALL LETTER UPSILON -->
|
||||
<!ENTITY Upsi "ϒ"> <!-- -->
|
||||
<!ENTITY phis "φ"> <!-- GREEK SMALL LETTER PHI -->
|
||||
<!ENTITY Phi "Φ"> <!-- GREEK CAPITAL LETTER PHI -->
|
||||
<!ENTITY phiv "ϕ"> <!-- GREEK PHI SYMBOL -->
|
||||
<!ENTITY chi "χ"> <!-- GREEK SMALL LETTER CHI -->
|
||||
<!ENTITY psi "ψ"> <!-- GREEK SMALL LETTER PSI -->
|
||||
<!ENTITY Psi "Ψ"> <!-- GREEK CAPITAL LETTER PSI -->
|
||||
<!ENTITY omega "ω"> <!-- GREEK SMALL LETTER OMEGA -->
|
||||
<!ENTITY Omega "Ω"> <!-- GREEK CAPITAL LETTER OMEGA -->
|
|
@ -1,48 +0,0 @@
|
|||
<!-- iso-grk4.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz -->
|
||||
|
||||
<!ENTITY b.alpha "α"> <!-- -->
|
||||
<!ENTITY b.beta "β"> <!-- GREEK SMALL LETTER BETA -->
|
||||
<!ENTITY b.gamma "γ"> <!-- GREEK SMALL LETTER GAMMA -->
|
||||
<!ENTITY b.Gamma "Γ"> <!-- GREEK CAPITAL LETTER GAMMA -->
|
||||
<!ENTITY b.gammad "Ϝ"> <!-- GREEK LETTER DIGAMMA -->
|
||||
<!ENTITY b.delta "δ"> <!-- GREEK SMALL LETTER DELTA -->
|
||||
<!ENTITY b.Delta "Δ"> <!-- GREEK CAPITAL LETTER DELTA -->
|
||||
<!ENTITY b.epsi "ε"> <!-- -->
|
||||
<!ENTITY b.epsiv "ε"> <!-- -->
|
||||
<!ENTITY b.epsis "ε"> <!-- -->
|
||||
<!ENTITY b.zeta "ζ"> <!-- GREEK SMALL LETTER ZETA -->
|
||||
<!ENTITY b.eta "η"> <!-- GREEK SMALL LETTER ETA -->
|
||||
<!ENTITY b.thetas "θ"> <!-- -->
|
||||
<!ENTITY b.Theta "Θ"> <!-- GREEK CAPITAL LETTER THETA -->
|
||||
<!ENTITY b.thetav "ϑ"> <!-- -->
|
||||
<!ENTITY b.iota "ι"> <!-- GREEK SMALL LETTER IOTA -->
|
||||
<!ENTITY b.kappa "κ"> <!-- GREEK SMALL LETTER KAPPA -->
|
||||
<!ENTITY b.kappav "ϰ"> <!-- GREEK KAPPA SYMBOL -->
|
||||
<!ENTITY b.lambda "λ"> <!-- GREEK SMALL LETTER LAMDA -->
|
||||
<!ENTITY b.Lambda "Λ"> <!-- GREEK CAPITAL LETTER LAMDA -->
|
||||
<!ENTITY b.mu "μ"> <!-- GREEK SMALL LETTER MU -->
|
||||
<!ENTITY b.nu "ν"> <!-- GREEK SMALL LETTER NU -->
|
||||
<!ENTITY b.xi "ξ"> <!-- GREEK SMALL LETTER XI -->
|
||||
<!ENTITY b.Xi "Ξ"> <!-- GREEK CAPITAL LETTER XI -->
|
||||
<!ENTITY b.pi "π"> <!-- GREEK SMALL LETTER PI -->
|
||||
<!ENTITY b.Pi "Π"> <!-- GREEK CAPITAL LETTER PI -->
|
||||
<!ENTITY b.piv "ϖ"> <!-- GREEK PI SYMBOL -->
|
||||
<!ENTITY b.rho "ρ"> <!-- GREEK SMALL LETTER RHO -->
|
||||
<!ENTITY b.rhov "ϱ"> <!-- GREEK RHO SYMBOL -->
|
||||
<!ENTITY b.sigma "σ"> <!-- GREEK SMALL LETTER SIGMA -->
|
||||
<!ENTITY b.Sigma "Σ"> <!-- GREEK CAPITAL LETTER SIGMA -->
|
||||
<!ENTITY b.sigmav "ς"> <!-- -->
|
||||
<!ENTITY b.tau "τ"> <!-- GREEK SMALL LETTER TAU -->
|
||||
<!ENTITY b.upsi "υ"> <!-- GREEK SMALL LETTER UPSILON -->
|
||||
<!ENTITY b.Upsi "ϒ"> <!-- -->
|
||||
<!ENTITY b.phis "φ"> <!-- GREEK SMALL LETTER PHI -->
|
||||
<!ENTITY b.Phi "Φ"> <!-- GREEK CAPITAL LETTER PHI -->
|
||||
<!ENTITY b.phiv "ϕ"> <!-- GREEK PHI SYMBOL -->
|
||||
<!ENTITY b.chi "χ"> <!-- GREEK SMALL LETTER CHI -->
|
||||
<!ENTITY b.psi "ψ"> <!-- GREEK SMALL LETTER PSI -->
|
||||
<!ENTITY b.Psi "Ψ"> <!-- GREEK CAPITAL LETTER PSI -->
|
||||
<!ENTITY b.omega "ω"> <!-- GREEK SMALL LETTER OMEGA -->
|
||||
<!ENTITY b.Omega "Ω"> <!-- GREEK CAPITAL LETTER OMEGA -->
|
|
@ -1,67 +0,0 @@
|
|||
<!-- iso-lat1.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz -->
|
||||
|
||||
<!ENTITY aacute "á"> <!-- LATIN SMALL LETTER A WITH ACUTE -->
|
||||
<!ENTITY Aacute "Á"> <!-- LATIN CAPITAL LETTER A WITH ACUTE -->
|
||||
<!ENTITY acirc "â"> <!-- LATIN SMALL LETTER A WITH CIRCUMFLEX -->
|
||||
<!ENTITY Acirc "Â"> <!-- LATIN CAPITAL LETTER A WITH CIRCUMFLEX -->
|
||||
<!ENTITY agrave "à"> <!-- LATIN SMALL LETTER A WITH GRAVE -->
|
||||
<!ENTITY Agrave "À"> <!-- LATIN CAPITAL LETTER A WITH GRAVE -->
|
||||
<!ENTITY aring "å"> <!-- LATIN SMALL LETTER A WITH RING ABOVE -->
|
||||
<!ENTITY Aring "Å"> <!-- LATIN CAPITAL LETTER A WITH RING ABOVE -->
|
||||
<!ENTITY atilde "ã"> <!-- LATIN SMALL LETTER A WITH TILDE -->
|
||||
<!ENTITY Atilde "Ã"> <!-- LATIN CAPITAL LETTER A WITH TILDE -->
|
||||
<!ENTITY auml "ä"> <!-- LATIN SMALL LETTER A WITH DIAERESIS -->
|
||||
<!ENTITY Auml "Ä"> <!-- LATIN CAPITAL LETTER A WITH DIAERESIS -->
|
||||
<!ENTITY aelig "æ"> <!-- LATIN SMALL LETTER AE -->
|
||||
<!ENTITY AElig "Æ"> <!-- LATIN CAPITAL LETTER AE -->
|
||||
<!ENTITY ccedil "ç"> <!-- LATIN SMALL LETTER C WITH CEDILLA -->
|
||||
<!ENTITY Ccedil "Ç"> <!-- LATIN CAPITAL LETTER C WITH CEDILLA -->
|
||||
<!ENTITY eth "ð"> <!-- LATIN SMALL LETTER ETH -->
|
||||
<!ENTITY ETH "Ð"> <!-- LATIN CAPITAL LETTER ETH -->
|
||||
<!ENTITY eacute "é"> <!-- LATIN SMALL LETTER E WITH ACUTE -->
|
||||
<!ENTITY Eacute "É"> <!-- LATIN CAPITAL LETTER E WITH ACUTE -->
|
||||
<!ENTITY ecirc "ê"> <!-- LATIN SMALL LETTER E WITH CIRCUMFLEX -->
|
||||
<!ENTITY Ecirc "Ê"> <!-- LATIN CAPITAL LETTER E WITH CIRCUMFLEX -->
|
||||
<!ENTITY egrave "è"> <!-- LATIN SMALL LETTER E WITH GRAVE -->
|
||||
<!ENTITY Egrave "È"> <!-- LATIN CAPITAL LETTER E WITH GRAVE -->
|
||||
<!ENTITY euml "ë"> <!-- LATIN SMALL LETTER E WITH DIAERESIS -->
|
||||
<!ENTITY Euml "Ë"> <!-- LATIN CAPITAL LETTER E WITH DIAERESIS -->
|
||||
<!ENTITY iacute "í"> <!-- LATIN SMALL LETTER I WITH ACUTE -->
|
||||
<!ENTITY Iacute "Í"> <!-- LATIN CAPITAL LETTER I WITH ACUTE -->
|
||||
<!ENTITY icirc "î"> <!-- LATIN SMALL LETTER I WITH CIRCUMFLEX -->
|
||||
<!ENTITY Icirc "Î"> <!-- LATIN CAPITAL LETTER I WITH CIRCUMFLEX -->
|
||||
<!ENTITY igrave "ì"> <!-- LATIN SMALL LETTER I WITH GRAVE -->
|
||||
<!ENTITY Igrave "Ì"> <!-- LATIN CAPITAL LETTER I WITH GRAVE -->
|
||||
<!ENTITY iuml "ï"> <!-- LATIN SMALL LETTER I WITH DIAERESIS -->
|
||||
<!ENTITY Iuml "Ï"> <!-- LATIN CAPITAL LETTER I WITH DIAERESIS -->
|
||||
<!ENTITY ntilde "ñ"> <!-- LATIN SMALL LETTER N WITH TILDE -->
|
||||
<!ENTITY Ntilde "Ñ"> <!-- LATIN CAPITAL LETTER N WITH TILDE -->
|
||||
<!ENTITY oacute "ó"> <!-- LATIN SMALL LETTER O WITH ACUTE -->
|
||||
<!ENTITY Oacute "Ó"> <!-- LATIN CAPITAL LETTER O WITH ACUTE -->
|
||||
<!ENTITY ocirc "ô"> <!-- LATIN SMALL LETTER O WITH CIRCUMFLEX -->
|
||||
<!ENTITY Ocirc "Ô"> <!-- LATIN CAPITAL LETTER O WITH CIRCUMFLEX -->
|
||||
<!ENTITY ograve "ò"> <!-- LATIN SMALL LETTER O WITH GRAVE -->
|
||||
<!ENTITY Ograve "Ò"> <!-- LATIN CAPITAL LETTER O WITH GRAVE -->
|
||||
<!ENTITY oslash "ø"> <!-- CIRCLED DIVISION SLASH -->
|
||||
<!ENTITY Oslash "Ø"> <!-- LATIN CAPITAL LETTER O WITH STROKE -->
|
||||
<!ENTITY otilde "õ"> <!-- LATIN SMALL LETTER O WITH TILDE -->
|
||||
<!ENTITY Otilde "Õ"> <!-- LATIN CAPITAL LETTER O WITH TILDE -->
|
||||
<!ENTITY ouml "ö"> <!-- LATIN SMALL LETTER O WITH DIAERESIS -->
|
||||
<!ENTITY Ouml "Ö"> <!-- LATIN CAPITAL LETTER O WITH DIAERESIS -->
|
||||
<!ENTITY szlig "ß"> <!-- LATIN SMALL LETTER SHARP S -->
|
||||
<!ENTITY thorn "þ"> <!-- LATIN SMALL LETTER THORN -->
|
||||
<!ENTITY THORN "Þ"> <!-- LATIN CAPITAL LETTER THORN -->
|
||||
<!ENTITY uacute "ú"> <!-- LATIN SMALL LETTER U WITH ACUTE -->
|
||||
<!ENTITY Uacute "Ú"> <!-- LATIN CAPITAL LETTER U WITH ACUTE -->
|
||||
<!ENTITY ucirc "û"> <!-- LATIN SMALL LETTER U WITH CIRCUMFLEX -->
|
||||
<!ENTITY Ucirc "Û"> <!-- LATIN CAPITAL LETTER U WITH CIRCUMFLEX -->
|
||||
<!ENTITY ugrave "ù"> <!-- LATIN SMALL LETTER U WITH GRAVE -->
|
||||
<!ENTITY Ugrave "Ù"> <!-- LATIN CAPITAL LETTER U WITH GRAVE -->
|
||||
<!ENTITY uuml "ü"> <!-- LATIN SMALL LETTER U WITH DIAERESIS -->
|
||||
<!ENTITY Uuml "Ü"> <!-- LATIN CAPITAL LETTER U WITH DIAERESIS -->
|
||||
<!ENTITY yacute "ý"> <!-- LATIN SMALL LETTER Y WITH ACUTE -->
|
||||
<!ENTITY Yacute "Ý"> <!-- LATIN CAPITAL LETTER Y WITH ACUTE -->
|
||||
<!ENTITY yuml "ÿ"> <!-- LATIN SMALL LETTER Y WITH DIAERESIS -->
|
|
@ -1,126 +0,0 @@
|
|||
<!-- iso-lat2.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz -->
|
||||
|
||||
<!ENTITY abreve "ă"> <!-- LATIN SMALL LETTER A WITH BREVE -->
|
||||
<!ENTITY Abreve "Ă"> <!-- LATIN CAPITAL LETTER A WITH BREVE -->
|
||||
<!ENTITY amacr "ā"> <!-- LATIN SMALL LETTER A WITH MACRON -->
|
||||
<!ENTITY Amacr "Ā"> <!-- LATIN CAPITAL LETTER A WITH MACRON -->
|
||||
<!ENTITY aogon "ą"> <!-- LATIN SMALL LETTER A WITH OGONEK -->
|
||||
<!ENTITY Aogon "Ą"> <!-- LATIN CAPITAL LETTER A WITH OGONEK -->
|
||||
<!ENTITY cacute "ć"> <!-- LATIN SMALL LETTER C WITH ACUTE -->
|
||||
<!ENTITY Cacute "Ć"> <!-- LATIN CAPITAL LETTER C WITH ACUTE -->
|
||||
<!ENTITY ccaron "č"> <!-- LATIN SMALL LETTER C WITH CARON -->
|
||||
<!ENTITY Ccaron "Č"> <!-- LATIN CAPITAL LETTER C WITH CARON -->
|
||||
<!ENTITY ccirc "ĉ"> <!-- LATIN SMALL LETTER C WITH CIRCUMFLEX -->
|
||||
<!ENTITY Ccirc "Ĉ"> <!-- LATIN CAPITAL LETTER C WITH CIRCUMFLEX -->
|
||||
<!ENTITY cdot "ċ"> <!-- DOT OPERATOR -->
|
||||
<!ENTITY Cdot "Ċ"> <!-- LATIN CAPITAL LETTER C WITH DOT ABOVE -->
|
||||
<!ENTITY dcaron "ď"> <!-- LATIN SMALL LETTER D WITH CARON -->
|
||||
<!ENTITY Dcaron "Ď"> <!-- LATIN CAPITAL LETTER D WITH CARON -->
|
||||
<!ENTITY dstrok "đ"> <!-- LATIN SMALL LETTER D WITH STROKE -->
|
||||
<!ENTITY Dstrok "Đ"> <!-- LATIN CAPITAL LETTER D WITH STROKE -->
|
||||
<!ENTITY ecaron "ě"> <!-- LATIN SMALL LETTER E WITH CARON -->
|
||||
<!ENTITY Ecaron "Ě"> <!-- LATIN CAPITAL LETTER E WITH CARON -->
|
||||
<!ENTITY edot "ė"> <!-- LATIN SMALL LETTER E WITH DOT ABOVE -->
|
||||
<!ENTITY Edot "Ė"> <!-- LATIN CAPITAL LETTER E WITH DOT ABOVE -->
|
||||
<!ENTITY emacr "ē"> <!-- LATIN SMALL LETTER E WITH MACRON -->
|
||||
<!ENTITY Emacr "Ē"> <!-- LATIN CAPITAL LETTER E WITH MACRON -->
|
||||
<!ENTITY eogon "ę"> <!-- LATIN SMALL LETTER E WITH OGONEK -->
|
||||
<!ENTITY Eogon "Ę"> <!-- LATIN CAPITAL LETTER E WITH OGONEK -->
|
||||
<!ENTITY gacute "ǵ"> <!-- LATIN SMALL LETTER G WITH ACUTE -->
|
||||
<!ENTITY gbreve "ğ"> <!-- LATIN SMALL LETTER G WITH BREVE -->
|
||||
<!ENTITY Gbreve "Ğ"> <!-- LATIN CAPITAL LETTER G WITH BREVE -->
|
||||
<!ENTITY Gcedil "Ģ"> <!-- LATIN CAPITAL LETTER G WITH CEDILLA -->
|
||||
<!ENTITY gcirc "ĝ"> <!-- LATIN SMALL LETTER G WITH CIRCUMFLEX -->
|
||||
<!ENTITY Gcirc "Ĝ"> <!-- LATIN CAPITAL LETTER G WITH CIRCUMFLEX -->
|
||||
<!ENTITY gdot "ġ"> <!-- LATIN SMALL LETTER G WITH DOT ABOVE -->
|
||||
<!ENTITY Gdot "Ġ"> <!-- LATIN CAPITAL LETTER G WITH DOT ABOVE -->
|
||||
<!ENTITY hcirc "ĥ"> <!-- LATIN SMALL LETTER H WITH CIRCUMFLEX -->
|
||||
<!ENTITY Hcirc "Ĥ"> <!-- LATIN CAPITAL LETTER H WITH CIRCUMFLEX -->
|
||||
<!ENTITY hstrok "ħ"> <!-- LATIN SMALL LETTER H WITH STROKE -->
|
||||
<!ENTITY Hstrok "Ħ"> <!-- LATIN CAPITAL LETTER H WITH STROKE -->
|
||||
<!ENTITY Idot "İ"> <!-- LATIN CAPITAL LETTER I WITH DOT ABOVE -->
|
||||
<!ENTITY Imacr "Ī"> <!-- LATIN CAPITAL LETTER I WITH MACRON -->
|
||||
<!ENTITY imacr "ī"> <!-- LATIN SMALL LETTER I WITH MACRON -->
|
||||
<!ENTITY ijlig "ij"> <!-- LATIN SMALL LIGATURE IJ -->
|
||||
<!ENTITY IJlig "IJ"> <!-- LATIN CAPITAL LIGATURE IJ -->
|
||||
<!ENTITY inodot "ı"> <!-- LATIN SMALL LETTER DOTLESS I -->
|
||||
<!ENTITY iogon "į"> <!-- LATIN SMALL LETTER I WITH OGONEK -->
|
||||
<!ENTITY Iogon "Į"> <!-- LATIN CAPITAL LETTER I WITH OGONEK -->
|
||||
<!ENTITY itilde "ĩ"> <!-- LATIN SMALL LETTER I WITH TILDE -->
|
||||
<!ENTITY Itilde "Ĩ"> <!-- LATIN CAPITAL LETTER I WITH TILDE -->
|
||||
<!ENTITY jcirc "ĵ"> <!-- LATIN SMALL LETTER J WITH CIRCUMFLEX -->
|
||||
<!ENTITY Jcirc "Ĵ"> <!-- LATIN CAPITAL LETTER J WITH CIRCUMFLEX -->
|
||||
<!ENTITY kcedil "ķ"> <!-- LATIN SMALL LETTER K WITH CEDILLA -->
|
||||
<!ENTITY Kcedil "Ķ"> <!-- LATIN CAPITAL LETTER K WITH CEDILLA -->
|
||||
<!ENTITY kgreen "ĸ"> <!-- LATIN SMALL LETTER KRA -->
|
||||
<!ENTITY lacute "ĺ"> <!-- LATIN SMALL LETTER L WITH ACUTE -->
|
||||
<!ENTITY Lacute "Ĺ"> <!-- LATIN CAPITAL LETTER L WITH ACUTE -->
|
||||
<!ENTITY lcaron "ľ"> <!-- LATIN SMALL LETTER L WITH CARON -->
|
||||
<!ENTITY Lcaron "Ľ"> <!-- LATIN CAPITAL LETTER L WITH CARON -->
|
||||
<!ENTITY lcedil "ļ"> <!-- LATIN SMALL LETTER L WITH CEDILLA -->
|
||||
<!ENTITY Lcedil "Ļ"> <!-- LATIN CAPITAL LETTER L WITH CEDILLA -->
|
||||
<!ENTITY lmidot "ŀ"> <!-- LATIN SMALL LETTER L WITH MIDDLE DOT -->
|
||||
<!ENTITY Lmidot "Ŀ"> <!-- LATIN CAPITAL LETTER L WITH MIDDLE DOT -->
|
||||
<!ENTITY lstrok "ł"> <!-- LATIN SMALL LETTER L WITH STROKE -->
|
||||
<!ENTITY Lstrok "Ł"> <!-- LATIN CAPITAL LETTER L WITH STROKE -->
|
||||
<!ENTITY nacute "ń"> <!-- LATIN SMALL LETTER N WITH ACUTE -->
|
||||
<!ENTITY Nacute "Ń"> <!-- LATIN CAPITAL LETTER N WITH ACUTE -->
|
||||
<!ENTITY eng "ŋ"> <!-- LATIN SMALL LETTER ENG -->
|
||||
<!ENTITY ENG "Ŋ"> <!-- LATIN CAPITAL LETTER ENG -->
|
||||
<!ENTITY napos "ʼn"> <!-- LATIN SMALL LETTER N PRECEDED BY APOSTROPHE -->
|
||||
<!ENTITY ncaron "ň"> <!-- LATIN SMALL LETTER N WITH CARON -->
|
||||
<!ENTITY Ncaron "Ň"> <!-- LATIN CAPITAL LETTER N WITH CARON -->
|
||||
<!ENTITY ncedil "ņ"> <!-- LATIN SMALL LETTER N WITH CEDILLA -->
|
||||
<!ENTITY Ncedil "Ņ"> <!-- LATIN CAPITAL LETTER N WITH CEDILLA -->
|
||||
<!ENTITY odblac "ő"> <!-- LATIN SMALL LETTER O WITH DOUBLE ACUTE -->
|
||||
<!ENTITY Odblac "Ő"> <!-- LATIN CAPITAL LETTER O WITH DOUBLE ACUTE -->
|
||||
<!ENTITY Omacr "Ō"> <!-- LATIN CAPITAL LETTER O WITH MACRON -->
|
||||
<!ENTITY omacr "ō"> <!-- LATIN SMALL LETTER O WITH MACRON -->
|
||||
<!ENTITY oelig "œ"> <!-- LATIN SMALL LIGATURE OE -->
|
||||
<!ENTITY OElig "Œ"> <!-- LATIN CAPITAL LIGATURE OE -->
|
||||
<!ENTITY racute "ŕ"> <!-- LATIN SMALL LETTER R WITH ACUTE -->
|
||||
<!ENTITY Racute "Ŕ"> <!-- LATIN CAPITAL LETTER R WITH ACUTE -->
|
||||
<!ENTITY rcaron "ř"> <!-- LATIN SMALL LETTER R WITH CARON -->
|
||||
<!ENTITY Rcaron "Ř"> <!-- LATIN CAPITAL LETTER R WITH CARON -->
|
||||
<!ENTITY rcedil "ŗ"> <!-- LATIN SMALL LETTER R WITH CEDILLA -->
|
||||
<!ENTITY Rcedil "Ŗ"> <!-- LATIN CAPITAL LETTER R WITH CEDILLA -->
|
||||
<!ENTITY sacute "ś"> <!-- LATIN SMALL LETTER S WITH ACUTE -->
|
||||
<!ENTITY Sacute "Ś"> <!-- LATIN CAPITAL LETTER S WITH ACUTE -->
|
||||
<!ENTITY scaron "š"> <!-- LATIN SMALL LETTER S WITH CARON -->
|
||||
<!ENTITY Scaron "Š"> <!-- LATIN CAPITAL LETTER S WITH CARON -->
|
||||
<!ENTITY scedil "ş"> <!-- LATIN SMALL LETTER S WITH CEDILLA -->
|
||||
<!ENTITY Scedil "Ş"> <!-- LATIN CAPITAL LETTER S WITH CEDILLA -->
|
||||
<!ENTITY scirc "ŝ"> <!-- LATIN SMALL LETTER S WITH CIRCUMFLEX -->
|
||||
<!ENTITY Scirc "Ŝ"> <!-- LATIN CAPITAL LETTER S WITH CIRCUMFLEX -->
|
||||
<!ENTITY tcaron "ť"> <!-- LATIN SMALL LETTER T WITH CARON -->
|
||||
<!ENTITY Tcaron "Ť"> <!-- LATIN CAPITAL LETTER T WITH CARON -->
|
||||
<!ENTITY tcedil "ţ"> <!-- LATIN SMALL LETTER T WITH CEDILLA -->
|
||||
<!ENTITY Tcedil "Ţ"> <!-- LATIN CAPITAL LETTER T WITH CEDILLA -->
|
||||
<!ENTITY tstrok "ŧ"> <!-- LATIN SMALL LETTER T WITH STROKE -->
|
||||
<!ENTITY Tstrok "Ŧ"> <!-- LATIN CAPITAL LETTER T WITH STROKE -->
|
||||
<!ENTITY ubreve "ŭ"> <!-- LATIN SMALL LETTER U WITH BREVE -->
|
||||
<!ENTITY Ubreve "Ŭ"> <!-- LATIN CAPITAL LETTER U WITH BREVE -->
|
||||
<!ENTITY udblac "ű"> <!-- LATIN SMALL LETTER U WITH DOUBLE ACUTE -->
|
||||
<!ENTITY Udblac "Ű"> <!-- LATIN CAPITAL LETTER U WITH DOUBLE ACUTE -->
|
||||
<!ENTITY umacr "ū"> <!-- LATIN SMALL LETTER U WITH MACRON -->
|
||||
<!ENTITY Umacr "Ū"> <!-- LATIN CAPITAL LETTER U WITH MACRON -->
|
||||
<!ENTITY uogon "ų"> <!-- LATIN SMALL LETTER U WITH OGONEK -->
|
||||
<!ENTITY Uogon "Ų"> <!-- LATIN CAPITAL LETTER U WITH OGONEK -->
|
||||
<!ENTITY uring "ů"> <!-- LATIN SMALL LETTER U WITH RING ABOVE -->
|
||||
<!ENTITY Uring "Ů"> <!-- LATIN CAPITAL LETTER U WITH RING ABOVE -->
|
||||
<!ENTITY utilde "ũ"> <!-- LATIN SMALL LETTER U WITH TILDE -->
|
||||
<!ENTITY Utilde "Ũ"> <!-- LATIN CAPITAL LETTER U WITH TILDE -->
|
||||
<!ENTITY wcirc "ŵ"> <!-- LATIN SMALL LETTER W WITH CIRCUMFLEX -->
|
||||
<!ENTITY Wcirc "Ŵ"> <!-- LATIN CAPITAL LETTER W WITH CIRCUMFLEX -->
|
||||
<!ENTITY ycirc "ŷ"> <!-- LATIN SMALL LETTER Y WITH CIRCUMFLEX -->
|
||||
<!ENTITY Ycirc "Ŷ"> <!-- LATIN CAPITAL LETTER Y WITH CIRCUMFLEX -->
|
||||
<!ENTITY Yuml "Ÿ"> <!-- LATIN CAPITAL LETTER Y WITH DIAERESIS -->
|
||||
<!ENTITY zacute "ź"> <!-- LATIN SMALL LETTER Z WITH ACUTE -->
|
||||
<!ENTITY Zacute "Ź"> <!-- LATIN CAPITAL LETTER Z WITH ACUTE -->
|
||||
<!ENTITY zcaron "ž"> <!-- LATIN SMALL LETTER Z WITH CARON -->
|
||||
<!ENTITY Zcaron "Ž"> <!-- LATIN CAPITAL LETTER Z WITH CARON -->
|
||||
<!ENTITY zdot "ż"> <!-- LATIN SMALL LETTER Z WITH DOT ABOVE -->
|
||||
<!ENTITY Zdot "Ż"> <!-- LATIN CAPITAL LETTER Z WITH DOT ABOVE -->
|
|
@ -1,81 +0,0 @@
|
|||
<!-- iso-num.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz -->
|
||||
|
||||
<!ENTITY half "½"> <!-- VULGAR FRACTION ONE HALF -->
|
||||
<!ENTITY frac12 "½"> <!-- VULGAR FRACTION ONE HALF -->
|
||||
<!ENTITY frac14 "¼"> <!-- VULGAR FRACTION ONE QUARTER -->
|
||||
<!ENTITY frac34 "¾"> <!-- VULGAR FRACTION THREE QUARTERS -->
|
||||
<!ENTITY frac18 "⅛"> <!-- -->
|
||||
<!ENTITY frac38 "⅜"> <!-- -->
|
||||
<!ENTITY frac58 "⅝"> <!-- -->
|
||||
<!ENTITY frac78 "⅞"> <!-- -->
|
||||
<!ENTITY sup1 "¹"> <!-- SUPERSCRIPT ONE -->
|
||||
<!ENTITY sup2 "²"> <!-- SUPERSCRIPT TWO -->
|
||||
<!ENTITY sup3 "³"> <!-- SUPERSCRIPT THREE -->
|
||||
<!ENTITY plus "+"> <!-- PLUS SIGN -->
|
||||
<!ENTITY plusmn "±"> <!-- PLUS-MINUS SIGN -->
|
||||
<!ENTITY lt "&#60;"> <!-- LESS-THAN SIGN -->
|
||||
<!ENTITY equals "="> <!-- EQUALS SIGN -->
|
||||
<!ENTITY gt ">"> <!-- GREATER-THAN SIGN -->
|
||||
<!ENTITY divide "÷"> <!-- DIVISION SIGN -->
|
||||
<!ENTITY times "×"> <!-- MULTIPLICATION SIGN -->
|
||||
<!ENTITY curren "¤"> <!-- CURRENCY SIGN -->
|
||||
<!ENTITY pound "£"> <!-- POUND SIGN -->
|
||||
<!ENTITY dollar "$"> <!-- DOLLAR SIGN -->
|
||||
<!ENTITY cent "¢"> <!-- CENT SIGN -->
|
||||
<!ENTITY yen "¥"> <!-- YEN SIGN -->
|
||||
<!ENTITY num "#"> <!-- NUMBER SIGN -->
|
||||
<!ENTITY percnt "%"> <!-- PERCENT SIGN -->
|
||||
<!ENTITY amp "&#38;"> <!-- AMPERSAND -->
|
||||
<!ENTITY ast "*"> <!-- ASTERISK OPERATOR -->
|
||||
<!ENTITY commat "@"> <!-- COMMERCIAL AT -->
|
||||
<!ENTITY lsqb "["> <!-- LEFT SQUARE BRACKET -->
|
||||
<!ENTITY bsol "\"> <!-- REVERSE SOLIDUS -->
|
||||
<!ENTITY rsqb "]"> <!-- RIGHT SQUARE BRACKET -->
|
||||
<!ENTITY lcub "{"> <!-- LEFT CURLY BRACKET -->
|
||||
<!ENTITY horbar "―"> <!-- HORIZONTAL BAR -->
|
||||
<!ENTITY verbar "|"> <!-- VERTICAL LINE -->
|
||||
<!ENTITY rcub "}"> <!-- RIGHT CURLY BRACKET -->
|
||||
<!ENTITY micro "µ"> <!-- MICRO SIGN -->
|
||||
<!ENTITY ohm "Ω"> <!-- OHM SIGN -->
|
||||
<!ENTITY deg "°"> <!-- DEGREE SIGN -->
|
||||
<!ENTITY ordm "º"> <!-- MASCULINE ORDINAL INDICATOR -->
|
||||
<!ENTITY ordf "ª"> <!-- FEMININE ORDINAL INDICATOR -->
|
||||
<!ENTITY sect "§"> <!-- SECTION SIGN -->
|
||||
<!ENTITY para "¶"> <!-- PILCROW SIGN -->
|
||||
<!ENTITY middot "·"> <!-- MIDDLE DOT -->
|
||||
<!ENTITY larr "←"> <!-- LEFTWARDS DOUBLE ARROW -->
|
||||
<!ENTITY rarr "→"> <!-- RIGHTWARDS DOUBLE ARROW -->
|
||||
<!ENTITY uarr "↑"> <!-- UPWARDS ARROW -->
|
||||
<!ENTITY darr "↓"> <!-- DOWNWARDS ARROW -->
|
||||
<!ENTITY copy "©"> <!-- COPYRIGHT SIGN -->
|
||||
<!ENTITY reg "®"> <!-- REG TRADE MARK SIGN -->
|
||||
<!ENTITY trade "™"> <!-- TRADE MARK SIGN -->
|
||||
<!ENTITY brvbar "¦"> <!-- BROKEN BAR -->
|
||||
<!ENTITY not "¬"> <!-- NOT SIGN -->
|
||||
<!ENTITY sung "♩"> <!-- -->
|
||||
<!ENTITY excl "!"> <!-- EXCLAMATION MARK -->
|
||||
<!ENTITY iexcl "¡"> <!-- INVERTED EXCLAMATION MARK -->
|
||||
<!ENTITY quot """> <!-- QUOTATION MARK -->
|
||||
<!ENTITY apos "'"> <!-- APOSTROPHE -->
|
||||
<!ENTITY lpar "("> <!-- LEFT PARENTHESIS -->
|
||||
<!ENTITY rpar ")"> <!-- RIGHT PARENTHESIS -->
|
||||
<!ENTITY comma ","> <!-- COMMA -->
|
||||
<!ENTITY lowbar "_"> <!-- LOW LINE -->
|
||||
<!ENTITY hyphen "-"> <!-- HYPHEN-MINUS -->
|
||||
<!ENTITY period "."> <!-- FULL STOP -->
|
||||
<!ENTITY sol "/"> <!-- SOLIDUS -->
|
||||
<!ENTITY colon ":"> <!-- COLON -->
|
||||
<!ENTITY semi ";"> <!-- SEMICOLON -->
|
||||
<!ENTITY quest "?"> <!-- QUESTION MARK -->
|
||||
<!ENTITY iquest "¿"> <!-- INVERTED QUESTION MARK -->
|
||||
<!ENTITY laquo "«"> <!-- LEFT-POINTING DOUBLE ANGLE QUOTATION MARK -->
|
||||
<!ENTITY raquo "»"> <!-- RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK -->
|
||||
<!ENTITY lsquo "‘"> <!-- -->
|
||||
<!ENTITY rsquo "’"> <!-- RIGHT SINGLE QUOTATION MARK -->
|
||||
<!ENTITY ldquo "“"> <!-- -->
|
||||
<!ENTITY rdquo "”"> <!-- RIGHT DOUBLE QUOTATION MARK -->
|
||||
<!ENTITY nbsp " "> <!-- NO-BREAK SPACE -->
|
||||
<!ENTITY shy "­"> <!-- SOFT HYPHEN -->
|
|
@ -1,90 +0,0 @@
|
|||
<!-- iso-pub.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz -->
|
||||
|
||||
<!ENTITY emsp " "> <!-- EM SPACE -->
|
||||
<!ENTITY ensp " "> <!-- EN SPACE -->
|
||||
<!ENTITY emsp13 " "> <!-- THREE-PER-EM SPACE -->
|
||||
<!ENTITY emsp14 " "> <!-- FOUR-PER-EM SPACE -->
|
||||
<!ENTITY numsp " "> <!-- FIGURE SPACE -->
|
||||
<!ENTITY puncsp " "> <!-- PUNCTUATION SPACE -->
|
||||
<!ENTITY thinsp " "> <!-- THIN SPACE -->
|
||||
<!ENTITY hairsp " "> <!-- HAIR SPACE -->
|
||||
<!ENTITY mdash "—"> <!-- EM DASH -->
|
||||
<!ENTITY ndash "–"> <!-- EN DASH -->
|
||||
<!ENTITY dash "‐"> <!-- HYPHEN -->
|
||||
<!ENTITY blank "␣"> <!-- OPEN BOX -->
|
||||
<!ENTITY hellip "…"> <!-- HORIZONTAL ELLIPSIS -->
|
||||
<!ENTITY nldr "‥"> <!-- TWO DOT LEADER -->
|
||||
<!ENTITY frac13 "⅓"> <!-- VULGAR FRACTION ONE THIRD -->
|
||||
<!ENTITY frac23 "⅔"> <!-- VULGAR FRACTION TWO THIRDS -->
|
||||
<!ENTITY frac15 "⅕"> <!-- VULGAR FRACTION ONE FIFTH -->
|
||||
<!ENTITY frac25 "⅖"> <!-- VULGAR FRACTION TWO FIFTHS -->
|
||||
<!ENTITY frac35 "⅗"> <!-- VULGAR FRACTION THREE FIFTHS -->
|
||||
<!ENTITY frac45 "⅘"> <!-- VULGAR FRACTION FOUR FIFTHS -->
|
||||
<!ENTITY frac16 "⅙"> <!-- VULGAR FRACTION ONE SIXTH -->
|
||||
<!ENTITY frac56 "⅚"> <!-- VULGAR FRACTION FIVE SIXTHS -->
|
||||
<!ENTITY incare "℅"> <!-- CARE OF -->
|
||||
<!ENTITY block "█"> <!-- FULL BLOCK -->
|
||||
<!ENTITY uhblk "▀"> <!-- UPPER HALF BLOCK -->
|
||||
<!ENTITY lhblk "▄"> <!-- LOWER HALF BLOCK -->
|
||||
<!ENTITY blk14 "░"> <!-- LIGHT SHADE -->
|
||||
<!ENTITY blk12 "▒"> <!-- MEDIUM SHADE -->
|
||||
<!ENTITY blk34 "▓"> <!-- DARK SHADE -->
|
||||
<!ENTITY marker "▮"> <!-- BLACK VERTICAL RECTANGLE -->
|
||||
<!ENTITY cir "○"> <!-- WHITE CIRCLE -->
|
||||
<!ENTITY squ "□"> <!-- WHITE SQUARE -->
|
||||
<!ENTITY rect "▭"> <!-- WHITE RECTANGLE -->
|
||||
<!ENTITY utri "▵"> <!-- WHITE UP-POINTING TRIANGLE -->
|
||||
<!ENTITY dtri "▿"> <!-- WHITE DOWN-POINTING TRIANGLE -->
|
||||
<!ENTITY star "⋆"> <!-- STAR OPERATOR -->
|
||||
<!ENTITY bull "•"> <!-- BULLET -->
|
||||
<!ENTITY squf "▪"> <!-- -->
|
||||
<!ENTITY utrif "▴"> <!-- BLACK UP-POINTING TRIANGLE -->
|
||||
<!ENTITY dtrif "▾"> <!-- BLACK DOWN-POINTING TRIANGLE -->
|
||||
<!ENTITY ltrif "◂"> <!-- BLACK LEFT-POINTING TRIANGLE -->
|
||||
<!ENTITY rtrif "▸"> <!-- BLACK RIGHT-POINTING TRIANGLE -->
|
||||
<!ENTITY clubs "♣"> <!-- BLACK CLUB SUIT -->
|
||||
<!ENTITY diams "♦"> <!-- BLACK DIAMOND SUIT -->
|
||||
<!ENTITY hearts "♥"> <!-- BLACK HEART SUIT -->
|
||||
<!ENTITY spades "♠"> <!-- BLACK SPADE SUIT -->
|
||||
<!ENTITY malt "✠"> <!-- MALTESE CROSS -->
|
||||
<!ENTITY dagger "†"> <!-- DAGGER -->
|
||||
<!ENTITY Dagger "‡"> <!-- DOUBLE DAGGER -->
|
||||
<!ENTITY check "✓"> <!-- CHECK MARK -->
|
||||
<!ENTITY cross "✗"> <!-- BALLOT X -->
|
||||
<!ENTITY sharp "♯"> <!-- MUSIC SHARP SIGN -->
|
||||
<!ENTITY flat "♭"> <!-- MUSIC FLAT SIGN -->
|
||||
<!ENTITY male "♂"> <!-- MALE SIGN -->
|
||||
<!ENTITY female "♀"> <!-- -->
|
||||
<!ENTITY phone "☎"> <!-- TELEPHONE SIGN -->
|
||||
<!ENTITY telrec "⌕"> <!-- TELEPHONE RECORDER -->
|
||||
<!ENTITY copysr "℗"> <!-- SOUND RECORDING COPYRIGHT -->
|
||||
<!ENTITY caret "⁁"> <!-- CARET -->
|
||||
<!ENTITY lsquor "‚"> <!-- SINGLE LOW-9 QUOTATION MARK -->
|
||||
<!ENTITY ldquor "„"> <!-- DOUBLE LOW-9 QUOTATION MARK -->
|
||||
<!ENTITY fflig "ff"> <!-- -->
|
||||
<!ENTITY filig "fi"> <!-- -->
|
||||
<!-- fjlig Unknown unicode character -->
|
||||
<!ENTITY ffilig "ffi"> <!-- -->
|
||||
<!ENTITY ffllig "ffl"> <!-- -->
|
||||
<!ENTITY fllig "fl"> <!-- -->
|
||||
<!ENTITY mldr "…"> <!-- HORIZONTAL ELLIPSIS -->
|
||||
<!ENTITY rdquor "“"> <!-- -->
|
||||
<!ENTITY rsquor "‘"> <!-- -->
|
||||
<!ENTITY vellip "⋮"> <!-- -->
|
||||
<!ENTITY hybull "⁃"> <!-- HYPHEN BULLET -->
|
||||
<!ENTITY loz "◊"> <!-- LOZENGE -->
|
||||
<!ENTITY lozf "✦"> <!-- -->
|
||||
<!ENTITY ltri "◃"> <!-- WHITE LEFT-POINTING TRIANGLE -->
|
||||
<!ENTITY rtri "▹"> <!-- WHITE RIGHT-POINTING TRIANGLE -->
|
||||
<!ENTITY starf "★"> <!-- BLACK STAR -->
|
||||
<!ENTITY natur "♮"> <!-- MUSIC NATURAL SIGN -->
|
||||
<!ENTITY rx "℞"> <!-- PRESCRIPTION TAKE -->
|
||||
<!ENTITY sext "✶"> <!-- SIX POINTED BLACK STAR -->
|
||||
<!ENTITY target "⌖"> <!-- POSITION INDICATOR -->
|
||||
<!ENTITY dlcrop "⌍"> <!-- BOTTOM LEFT CROP -->
|
||||
<!ENTITY drcrop "⌌"> <!-- BOTTOM RIGHT CROP -->
|
||||
<!ENTITY ulcrop "⌏"> <!-- TOP LEFT CROP -->
|
||||
<!ENTITY urcrop "⌎"> <!-- TOP RIGHT CROP -->
|
|
@ -1,69 +0,0 @@
|
|||
<!-- iso-tech.ent (initially distributed with DocBook XML DTD V4.1.1beta1) -->
|
||||
|
||||
<!-- Derived from the corresponding ISO 8879 standard entity set
|
||||
and the Unicode character mappings provided by Sebastian Rahtz.
|
||||
With additional derivations from
|
||||
ftp://ftp.unicode.org/Public/MAPPINGS/VENDORS/MISC/SGML.TXT -->
|
||||
|
||||
<!ENTITY aleph "ℵ"> <!-- ALEF SYMBOL -->
|
||||
<!ENTITY and "∧"> <!-- -->
|
||||
<!ENTITY ang90 "∟"> <!-- RIGHT ANGLE -->
|
||||
<!ENTITY angsph "∢"> <!-- -->
|
||||
<!ENTITY ap "≈"> <!-- -->
|
||||
<!ENTITY becaus "∵"> <!-- BECAUSE -->
|
||||
<!ENTITY bottom "⊥"> <!-- -->
|
||||
<!ENTITY cap "∩"> <!-- -->
|
||||
<!ENTITY cong "≅"> <!-- -->
|
||||
<!ENTITY conint "∮"> <!-- -->
|
||||
<!ENTITY cup "∪"> <!-- -->
|
||||
<!ENTITY equiv "≡"> <!-- -->
|
||||
<!ENTITY exist "∃"> <!-- -->
|
||||
<!ENTITY forall "∀"> <!-- -->
|
||||
<!ENTITY fnof "ƒ"> <!-- LATIN SMALL LETTER F WITH HOOK -->
|
||||
<!ENTITY ge "≥"> <!-- GREATER-THAN OR EQUAL TO -->
|
||||
<!ENTITY iff "⇔"> <!-- LEFT RIGHT DOUBLE ARROW -->
|
||||
<!ENTITY infin "∞"> <!-- -->
|
||||
<!ENTITY int "∫"> <!-- -->
|
||||
<!ENTITY isin "∊"> <!-- -->
|
||||
<!ENTITY lang "〈"> <!-- -->
|
||||
<!ENTITY lArr "⇐"> <!-- LEFTWARDS ARROW -->
|
||||
<!ENTITY le "≤"> <!-- -->
|
||||
<!ENTITY minus "−"> <!-- MINUS SIGN -->
|
||||
<!ENTITY mnplus "∓"> <!-- -->
|
||||
<!ENTITY nabla "∇"> <!-- NABLA -->
|
||||
<!ENTITY ne "≠"> <!-- -->
|
||||
<!ENTITY ni "∍"> <!-- -->
|
||||
<!ENTITY or "∨"> <!-- -->
|
||||
<!ENTITY par "∥"> <!-- PARALLEL TO -->
|
||||
<!ENTITY part "∂"> <!-- -->
|
||||
<!ENTITY permil "‰"> <!-- PER MILLE SIGN -->
|
||||
<!ENTITY perp "⊥"> <!-- -->
|
||||
<!ENTITY prime "′"> <!-- PRIME -->
|
||||
<!ENTITY Prime "″"> <!-- DOUBLE PRIME -->
|
||||
<!ENTITY prop "∝"> <!-- -->
|
||||
<!ENTITY radic "√"> <!-- -->
|
||||
<!ENTITY rang "〉"> <!-- -->
|
||||
<!ENTITY rArr "⇒"> <!-- RIGHTWARDS ARROW -->
|
||||
<!ENTITY sim "∼"> <!-- -->
|
||||
<!ENTITY sime "≃"> <!-- -->
|
||||
<!ENTITY square "□"> <!-- WHITE SQUARE -->
|
||||
<!ENTITY sub "⊂"> <!-- -->
|
||||
<!ENTITY sube "⊆"> <!-- -->
|
||||
<!ENTITY sup "⊃"> <!-- -->
|
||||
<!ENTITY supe "⊇"> <!-- -->
|
||||
<!ENTITY there4 "∴"> <!-- -->
|
||||
<!ENTITY Verbar "‖"> <!-- DOUBLE VERTICAL LINE -->
|
||||
<!ENTITY angst "Å"> <!-- ANGSTROM SIGN -->
|
||||
<!ENTITY bernou "ℬ"> <!-- SCRIPT CAPITAL B -->
|
||||
<!ENTITY compfn "∘"> <!-- RING OPERATOR -->
|
||||
<!ENTITY Dot "¨"> <!-- -->
|
||||
<!ENTITY DotDot "⃜"> <!-- COMBINING FOUR DOTS ABOVE -->
|
||||
<!ENTITY hamilt "ℋ"> <!-- SCRIPT CAPITAL H -->
|
||||
<!ENTITY lagran "ℒ"> <!-- SCRIPT CAPITAL L -->
|
||||
<!ENTITY lowast "∗"> <!-- ASTERISK OPERATOR -->
|
||||
<!ENTITY notin "∉"> <!-- -->
|
||||
<!ENTITY order "ℴ"> <!-- SCRIPT SMALL O -->
|
||||
<!ENTITY phmmat "ℳ"> <!-- SCRIPT CAPITAL M -->
|
||||
<!ENTITY tdot "⃛"> <!-- COMBINING THREE DOTS ABOVE -->
|
||||
<!ENTITY tprime "‴"> <!-- TRIPLE PRIME -->
|
||||
<!ENTITY wedgeq "≙"> <!-- ESTIMATES -->
|
|
@ -1,228 +0,0 @@
|
|||
<!-- ...................................................................... -->
|
||||
<!-- DocBook XML HTML Table Module V4.3CR3 ................................... -->
|
||||
<!-- File htmltblx.mod .................................................... -->
|
||||
|
||||
<!-- Copyright 2003 ArborText, Inc., Norman Walsh, Sun Microsystems, Inc.,
|
||||
and the Organization for the Advancement of Structured Information
|
||||
Standards (OASIS).
|
||||
|
||||
$Id: htmltblx.mod 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
|
||||
Permission to use, copy, modify and distribute the DocBook XML DTD
|
||||
and its accompanying documentation for any purpose and without fee
|
||||
is hereby granted in perpetuity, provided that the above copyright
|
||||
notice and this paragraph appear in all copies. The copyright
|
||||
holders make no representation about the suitability of the DTD for
|
||||
any purpose. It is provided "as is" without expressed or implied
|
||||
warranty.
|
||||
|
||||
If you modify the DocBook XML DTD in any way, except for declaring and
|
||||
referencing additional sets of general entities and declaring
|
||||
additional notations, label your DTD as a variant of DocBook. See
|
||||
the maintenance documentation for more information.
|
||||
|
||||
Please direct all questions, bug reports, or suggestions for
|
||||
changes to the docbook@lists.oasis-open.org mailing list. For more
|
||||
information, see http://www.oasis-open.org/docbook/.
|
||||
-->
|
||||
|
||||
<!-- ...................................................................... -->
|
||||
|
||||
<!-- This module contains the definitions for elements that are
|
||||
isomorphic to the HTML elements. One could argue we should
|
||||
instead have based ourselves on the XHTML Table Module, but the
|
||||
HTML one is more like what browsers are likely to accept today
|
||||
and users are likely to use.
|
||||
|
||||
This module has been developed for use with the DocBook V4.3
|
||||
"union table model" in which elements and attlists common to both
|
||||
models are defined (as the union) in the CALS table module by
|
||||
setting various parameter entities appropriately in this file.
|
||||
|
||||
In DTD driver files referring to this module, please use an entity
|
||||
declaration that uses the public identifier shown below:
|
||||
|
||||
<!ENTITY % htmltbl PUBLIC
|
||||
"-//OASIS//ELEMENTS DocBook XML HTML Tables V4.3CR3//EN"
|
||||
"htmltblx.mod">
|
||||
%htmltbl;
|
||||
|
||||
See the documentation for detailed information on the parameter
|
||||
entity and module scheme used in DocBook, customizing DocBook and
|
||||
planning for interchange, and changes made since the last release
|
||||
of DocBook.
|
||||
-->
|
||||
|
||||
<!--======================= XHTML Tables =======================================-->
|
||||
|
||||
<!ENTITY % html.coreattrs
|
||||
"id ID #IMPLIED
|
||||
class CDATA #IMPLIED
|
||||
style CDATA #IMPLIED
|
||||
title CDATA #IMPLIED"
|
||||
>
|
||||
|
||||
<!-- Does not contain lang or dir because they are in %common.attribs -->
|
||||
<!ENTITY % i18n
|
||||
"xml:lang NMTOKEN #IMPLIED"
|
||||
>
|
||||
|
||||
<!ENTITY % events
|
||||
"onclick CDATA #IMPLIED
|
||||
ondblclick CDATA #IMPLIED
|
||||
onmousedown CDATA #IMPLIED
|
||||
onmouseup CDATA #IMPLIED
|
||||
onmouseover CDATA #IMPLIED
|
||||
onmousemove CDATA #IMPLIED
|
||||
onmouseout CDATA #IMPLIED
|
||||
onkeypress CDATA #IMPLIED
|
||||
onkeydown CDATA #IMPLIED
|
||||
onkeyup CDATA #IMPLIED"
|
||||
>
|
||||
|
||||
<!ENTITY % attrs "%html.coreattrs; %i18n; %events;">
|
||||
|
||||
<!ENTITY % cellhalign
|
||||
"align (left|center|right|justify|char) #IMPLIED
|
||||
char CDATA #IMPLIED
|
||||
charoff CDATA #IMPLIED"
|
||||
>
|
||||
|
||||
<!ENTITY % cellvalign
|
||||
"valign (top|middle|bottom|baseline) #IMPLIED"
|
||||
>
|
||||
|
||||
<!ELEMENT colgroup (col)*>
|
||||
<!ELEMENT col EMPTY>
|
||||
<!ELEMENT tr (th|td)+>
|
||||
<!ELEMENT th (%para.char.mix; | %tabentry.mix;)*>
|
||||
<!ELEMENT td (%para.char.mix; | %tabentry.mix;)*>
|
||||
|
||||
<!ATTLIST colgroup
|
||||
%attrs;
|
||||
span CDATA "1"
|
||||
width CDATA #IMPLIED
|
||||
%cellhalign;
|
||||
%cellvalign;
|
||||
>
|
||||
|
||||
<!ATTLIST col
|
||||
%attrs;
|
||||
span CDATA "1"
|
||||
width CDATA #IMPLIED
|
||||
%cellhalign;
|
||||
%cellvalign;
|
||||
>
|
||||
|
||||
<!ATTLIST tr
|
||||
%attrs;
|
||||
%cellhalign;
|
||||
%cellvalign;
|
||||
bgcolor CDATA #IMPLIED
|
||||
>
|
||||
|
||||
<!ATTLIST th
|
||||
%attrs;
|
||||
abbr CDATA #IMPLIED
|
||||
axis CDATA #IMPLIED
|
||||
headers IDREFS #IMPLIED
|
||||
scope (row|col|rowgroup|colgroup) #IMPLIED
|
||||
rowspan CDATA "1"
|
||||
colspan CDATA "1"
|
||||
%cellhalign;
|
||||
%cellvalign;
|
||||
nowrap (nowrap) #IMPLIED
|
||||
bgcolor CDATA #IMPLIED
|
||||
width CDATA #IMPLIED
|
||||
height CDATA #IMPLIED
|
||||
>
|
||||
|
||||
<!ATTLIST td
|
||||
%attrs;
|
||||
abbr CDATA #IMPLIED
|
||||
axis CDATA #IMPLIED
|
||||
headers IDREFS #IMPLIED
|
||||
scope (row|col|rowgroup|colgroup) #IMPLIED
|
||||
rowspan CDATA "1"
|
||||
colspan CDATA "1"
|
||||
%cellhalign;
|
||||
%cellvalign;
|
||||
nowrap (nowrap) #IMPLIED
|
||||
bgcolor CDATA #IMPLIED
|
||||
width CDATA #IMPLIED
|
||||
height CDATA #IMPLIED
|
||||
>
|
||||
|
||||
<!-- ====================================================== -->
|
||||
<!-- Set up to read in the CALS model configured to
|
||||
merge with the XHTML table model -->
|
||||
<!-- ====================================================== -->
|
||||
|
||||
<!ENTITY % tables.role.attrib "%role.attrib;">
|
||||
|
||||
<!-- Add label and role attributes to table and informaltable -->
|
||||
<!ENTITY % bodyatt "
|
||||
floatstyle CDATA #IMPLIED
|
||||
%label.attrib;"
|
||||
>
|
||||
|
||||
<!-- Add common attributes to Table, TGroup, TBody, THead, TFoot, Row,
|
||||
EntryTbl, and Entry (and InformalTable element). -->
|
||||
|
||||
<!ENTITY % secur "
|
||||
%common.attrib;
|
||||
class CDATA #IMPLIED
|
||||
style CDATA #IMPLIED
|
||||
title CDATA #IMPLIED
|
||||
%i18n;
|
||||
%events;
|
||||
%tables.role.attrib;">
|
||||
|
||||
<!ENTITY % common.table.attribs
|
||||
"%bodyatt;
|
||||
%secur;">
|
||||
|
||||
<!-- Content model for Table (that also allows HTML tables) -->
|
||||
<!ENTITY % tbl.table.mdl
|
||||
"((blockinfo?,
|
||||
(%formalobject.title.content;),
|
||||
(%ndxterm.class;)*,
|
||||
textobject*,
|
||||
(graphic+|mediaobject+|tgroup+))
|
||||
|(caption, (col*|colgroup*), thead?, tfoot?, (tbody+|tr+)))">
|
||||
|
||||
<!ENTITY % informal.tbl.table.mdl
|
||||
"(textobject*,
|
||||
(graphic+|mediaobject+|tgroup+))
|
||||
| ((col*|colgroup*), thead?, tfoot?, (tbody+|tr+))">
|
||||
|
||||
<!-- Attributes for Table (including HTML ones) -->
|
||||
<!ENTITY % tbl.table.att '
|
||||
tabstyle CDATA #IMPLIED
|
||||
tocentry %yesorno.attvals; #IMPLIED
|
||||
shortentry %yesorno.attvals; #IMPLIED
|
||||
orient (port|land) #IMPLIED
|
||||
pgwide %yesorno.attvals; #IMPLIED
|
||||
summary CDATA #IMPLIED
|
||||
width CDATA #IMPLIED
|
||||
border CDATA #IMPLIED
|
||||
rules (none | groups | rows | cols | all) #IMPLIED
|
||||
cellspacing CDATA #IMPLIED
|
||||
cellpadding CDATA #IMPLIED
|
||||
align (left|center|right) #IMPLIED
|
||||
bgcolor CDATA #IMPLIED
|
||||
'>
|
||||
|
||||
<!ENTITY % tbl.frame.attval "void|above|below|hsides|lhs|rhs|vsides|box|border|
|
||||
top|bottom|topbot|all|sides|none">
|
||||
|
||||
<!-- Allow either objects or inlines; beware of REs between elements. -->
|
||||
<!ENTITY % tbl.entry.mdl "%para.char.mix; | %tabentry.mix;">
|
||||
|
||||
<!-- thead, tfoot, and tbody are defined in both table models,
|
||||
so we set up parameter entities to define union models for them
|
||||
-->
|
||||
|
||||
<!ENTITY % tbl.hdft.mdl "(tr+|(colspec*,row+))">
|
||||
<!ENTITY % tbl.tbody.mdl "(tr+|row+)">
|
||||
<!ENTITY % tbl.valign.attval "top|middle|bottom|baseline">
|
|
@ -1,314 +0,0 @@
|
|||
<!-- XML EXCHANGE TABLE MODEL DECLARATION MODULE -->
|
||||
|
||||
<!-- This set of declarations defines the XML version of the Exchange
|
||||
Table Model as of the date shown in the Formal Public Identifier
|
||||
(FPI) for this entity.
|
||||
|
||||
This set of declarations may be referred to using a public external
|
||||
entity declaration and reference as shown in the following three
|
||||
lines:
|
||||
|
||||
<!ENTITY % calstblx
|
||||
PUBLIC "-//OASIS//DTD XML Exchange Table Model 19990315//EN">
|
||||
%calstblx;
|
||||
|
||||
If various parameter entities used within this set of declarations
|
||||
are to be given non-default values, the appropriate declarations
|
||||
should be given before calling in this package (i.e., before the
|
||||
"%calstblx;" reference).
|
||||
-->
|
||||
|
||||
<!-- The motivation for this XML version of the Exchange Table Model
|
||||
is simply to create an XML version of the SGML Exchange Table
|
||||
Model. By design, no effort has been made to "improve" the model.
|
||||
|
||||
This XML version incorporates the logical bare minimum changes
|
||||
necessary to make the Exchange Table Model a valid XML DTD.
|
||||
|
||||
It has been modified slightly for use in the combined HTML/CALS models
|
||||
supported by DocBook V4.3.
|
||||
-->
|
||||
|
||||
<!-- The XML version of the Exchange Table Model differs from
|
||||
the SGML version in the following ways:
|
||||
|
||||
The following parameter entities have been removed:
|
||||
|
||||
- tbl.table.excep, tbl.hdft.excep, tbl.row.excep, tbl.entry.excep
|
||||
There are no exceptions in XML. The following normative statement
|
||||
is made in lieu of exceptions: the exchange table model explicitly
|
||||
forbids a table from occurring within another table. If the
|
||||
content model of an entry includes a table element, then this
|
||||
cannot be enforced by the DTD, but it is a deviation from the
|
||||
exchange table model to include a table within a table.
|
||||
|
||||
- tbl.hdft.name, tbl.hdft.mdl, tbl.hdft.excep, tbl.hdft.att
|
||||
The motivation for these elements was to change the table
|
||||
header/footer elements. Since XML does not allow element declarations
|
||||
to contain name groups, and the exchange table model does not
|
||||
allow a table to contain footers, the continued presence of these
|
||||
attributes seems unnecessary.
|
||||
|
||||
The following parameter entity has been added:
|
||||
|
||||
- tbl.thead.att
|
||||
This entity parameterizes the attributes on thead. It replaces
|
||||
the tbl.hdft.att parameter entity.
|
||||
|
||||
Other miscellaneous changes:
|
||||
|
||||
- Tag ommission indicators have been removed
|
||||
- Comments have been removed from declarations
|
||||
- NUMBER attributes have been changed to NMTOKEN
|
||||
- NUTOKEN attributes have been to changed to NMTOKEN
|
||||
- Removed the grouping characters around the content model
|
||||
parameter entry for the 'entry' element. This is necessary
|
||||
so that an entry can contain #PCDATA and be defined as an
|
||||
optional, repeatable OR group beginning with #PCDATA.
|
||||
-->
|
||||
|
||||
<!-- This entity includes a set of element and attribute declarations
|
||||
that partially defines the Exchange table model. However, the model
|
||||
is not well-defined without the accompanying natural language
|
||||
description of the semantics (meanings) of these various elements,
|
||||
attributes, and attribute values. The semantic writeup, also available
|
||||
from SGML Open, should be used in conjunction with this entity.
|
||||
-->
|
||||
|
||||
<!-- In order to use the Exchange table model, various parameter entity
|
||||
declarations are required. A brief description is as follows:
|
||||
|
||||
ENTITY NAME WHERE USED WHAT IT IS
|
||||
|
||||
%yesorno In ATTLIST of: An attribute declared value
|
||||
almost all elements for a "boolean" attribute
|
||||
|
||||
%paracon In content model of: The "text" (logical content)
|
||||
<entry> of the model group for <entry>
|
||||
|
||||
%titles In content model of: The "title" part of the model
|
||||
table element group for the table element
|
||||
|
||||
%tbl.table.name In declaration of: The name of the "table"
|
||||
table element element
|
||||
|
||||
%tbl.table-titles.mdl In content model of: The model group for the title
|
||||
table elements part of the content model for
|
||||
table element
|
||||
|
||||
%tbl.table.mdl In content model of: The model group for the content
|
||||
table elements model for table element,
|
||||
often (and by default) defined
|
||||
in terms of %tbl.table-titles.mdl
|
||||
and tgroup
|
||||
|
||||
%tbl.table.att In ATTLIST of: Additional attributes on the
|
||||
table element table element
|
||||
|
||||
%bodyatt In ATTLIST of: Additional attributes on the
|
||||
table element table element (for backward
|
||||
compatibility with the SGML
|
||||
model)
|
||||
|
||||
%tbl.tgroup.mdl In content model of: The model group for the content
|
||||
<tgroup> model for <tgroup>
|
||||
|
||||
%tbl.tgroup.att In ATTLIST of: Additional attributes on the
|
||||
<tgroup> <tgroup> element
|
||||
|
||||
%tbl.thead.att In ATTLIST of: Additional attributes on the
|
||||
<thead> <thead> element
|
||||
|
||||
%tbl.tbody.att In ATTLIST of: Additional attributes on the
|
||||
<tbody> <tbody> element
|
||||
|
||||
%tbl.colspec.att In ATTLIST of: Additional attributes on the
|
||||
<colspec> <colspec> element
|
||||
|
||||
%tbl.row.mdl In content model of: The model group for the content
|
||||
<row> model for <row>
|
||||
|
||||
%tbl.row.att In ATTLIST of: Additional attributes on the
|
||||
<row> <row> element
|
||||
|
||||
%tbl.entry.mdl In content model of: The model group for the content
|
||||
<entry> model for <entry>
|
||||
|
||||
%tbl.entry.att In ATTLIST of: Additional attributes on the
|
||||
<entry> <entry> element
|
||||
|
||||
This set of declarations will use the default definitions shown below
|
||||
for any of these parameter entities that are not declared before this
|
||||
set of declarations is referenced.
|
||||
-->
|
||||
|
||||
<!-- These definitions are not directly related to the table model, but are
|
||||
used in the default CALS table model and may be defined elsewhere (and
|
||||
prior to the inclusion of this table module) in the referencing DTD. -->
|
||||
|
||||
<!ENTITY % yesorno 'NMTOKEN'> <!-- no if zero(s), yes if any other value -->
|
||||
<!ENTITY % titles 'title?'>
|
||||
<!ENTITY % pcd "#PCDATA">
|
||||
<!ENTITY % paracon '%pcd;'> <!-- default for use in entry content -->
|
||||
|
||||
<!--
|
||||
The parameter entities as defined below change and simplify the CALS table
|
||||
model as published (as part of the Example DTD) in MIL-HDBK-28001. The
|
||||
resulting simplified DTD has support from the SGML Open vendors and is
|
||||
therefore more interoperable among different systems.
|
||||
|
||||
These following declarations provide the Exchange default definitions
|
||||
for these entities. However, these entities can be redefined (by giving
|
||||
the appropriate parameter entity declaration(s) prior to the reference
|
||||
to this Table Model declaration set entity) to fit the needs of the
|
||||
current application.
|
||||
|
||||
Note, however, that changes may have significant effect on the ability to
|
||||
interchange table information. These changes may manifest themselves
|
||||
in useability, presentation, and possible structure information degradation.
|
||||
-->
|
||||
|
||||
<!ENTITY % tbl.table.name "table">
|
||||
<!ENTITY % tbl.table-titles.mdl "%titles;,">
|
||||
<!ENTITY % tbl.table-main.mdl "tgroup+">
|
||||
<!ENTITY % tbl.table.mdl "%tbl.table-titles.mdl; %tbl.table-main.mdl;">
|
||||
<!ENTITY % tbl.table.att "
|
||||
pgwide %yesorno; #IMPLIED ">
|
||||
<!ENTITY % bodyatt "">
|
||||
<!ENTITY % tbl.tgroup.mdl "colspec*,thead?,tbody">
|
||||
<!ENTITY % tbl.tgroup.att "">
|
||||
<!ENTITY % tbl.thead.att "">
|
||||
<!ENTITY % tbl.tbody.att "">
|
||||
<!ENTITY % tbl.colspec.att "">
|
||||
<!ENTITY % tbl.row.mdl "entry+">
|
||||
<!ENTITY % tbl.row.att "">
|
||||
<!ENTITY % tbl.entry.mdl "(%paracon;)*">
|
||||
<!ENTITY % tbl.entry.att "">
|
||||
|
||||
<!ENTITY % tbl.frame.attval "top|bottom|topbot|all|sides|none">
|
||||
<!ENTITY % tbl.tbody.mdl "row+">
|
||||
|
||||
<!-- ===== Element and attribute declarations follow. ===== -->
|
||||
|
||||
<!--
|
||||
Default declarations previously defined in this entity and
|
||||
referenced below include:
|
||||
ENTITY % tbl.table.name "table"
|
||||
ENTITY % tbl.table-titles.mdl "%titles;,"
|
||||
ENTITY % tbl.table.mdl "%tbl.table-titles; tgroup+"
|
||||
ENTITY % tbl.table.att "
|
||||
pgwide %yesorno; #IMPLIED "
|
||||
-->
|
||||
|
||||
<!ELEMENT %tbl.table.name; (%tbl.table.mdl;)>
|
||||
|
||||
<!ATTLIST %tbl.table.name;
|
||||
frame (%tbl.frame.attval;) #IMPLIED
|
||||
colsep %yesorno; #IMPLIED
|
||||
rowsep %yesorno; #IMPLIED
|
||||
%tbl.table.att;
|
||||
%bodyatt;
|
||||
>
|
||||
|
||||
<!--
|
||||
Default declarations previously defined in this entity and
|
||||
referenced below include:
|
||||
ENTITY % tbl.tgroup.mdl "colspec*,thead?,tbody"
|
||||
ENTITY % tbl.tgroup.att ""
|
||||
-->
|
||||
|
||||
<!ELEMENT tgroup (%tbl.tgroup.mdl;) >
|
||||
|
||||
<!ATTLIST tgroup
|
||||
cols NMTOKEN #REQUIRED
|
||||
colsep %yesorno; #IMPLIED
|
||||
rowsep %yesorno; #IMPLIED
|
||||
align (left|right|center|justify|char) #IMPLIED
|
||||
%tbl.tgroup.att;
|
||||
>
|
||||
|
||||
<!--
|
||||
Default declarations previously defined in this entity and
|
||||
referenced below include:
|
||||
ENTITY % tbl.colspec.att ""
|
||||
-->
|
||||
|
||||
<!ELEMENT colspec EMPTY >
|
||||
|
||||
<!ATTLIST colspec
|
||||
colnum NMTOKEN #IMPLIED
|
||||
colname NMTOKEN #IMPLIED
|
||||
colwidth CDATA #IMPLIED
|
||||
colsep %yesorno; #IMPLIED
|
||||
rowsep %yesorno; #IMPLIED
|
||||
align (left|right|center|justify|char) #IMPLIED
|
||||
char CDATA #IMPLIED
|
||||
charoff NMTOKEN #IMPLIED
|
||||
%tbl.colspec.att;
|
||||
>
|
||||
|
||||
<!--
|
||||
Default declarations previously defined in this entity and
|
||||
referenced below include:
|
||||
ENTITY % tbl.thead.att ""
|
||||
-->
|
||||
|
||||
<!ELEMENT thead (row+)>
|
||||
|
||||
<!ATTLIST thead
|
||||
valign (top|middle|bottom) #IMPLIED
|
||||
%tbl.thead.att;
|
||||
>
|
||||
|
||||
<!--
|
||||
Default declarations previously defined in this entity and
|
||||
referenced below include:
|
||||
ENTITY % tbl.tbody.att ""
|
||||
-->
|
||||
|
||||
<!ELEMENT tbody (%tbl.tbody.mdl;)>
|
||||
|
||||
<!ATTLIST tbody
|
||||
valign (top|middle|bottom) #IMPLIED
|
||||
%tbl.tbody.att;
|
||||
>
|
||||
|
||||
<!--
|
||||
Default declarations previously defined in this entity and
|
||||
referenced below include:
|
||||
ENTITY % tbl.row.mdl "entry+"
|
||||
ENTITY % tbl.row.att ""
|
||||
-->
|
||||
|
||||
<!ELEMENT row (%tbl.row.mdl;)>
|
||||
|
||||
<!ATTLIST row
|
||||
rowsep %yesorno; #IMPLIED
|
||||
valign (top|middle|bottom) #IMPLIED
|
||||
%tbl.row.att;
|
||||
>
|
||||
|
||||
|
||||
<!--
|
||||
Default declarations previously defined in this entity and
|
||||
referenced below include:
|
||||
ENTITY % paracon "#PCDATA"
|
||||
ENTITY % tbl.entry.mdl "(%paracon;)*"
|
||||
ENTITY % tbl.entry.att ""
|
||||
-->
|
||||
|
||||
<!ELEMENT entry (%tbl.entry.mdl;)*>
|
||||
|
||||
<!ATTLIST entry
|
||||
colname NMTOKEN #IMPLIED
|
||||
namest NMTOKEN #IMPLIED
|
||||
nameend NMTOKEN #IMPLIED
|
||||
morerows NMTOKEN #IMPLIED
|
||||
colsep %yesorno; #IMPLIED
|
||||
rowsep %yesorno; #IMPLIED
|
||||
align (left|right|center|justify|char) #IMPLIED
|
||||
char CDATA #IMPLIED
|
||||
charoff NMTOKEN #IMPLIED
|
||||
valign (top|middle|bottom) #IMPLIED
|
||||
%tbl.entry.att;
|
||||
>
|
|
@ -1,107 +0,0 @@
|
|||
README for the DocBook Stylesheets
|
||||
|
||||
These are XSL stylesheets for the DocBook XML DTD. (They would
|
||||
also work for the DocBook DTD, modulo certain namecase problems
|
||||
and the fact that there aren't (yet) any XSL implementations
|
||||
that work with SGML source documents.)
|
||||
|
||||
As of version 1.0, most of the elements in DocBook are handled
|
||||
in some way or another, usually reasonably, but there's still
|
||||
lots of work to be done.
|
||||
|
||||
For more information, see http://docbook.sourceforge.net/
|
||||
|
||||
Manifest
|
||||
--------
|
||||
|
||||
README this file
|
||||
TODO planned features not yet implemented (may be incomplete :-)
|
||||
BUGS known problems (may also be incomplete :-)
|
||||
VERSION the current version number (note that this is an XSL stylesheet,
|
||||
included by both fo/docbook.xsl and html/docbook.xsl)
|
||||
WhatsNew changes since the last public release (for a complete list
|
||||
of changes, see the ChangeLog file(s))
|
||||
common/ contains code common to both stylesheets
|
||||
doc/ documentation
|
||||
docsrc/ documentation sources
|
||||
extensions/ Java extensions
|
||||
fo/ stylesheets that produce XSL FO
|
||||
html/ stylesheets that produce HTML
|
||||
htmlhelp/ stylesheets that produce HTML Help
|
||||
images/ images
|
||||
javahelp/ stylesheets that produce Java Help
|
||||
lib/ contains schema-independent functions
|
||||
template/ contains templates for building stylesheet customization layers
|
||||
xhtml/ stylesheets that produce XHTML
|
||||
|
||||
Changes
|
||||
-------
|
||||
|
||||
See the ChangeLog in each directory for additional information
|
||||
about the specific changes.
|
||||
|
||||
See WhatsNew for changes since the last release.
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
Unpack the distribution somewhere.
|
||||
|
||||
Use
|
||||
---
|
||||
|
||||
Process your DocBook documents with one of the following stylesheets
|
||||
using your favorite XSLT processor:
|
||||
|
||||
xhtml/docbook.xsl - for XHTML
|
||||
html/docbook.xsl - for HTML (as a single file)
|
||||
html/chunk.xsl - for HTML (multiple files)
|
||||
fo/docbook.xsl - for XSL FO
|
||||
htmlhelp/htmlhelp.xsl - for HTML Help
|
||||
javahelp/javahelp.xsl - for JavaHelp
|
||||
|
||||
Copyright
|
||||
---------
|
||||
|
||||
Copyright (C) 1999, 2000, 2001, 2002 Norman Walsh
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
files (the ``Software''), to deal in the Software without
|
||||
restriction, including without limitation the rights to use,
|
||||
copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following
|
||||
conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
Except as contained in this notice, the names of individuals
|
||||
credited with contribution to this software shall not be used in
|
||||
advertising or otherwise to promote the sale, use or other
|
||||
dealings in this Software without prior written authorization
|
||||
from the individuals in question.
|
||||
|
||||
Any stylesheet derived from this Software that is publically
|
||||
distributed will be identified with a different name and the
|
||||
version strings in any derived Software will be changed so that
|
||||
no possibility of confusion between the derived package and this
|
||||
Software will exist.
|
||||
|
||||
Warranty
|
||||
--------
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER
|
||||
CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
Contacting the Author
|
||||
---------------------
|
||||
|
||||
These stylesheets are maintained by Norman Walsh, <ndw@nwalsh.com>.
|
|
@ -1,84 +0,0 @@
|
|||
<?xml version='1.0'?> <!-- -*- nxml -*- -->
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:fm="http://freshmeat.net/projects/freshmeat-submit/"
|
||||
xmlns:sf="http://sourceforge.net/"
|
||||
exclude-result-prefixes="fm sf"
|
||||
version='1.0'>
|
||||
|
||||
<xsl:param name="VERSION" select="string(document('')//fm:Version[1])"/>
|
||||
<xsl:param name="sf-relid" select="0"/>
|
||||
<xsl:strip-space elements="fm:*"/>
|
||||
|
||||
<fm:project>
|
||||
<fm:Project>DocBook</fm:Project>
|
||||
<fm:Branch>XSL Stylesheets</fm:Branch>
|
||||
<fm:Version>1.65.1</fm:Version>
|
||||
<!--
|
||||
<fm:License>MIT/X Consortium License</fm:License>
|
||||
-->
|
||||
<fm:Release-Focus>
|
||||
<!-- initial freshmeat announcement -->
|
||||
<!-- documentation -->
|
||||
<!-- code cleanup -->
|
||||
<!-- Minor feature enhancements -->
|
||||
<!-- major feature enhancements -->
|
||||
Minor bugfixes
|
||||
<!-- major bugfixes -->
|
||||
<!-- minor security fixes -->
|
||||
<!-- major security fixes -->
|
||||
</fm:Release-Focus>
|
||||
<fm:Home-Page-URL>http://sourceforge.net/projects/docbook/</fm:Home-Page-URL>
|
||||
<fm:Gzipped-Tar-URL>http://prdownloads.sourceforge.net/docbook/docbook-xsl-{VERSION}.tar.gz?download</fm:Gzipped-Tar-URL>
|
||||
<fm:Zipped-Tar-URL>http://prdownloads.sourceforge.net/docbook/docbook-xsl-{VERSION}.zip?download</fm:Zipped-Tar-URL>
|
||||
<fm:Changelog-URL>http://sourceforge.net/project/shownotes.php?release_id={SFRELID}</fm:Changelog-URL>
|
||||
<fm:CVS-URL>http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/xsl/</fm:CVS-URL>
|
||||
<fm:Mailing-List-URL>http://lists.oasis-open.org/archives/docbook-apps/</fm:Mailing-List-URL>
|
||||
<fm:Changes>Small bug fixes. Fixed CA localization.
|
||||
</fm:Changes>
|
||||
</fm:project>
|
||||
|
||||
<xsl:template match="/" priority="-100">
|
||||
<xsl:if test="$sf-relid = 0">
|
||||
<xsl:message terminate="yes">
|
||||
<xsl:text>You must specify the sf-relid as a parameter.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:apply-templates select="//fm:project"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="fm:project">
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:apply-templates/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:apply-templates select="fm:Changes" mode="text"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="fm:Changes"/>
|
||||
|
||||
<xsl:template match="fm:Gzipped-Tar-URL|fm:Zipped-Tar-URL">
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
<xsl:text>: </xsl:text>
|
||||
<xsl:value-of select="substring-before(., '{VERSION}')"/>
|
||||
<xsl:value-of select="$VERSION"/>
|
||||
<xsl:value-of select="substring-after(., '{VERSION}')"/>
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="fm:Changelog-URL">
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
<xsl:text>: </xsl:text>
|
||||
<xsl:value-of select="substring-before(., '{SFRELID}')"/>
|
||||
<xsl:value-of select="$sf-relid"/>
|
||||
<xsl:value-of select="substring-after(., '{SFRELID}')"/>
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="fm:*">
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
<xsl:text>: </xsl:text>
|
||||
<xsl:value-of select="normalize-space(.)"/>
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
|
@ -1,624 +0,0 @@
|
|||
2004-02-18 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* labels.xsl: Turn off procedure number when formal.procedures = 0.
|
||||
|
||||
2004-01-29 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* subtitles.xsl, titles.xsl: Support 'info'
|
||||
|
||||
2004-01-26 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* targets.xsl: Pass empty doctype parameters to write.chunk so the
|
||||
output can be used as an entity without DOCTYPE.
|
||||
|
||||
2003-12-31 Jirka Kosek <kosek@users.sourceforge.net>
|
||||
|
||||
* autoidx-ng.xsl, l10n.dtd: Added support for new i18n friendly indexing method
|
||||
|
||||
2003-12-15 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, Makefile: Support sr_Latn locale
|
||||
|
||||
2003-12-13 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* l10n.xml: Added sr_Latn.xml for Serbian in Latin script.
|
||||
|
||||
2003-12-06 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Fixed bug #851603 infinite recursion in copyright.year when
|
||||
no <year> elements at all.
|
||||
|
||||
2003-12-05 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* common.xsl: section.level now computes refentry sections relative to container element.
|
||||
|
||||
2003-11-30 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl, labels.xsl, subtitles.xsl, table.xsl, targets.xsl, titles.xsl:
|
||||
Added CVS $Id: ChangeLog 3890 2004-06-03 16:31:32Z steveebersole $ comment.
|
||||
|
||||
2003-11-17 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* labels.xsl: Fixed bug where sect1 generated infinite loop when root element
|
||||
and $section.label.includes.component.label is non zero.
|
||||
|
||||
2003-10-12 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl: Fixed cut-and-paste typo in substitute.markup template.
|
||||
|
||||
2003-09-23 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* pi.xsl: Fixed dbdatetime PI, which was using context
|
||||
datetime-abbrev for format "B" rather than datetime-full.
|
||||
|
||||
2003-08-27 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* titles.xsl: Support HTML tables
|
||||
|
||||
2003-08-18 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore: Ignore generate XML documents for Latin and Bangla
|
||||
|
||||
* Makefile, l10n.xml: Add support for Latin
|
||||
|
||||
2003-07-31 Jirka Kosek <kosek@users.sourceforge.net>
|
||||
|
||||
* Makefile: Update Makefile to new gentext mechanism
|
||||
|
||||
2003-07-31 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl: Added template for question in object.xref.markup mode
|
||||
to handle case of defaultlabel = qanda.
|
||||
|
||||
* labels.xsl: Removed processing of @label on qandadiv since that is
|
||||
not an allowed attribute of qandadiv.
|
||||
|
||||
2003-07-25 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* Makefile, l10n.xml: Added bn.xml Bangla language.
|
||||
|
||||
* gentext.xsl: Handles new xref contexts and the new xrefstyle attribute
|
||||
on xref elements.
|
||||
|
||||
* pi.xsl: Now uses new datetime-full and datetime-abbrev gentext
|
||||
contexts for certain date components.
|
||||
|
||||
2003-07-08 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* l10n.xsl: Removed extraneous variable l10n.name which is not used.
|
||||
|
||||
2003-06-24 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* l10n.xsl: Fixed bug in l10n.language template where $target parameter
|
||||
was missing from xpath expression.
|
||||
|
||||
2003-06-21 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, Makefile: Added Croatian
|
||||
|
||||
2003-05-19 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, Makefile: Added Arabic
|
||||
|
||||
2003-05-08 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* titles.xsl: Support 'title.markup' on glossentry
|
||||
|
||||
2003-04-29 Jirka Kosek <kosek@users.sourceforge.net>
|
||||
|
||||
* pi.xsl: Added localization support for datetime PI
|
||||
|
||||
2003-04-27 <dcramer@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Added level 6 to test for section depth in section.level template so that section.title.level6.properties will be used for sections that are 6 deep or deeper. This should also cause a h6 to be created in html output.
|
||||
|
||||
2003-04-16 Jirka Kosek <kosek@users.sourceforge.net>
|
||||
|
||||
* pi.xsl: Changed PI name from <?timestamp?> to <?dbtimestamp?>
|
||||
|
||||
2003-04-14 Jirka Kosek <kosek@users.sourceforge.net>
|
||||
|
||||
* pi.xsl: New file.
|
||||
|
||||
2003-04-13 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* table.xsl: A few bug fixes for the colsep/rowsep code
|
||||
|
||||
2003-04-12 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Don't use SVG graphics if use.svg=0
|
||||
|
||||
* table.xsl: Support template to find out if there are more columns in the current row of a table
|
||||
|
||||
2003-04-05 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl: Now uses number-and-title-template for sections only
|
||||
if $section.autolabel is not zero.
|
||||
|
||||
2003-03-02 Jirka Kosek <kosek@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Fixed several errors related to TeX math processing
|
||||
|
||||
2003-02-25 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* l10n.dtd: Added missing 'english-language-name' attribute to the l10n
|
||||
element, and the missing 'style' attribute to the template
|
||||
element so the current gentext documents will validate.
|
||||
|
||||
2003-01-30 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Corrected several references to parameter $qanda.defaultlabel
|
||||
that were missing the "$".
|
||||
|
||||
2003-01-23 Adam Di Carlo <adicarlo@users.sourceforge.net>
|
||||
|
||||
* Makefile: make use of cvstools/Makefile.incl
|
||||
|
||||
2003-01-20 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl: Support experimental parameter to specify that number-and-title xrefs should be used even when things are numbered
|
||||
|
||||
* gentext.xsl: Added object.titleabbrev.markup for consistency
|
||||
|
||||
* l10n.xsl: Added gentext.template.exists to test if a gentext template exists. Clever name, huh?
|
||||
|
||||
* titles.xsl: Expanded support for obtaining titleabbrevs
|
||||
|
||||
2003-01-10 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, l10n.xml: Added bg.xml
|
||||
|
||||
* Makefile: Add Bulgarian
|
||||
|
||||
2003-01-02 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* labels.xsl, titles.xsl: Support setindex (there were all sorts of things wrong with it)
|
||||
|
||||
2003-01-01 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* table.xsl: CALS says the default for colsep and rowsep is 1.
|
||||
|
||||
* table.xsl: Fix variable scoping problem
|
||||
|
||||
* titles.xsl: Support titleabbrev (outside of info elements anyway)
|
||||
|
||||
2002-12-18 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* common.xsl: The select.mediaobject.index template now uses the
|
||||
$stylesheet.result.type parameter to choose the role
|
||||
value, with xhtml falling back to html if needed.
|
||||
|
||||
2002-12-17 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Changed selection of mediaobject to be more consistent using
|
||||
a separate select.mediaobject.index template. Also added
|
||||
text-align to block containing external-graphic in fo output.
|
||||
|
||||
2002-11-23 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Fixed bug in orderedlist-starting-number test when
|
||||
@continuation not set.
|
||||
|
||||
2002-11-14 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Handle nested refsections in section.level
|
||||
|
||||
* gentext.xsl: Pass full xpath name to gentext.template instead of just the local-name
|
||||
|
||||
* l10n.xsl: Make gentext.template search through /-separated names
|
||||
|
||||
2002-10-19 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* l10n.xsl: Support output of language attribute
|
||||
|
||||
2002-10-09 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* l10n.xsl: Make 3166 language codes work in upper or lowercase
|
||||
|
||||
2002-10-02 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Added orderedlist-starting-number and orderedlist-item-number templates
|
||||
|
||||
2002-10-01 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Changed the section.level template to return a number that matches
|
||||
the section level (sect1 = 1, etc.).
|
||||
|
||||
2002-09-27 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* l10n.xml: Add Thai
|
||||
|
||||
2002-09-15 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, Makefile, l10n.xml: Added LT and VI localizations
|
||||
|
||||
2002-09-04 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Refactor person.name templates so that it's easy to override them
|
||||
|
||||
* l10n.xsl: Move l10n.* parameters into ../params so they can be properly documented; made l10n.gentext.use.xref.language a numeric boolean parameter instead of a proper boolean
|
||||
|
||||
2002-09-03 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Remove spurious character on line 432
|
||||
|
||||
* table.xsl: Make sure row-level colsep and rowsep values are 'inherited' onto missing cells
|
||||
|
||||
2002-09-02 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Support person-name style from localization data in personal names
|
||||
|
||||
2002-08-28 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* table.xsl: Make inherited attributes work for 'missing' table cells
|
||||
|
||||
2002-07-29 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* targetdatabase.dtd: Forgot to fix the attribute on the <obj> element
|
||||
as well.
|
||||
|
||||
* targetdatabase.dtd: Changed the targetptr attribute from #REQUIRED to #IMPLIED
|
||||
since it is not required on all objects.
|
||||
|
||||
* targetdatabase.dtd: Replaced targetid attribute on document with targetptr
|
||||
per the decision of the DocBook Technical Committee.
|
||||
|
||||
2002-07-17 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* labels.xsl: Fixed thinko
|
||||
|
||||
* labels.xsl: Don't count equations without titles when labelling equations
|
||||
|
||||
2002-07-13 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* targets.xsl: Fixed output encoding to utf-8 so a targets database
|
||||
can handle mixed languages.
|
||||
Added omit-xml-declaration to get around the standalone
|
||||
attribute in the XML declaration not being permitted
|
||||
in system entities.
|
||||
|
||||
2002-07-09 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* labels.xsl: Bug #558333: use containing section for the label of a bridgehead if section.autolabel is non-zero
|
||||
|
||||
2002-07-07 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Changed the name of the second-order itemizedlist mark
|
||||
from 'round' (not supported in browsers' <ul> 'type' attribute)
|
||||
to 'circle', which is supported.
|
||||
Both are already supported in FO stylesheet.
|
||||
|
||||
2002-07-06 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* targets.xsl: The default.encoding parameter has been renamed chunker.output.encoding
|
||||
|
||||
2002-07-05 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* labels.xsl, titles.xsl: Added 'verbose' parameter to default templates in
|
||||
title.markup mode and label.markup mode, and made
|
||||
the error message conditional on that parameter. The
|
||||
default value is 1, so the message will still be
|
||||
there for normal usage. But the targets.xsl
|
||||
stylesheet sets verbose to 0 when trolling for
|
||||
cross reference targets to eliminate useless noise
|
||||
on elements that have an id attribute but no title or label.
|
||||
|
||||
* targetdatabase.dtd: New file.
|
||||
|
||||
* targets.xsl: New file.
|
||||
|
||||
2002-06-11 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Augmented debugging message (commented out)
|
||||
|
||||
* gentext.xsl: Experimental support for xrefstyle; support for %d in templates
|
||||
|
||||
* l10n.xsl: Experimental support for xrefstyle
|
||||
|
||||
* titles.xsl: Support refsynopsisdiv in title.markup mode
|
||||
|
||||
2002-05-23 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Support for SVG in HTML
|
||||
|
||||
2002-05-21 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl: Whitespace
|
||||
|
||||
* labels.xsl: Don't generate '. ' after QandA labels
|
||||
|
||||
2002-05-12 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Fix bugs in extension checking in mediaobject.filename
|
||||
|
||||
* l10n.xsl: Reworked test in gentext.template; should have no user-visible changes
|
||||
|
||||
* table.xsl: Removed some obsolete templates; reworked inheritance for improved border support (still implements old DocBook semantics which aren't quite CALS)
|
||||
|
||||
* titles.xsl: Improved error message
|
||||
|
||||
2002-04-21 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, Makefile, l10n.xml: Add support for Hebrew localization
|
||||
|
||||
2002-03-24 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Change comment: personname is no longer experimental
|
||||
|
||||
2002-03-18 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Replace generate.*.toc and generate.*.lot with single generate.toc parameter.
|
||||
|
||||
2002-03-18 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl: Replaced the substitute-markup template with one
|
||||
using simpler logic. Added params for the content
|
||||
to be substituted so it can be used with olinks
|
||||
where the content is supplied from a data file.
|
||||
|
||||
2002-03-14 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Handle revisionflag a little better on copyrights
|
||||
|
||||
* common.xsl, gentext.xsl, l10n.xsl, labels.xsl, subtitles.xsl, table.xsl, titles.xsl:
|
||||
Whitespace only: change CR/LF back to LF. Norm was a total moron.
|
||||
|
||||
* common.xsl, gentext.xsl, l10n.xsl, labels.xsl, subtitles.xsl, table.xsl, titles.xsl:
|
||||
Whitespace changes only: use PC-style CR/LF because Unix clients choke on this far less often than PC clients choke on the reverse. Grrr.
|
||||
|
||||
2002-03-07 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* titles.xsl: refentry title in title.markup mode now follows $allow-anchors setting
|
||||
to prevent index entries from appearing in the TOC.
|
||||
|
||||
2002-01-28 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* l10n.dtd, l10n.xml: Tweaks to the l10n.dtd to make it as namespace aware as DTDs can be
|
||||
|
||||
2002-01-25 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* table.xsl: Fix bug that caused rowsep and colsep to be ignored on empty cells
|
||||
|
||||
2002-01-10 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* l10n.xsl: Don't rely on the order of attribute nodes cause they don't have one
|
||||
|
||||
2002-01-03 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, Makefile: Added Thai localization
|
||||
|
||||
* common.xsl: Calculate itemized list symbol based on depth analagous to orderedlist numeration
|
||||
|
||||
* gentext.xsl: Use unnumbered gentext keys appropriately
|
||||
|
||||
2001-12-15 Jirka Kosek <kosek@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Improved support for TeX math inside equations.
|
||||
|
||||
2001-12-04 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* labels.xsl: Bug #435320: Poor enumeration of LoTs and LoFs
|
||||
|
||||
* titles.xsl: Bug! Can't put HTML here. But what does this break?
|
||||
|
||||
2001-12-02 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* titles.xsl: Make no.anchor.mode 'sticky'. This is really necessary because otherwise title inlines effectively turn it off
|
||||
|
||||
2001-12-01 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* labels.xsl: Improve FAQ labeling
|
||||
|
||||
2001-11-29 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* l10n.xsl: Fixed error message for missing localization so that if
|
||||
missing in en.xml, it doesn't say 'using en'.
|
||||
|
||||
2001-11-28 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Added punct.honorific parameter
|
||||
|
||||
* l10n.xsl: Removed crufty gentext.xref.text template
|
||||
|
||||
2001-11-15 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Support experimental personname wrapper
|
||||
|
||||
2001-11-14 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, Makefile, l10n.xml: Added Basque
|
||||
|
||||
2001-11-12 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Support well-formed documents, use key() instead of id()
|
||||
|
||||
2001-11-09 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, Makefile, l10n.xml: Added Nynorsk
|
||||
|
||||
2001-11-06 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* labels.xsl: Why did I assume sections should always be labelled in articles?
|
||||
|
||||
2001-11-02 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Support FAMILY Given style personal names
|
||||
|
||||
2001-10-30 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, Makefile, l10n.xml: Added Xhosa
|
||||
|
||||
2001-10-16 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* table.xsl: Table support improvements
|
||||
|
||||
2001-10-15 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, Makefile, l10n.xml: Added Ukranian
|
||||
|
||||
* table.xsl: Fix calculation of rowsep and colsep; added experimental support for table.borders.with.css in HTML; calculation of alignments needs to be added along the same lines
|
||||
|
||||
2001-10-14 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* table.xsl: New file.
|
||||
|
||||
2001-09-25 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Support automatic collation of year ranges in copyright
|
||||
|
||||
* l10n.xsl: Fix gentext.nav.* templates
|
||||
|
||||
2001-09-22 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl: Rewrote substitute-markup to support %p
|
||||
|
||||
* gentext.xsl, labels.xsl: Bug #463033: allow xref to list items (in orderedlists) and varlistentrys
|
||||
|
||||
* titles.xsl: Support title.markup for legal notices
|
||||
|
||||
2001-08-29 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Fix orderedlist numerations
|
||||
|
||||
2001-08-14 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* l10n.xsl: Calculation of the dingbat nodeset was simply broken
|
||||
|
||||
2001-08-13 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* Makefile: Added stylesheet as a dependency
|
||||
|
||||
2001-08-04 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* l10n.dtd: Rename internationalization to i18n, localization to l10n
|
||||
|
||||
* l10n.xml: Rename internationalization to i18n, localization to l10n, add namespace declaration
|
||||
|
||||
* l10n.xsl: Support a local i18n override, rename internationalization to i18n, localization to l10n, add namespace declaration
|
||||
|
||||
* labels.xsl: PartIntros never get a label
|
||||
|
||||
2001-08-01 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl: Pass allow-anchors through properly
|
||||
|
||||
* labels.xsl: Fix question labelling
|
||||
|
||||
* titles.xsl: Output anchors for titles if the titles have ids
|
||||
|
||||
2001-07-31 Robert Stayton <bobstayton@users.sourceforge.net>
|
||||
|
||||
* l10n.xsl: Reverted the change from [last()] to [1] back to [last()]
|
||||
because that is the correct code.
|
||||
|
||||
* l10n.xsl: Added code to the "l10n.language" template to fall
|
||||
back to the two-letter lang code if a longer lang
|
||||
does not have a <lang>.xml localization file.
|
||||
And it falls back to the default lang if it can't
|
||||
find that either.
|
||||
|
||||
Also fixed a bug for finding the lang attribute.
|
||||
It was using the last() function, but in an
|
||||
ancestor-or-self node set you want the first ancestor
|
||||
(closest) with a lang value.
|
||||
|
||||
49c49
|
||||
< |ancestor-or-self::*/@xml:lang)[last()]"/>
|
||||
---
|
||||
> |ancestor-or-self::*/@xml:lang)[1]"/>
|
||||
|
||||
2001-07-17 Jirka Kosek <kosek@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Fixed bug #442160. Parameter graphic.default.extension is now used also for <graphic> and <inlinegraphic> not only for <imagedata>.
|
||||
|
||||
2001-07-08 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl, titles.xsl: Support xref to bridgehead
|
||||
|
||||
2001-07-04 <uid48421@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, Makefile, l10n.xml: Added support for Turkish
|
||||
|
||||
* .cvsignore, Makefile, l10n.xml: Added Afrikaans
|
||||
|
||||
* common.xsl, titles.xsl: Bug #429011, fix xref to qandset elements
|
||||
|
||||
* labels.xsl: Bug #426188, fix question/answer labels
|
||||
|
||||
2001-06-21 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl, gentext.xsl, labels.xsl, titles.xsl: Use common code to calculate step numbers; support xref to procedures and steps; added formal.procedures parameter
|
||||
|
||||
2001-06-20 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* l10n.xsl: Xalan debugging; harmless changes
|
||||
|
||||
2001-06-14 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* subtitles.xsl: Support subtitle on article
|
||||
|
||||
2001-05-23 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Fix dup. template bug with is.graphic.*
|
||||
|
||||
* gentext.xsl: Workaround article/appendix formatting bug (HACK)
|
||||
|
||||
* labels.xsl: Label appendixes correctly in books and articles
|
||||
|
||||
2001-05-21 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* labels.xsl: Tweak for section labels in articles
|
||||
|
||||
2001-05-12 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: Added refsect* to the section.level template
|
||||
|
||||
2001-05-04 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, Makefile, l10n.xml: Add Serbian localization
|
||||
|
||||
2001-04-21 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* common.xsl: My first crude attempts at support for qandaset
|
||||
|
||||
2001-04-19 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl, titles.xsl: Fix bug #417193, make sure allow-anchors is properly propagated through substitute-markup
|
||||
|
||||
2001-04-18 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* titles.xsl: Suppress indexterms in no.anchor.mode
|
||||
|
||||
2001-04-17 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* labels.xsl: Move label.from.part parameter into param.xsl; default it to 0 so that chapters and appendixes are numbered monotonically throughout a book by default. Moved param.xsl up in the include list, just for good measure
|
||||
|
||||
2001-04-16 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl: Fix bug in processing of subtitle content
|
||||
|
||||
* labels.xsl: Only label.from.part if there actually is a part
|
||||
|
||||
* titles.xsl: Don't put ulink, link, olink, or xref in titles if anchor's aren't allowed
|
||||
|
||||
2001-04-15 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl: Localize the textonly calculations by creating a object.title.markup.textonly mode
|
||||
|
||||
2001-04-03 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* gentext.xsl, labels.xsl, titles.xsl: Fix bug 412487, make XSL-generated callout marks honor callout mark parameters
|
||||
|
||||
* titles.xsl: Restore no.anchor.mode and suppress footnotes in no.anchor.mode
|
||||
|
||||
2001-04-02 Norman Walsh <nwalsh@users.sourceforge.net>
|
||||
|
||||
* .cvsignore, Makefile: New file.
|
||||
|
||||
* common.xsl, gentext.xsl, l10n.xml, l10n.xsl, labels.xsl, subtitles.xsl, titles.xsl:
|
||||
New file.
|
||||
|
||||
* gentext.xsl: Commented out debugging messages
|
||||
|
||||
* l10n.dtd: New file.
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,135 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet [
|
||||
<!ENTITY primary 'normalize-space(concat(primary/@sortas, primary[not(@sortas)]))'>
|
||||
]>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
version="1.0"
|
||||
xmlns:func="http://exslt.org/functions"
|
||||
xmlns:exslt="http://exslt.org/common"
|
||||
xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"
|
||||
extension-element-prefixes="func exslt"
|
||||
exclude-result-prefixes="func exslt i l"
|
||||
xmlns:i="urn:cz-kosek:functions:index">
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: autoidx-ng.xsl 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the DocBook XSL Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- Returns index group code for given term -->
|
||||
<func:function name="i:group-index">
|
||||
<xsl:param name="term"/>
|
||||
|
||||
<xsl:variable name="letters-rtf">
|
||||
<xsl:variable name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="local.l10n.letters"
|
||||
select="($local.l10n.xml//l:i18n/l:l10n[@language=$lang]/l:letters)[1]"/>
|
||||
|
||||
<xsl:variable name="l10n.letters"
|
||||
select="($l10n.xml/l:i18n/l:l10n[@language=$lang]/l:letters)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($local.l10n.letters) > 0">
|
||||
<xsl:copy-of select="$local.l10n.letters"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="count($l10n.letters) > 0">
|
||||
<xsl:copy-of select="$l10n.letters"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>No "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization of index grouping letters exists</xsl:text>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$lang = 'en'">
|
||||
<xsl:text>.</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:text>; using "en".</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:message>
|
||||
|
||||
<xsl:copy-of select="($l10n.xml/l:i18n/l:l10n[@language='en']/l:letters)[1]"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="letters" select="exslt:node-set($letters-rtf)/*"/>
|
||||
|
||||
<xsl:variable name="long-letter-index" select="$letters/l:l[. = substring($term,1,2)]/@i"/>
|
||||
<xsl:variable name="short-letter-index" select="$letters/l:l[. = substring($term,1,1)]/@i"/>
|
||||
<xsl:variable name="letter-index">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$long-letter-index">
|
||||
<xsl:value-of select="$long-letter-index"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$short-letter-index">
|
||||
<xsl:value-of select="$short-letter-index"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>0</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<func:result select="number($letter-index)"/>
|
||||
</func:function>
|
||||
|
||||
<!-- Return index group letter for given group code -->
|
||||
<func:function name="i:group-letter">
|
||||
<xsl:param name="index"/>
|
||||
|
||||
<xsl:variable name="letters-rtf">
|
||||
<xsl:variable name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="local.l10n.letters"
|
||||
select="($local.l10n.xml//l:i18n/l:l10n[@language=$lang]/l:letters)[1]"/>
|
||||
|
||||
<xsl:variable name="l10n.letters"
|
||||
select="($l10n.xml/l:i18n/l:l10n[@language=$lang]/l:letters)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($local.l10n.letters) > 0">
|
||||
<xsl:copy-of select="$local.l10n.letters"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="count($l10n.letters) > 0">
|
||||
<xsl:copy-of select="$l10n.letters"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>No "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization of index grouping letters exists</xsl:text>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$lang = 'en'">
|
||||
<xsl:text>.</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:text>; using "en".</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:message>
|
||||
|
||||
<xsl:copy-of select="($l10n.xml/l:i18n/l:l10n[@language='en']/l:letters)[1]"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="letters" select="exslt:node-set($letters-rtf)/*"/>
|
||||
|
||||
<func:result select="$letters/l:l[@i=$index][1]"/>
|
||||
</func:function>
|
||||
|
||||
<xsl:key name="group-code"
|
||||
match="indexterm"
|
||||
use="i:group-index(&primary;)"/>
|
||||
|
||||
</xsl:stylesheet>
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,624 +0,0 @@
|
|||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="cs" english-language-name="Czech">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<l:gentext key="Abstract" text="Abstrakt"/>
|
||||
<l:gentext key="abstract" text="Abstrakt"/>
|
||||
<l:gentext key="Answer" text="Odpověď:"/>
|
||||
<l:gentext key="answer" text="Odpověď:"/>
|
||||
<l:gentext key="Appendix" text="Příloha"/>
|
||||
<l:gentext key="appendix" text="Příloha"/>
|
||||
<l:gentext key="Article" text="Článek"/>
|
||||
<l:gentext key="article" text="Článek"/>
|
||||
<l:gentext key="Bibliography" text="Bibliografie"/>
|
||||
<l:gentext key="bibliography" text="Bibliografie"/>
|
||||
<l:gentext key="Book" text="Kniha"/>
|
||||
<l:gentext key="book" text="Kniha"/>
|
||||
<l:gentext key="CAUTION" text="Výstraha"/>
|
||||
<l:gentext key="Caution" text="Výstraha"/>
|
||||
<l:gentext key="caution" text="Výstraha"/>
|
||||
<l:gentext key="Chapter" text="Kapitola"/>
|
||||
<l:gentext key="chapter" text="Kapitola"/>
|
||||
<l:gentext key="Colophon" text="Tiráž"/>
|
||||
<l:gentext key="colophon" text="Tiráž"/>
|
||||
<l:gentext key="Copyright" text="Copyright"/>
|
||||
<l:gentext key="copyright" text="Copyright"/>
|
||||
<l:gentext key="Dedication" text="Věnování"/>
|
||||
<l:gentext key="dedication" text="Věnování"/>
|
||||
<l:gentext key="Edition" text="Vydání"/>
|
||||
<l:gentext key="edition" text="Vydání"/>
|
||||
<l:gentext key="Equation" text="Rovnice"/>
|
||||
<l:gentext key="equation" text="Rovnice"/>
|
||||
<l:gentext key="Example" text="Příklad"/>
|
||||
<l:gentext key="example" text="Příklad"/>
|
||||
<l:gentext key="Figure" text="Obrázek"/>
|
||||
<l:gentext key="figure" text="Obrázek"/>
|
||||
<l:gentext key="Glossary" text="Slovník"/>
|
||||
<l:gentext key="glossary" text="Slovník"/>
|
||||
<l:gentext key="GlossSee" text="Viz"/>
|
||||
<l:gentext key="glosssee" text="Viz"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Viz též"/>
|
||||
<l:gentext key="glossseealso" text="Viz též"/>
|
||||
<l:gentext key="IMPORTANT" text="Důležité"/>
|
||||
<l:gentext key="important" text="Důležité"/>
|
||||
<l:gentext key="Important" text="Důležité"/>
|
||||
<l:gentext key="Index" text="Rejstřík"/>
|
||||
<l:gentext key="index" text="Rejstřík"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Právní doložka"/>
|
||||
<l:gentext key="legalnotice" text="Právní doložka"/>
|
||||
<l:gentext key="MsgAud" text="Publikum"/>
|
||||
<l:gentext key="msgaud" text="Publikum"/>
|
||||
<l:gentext key="MsgLevel" text="Úroveň"/>
|
||||
<l:gentext key="msglevel" text="Úroveň"/>
|
||||
<l:gentext key="MsgOrig" text="Původ"/>
|
||||
<l:gentext key="msgorig" text="Původ"/>
|
||||
<l:gentext key="NOTE" text="Poznámka"/>
|
||||
<l:gentext key="Note" text="Poznámka"/>
|
||||
<l:gentext key="note" text="Poznámka"/>
|
||||
<l:gentext key="Part" text="Část"/>
|
||||
<l:gentext key="part" text="Část"/>
|
||||
<l:gentext key="Preface" text="Předmluva"/>
|
||||
<l:gentext key="preface" text="Předmluva"/>
|
||||
<l:gentext key="Procedure" text="Postup"/>
|
||||
<l:gentext key="procedure" text="Postup"/>
|
||||
<l:gentext key="ProductionSet" text="Produkce"/>
|
||||
<l:gentext key="PubDate" text="Publication Date" lang="en"/>
|
||||
<l:gentext key="pubdate" text="Publication date" lang="en"/>
|
||||
<l:gentext key="Published" text="Vydáno"/>
|
||||
<l:gentext key="published" text="Vydáno"/>
|
||||
<l:gentext key="Qandadiv" text="Q & A" lang="en"/>
|
||||
<l:gentext key="qandadiv" text="Q & A" lang="en"/>
|
||||
<l:gentext key="Question" text="Otázka:"/>
|
||||
<l:gentext key="question" text="Otázka:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Odkaz"/>
|
||||
<l:gentext key="reference" text="Odkaz"/>
|
||||
<l:gentext key="RefName" text="Jméno"/>
|
||||
<l:gentext key="refname" text="Jméno"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Přehled"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Přehled"/>
|
||||
<l:gentext key="RevHistory" text="Přehled revizí"/>
|
||||
<l:gentext key="revhistory" text="Přehled revizí"/>
|
||||
<l:gentext key="revision" text="Revize"/>
|
||||
<l:gentext key="Revision" text="Revize"/>
|
||||
<l:gentext key="sect1" text="Oddíl"/>
|
||||
<l:gentext key="sect2" text="Oddíl"/>
|
||||
<l:gentext key="sect3" text="Oddíl"/>
|
||||
<l:gentext key="sect4" text="Oddíl"/>
|
||||
<l:gentext key="sect5" text="Oddíl"/>
|
||||
<l:gentext key="section" text="Oddíl"/>
|
||||
<l:gentext key="Section" text="Oddíl"/>
|
||||
<l:gentext key="see" text="Viz"/>
|
||||
<l:gentext key="See" text="Viz"/>
|
||||
<l:gentext key="seealso" text="Viz též"/>
|
||||
<l:gentext key="Seealso" text="Viz též"/>
|
||||
<l:gentext key="SeeAlso" text="Viz též"/>
|
||||
<l:gentext key="set" text="Sada"/>
|
||||
<l:gentext key="Set" text="Sada"/>
|
||||
<l:gentext key="setindex" text="Rejstřík sady"/>
|
||||
<l:gentext key="SetIndex" text="Rejstřík sady"/>
|
||||
<l:gentext key="Sidebar" text="Marginálie"/>
|
||||
<l:gentext key="sidebar" text="Marginálie"/>
|
||||
<l:gentext key="step" text="krok"/>
|
||||
<l:gentext key="Step" text="Krok"/>
|
||||
<l:gentext key="Table" text="Tabulka"/>
|
||||
<l:gentext key="table" text="Tabulka"/>
|
||||
<l:gentext key="tip" text="Tip"/>
|
||||
<l:gentext key="TIP" text="Tip"/>
|
||||
<l:gentext key="Tip" text="Tip"/>
|
||||
<l:gentext key="Warning" text="Varování"/>
|
||||
<l:gentext key="warning" text="Varování"/>
|
||||
<l:gentext key="WARNING" text="Varování"/>
|
||||
<l:gentext key="and" text="a"/>
|
||||
<l:gentext key="by" text="by"/>
|
||||
<l:gentext key="called" text="called" lang="en"/>
|
||||
<l:gentext key="Edited" text="Vydáno"/>
|
||||
<l:gentext key="edited" text="Vydáno"/>
|
||||
<l:gentext key="Editedby" text="Sestavil"/>
|
||||
<l:gentext key="editedby" text="Sestavil"/>
|
||||
<l:gentext key="in" text="v"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="neexistující prvek"/>
|
||||
<l:gentext key="notes" text="Poznámky"/>
|
||||
<l:gentext key="Notes" text="Poznámky"/>
|
||||
<l:gentext key="Pgs" text="Str."/>
|
||||
<l:gentext key="pgs" text="Str."/>
|
||||
<l:gentext key="Revisedby" text="Revidoval: "/>
|
||||
<l:gentext key="revisedby" text="Revidoval: "/>
|
||||
<l:gentext key="TableNotes" text="Poznámky"/>
|
||||
<l:gentext key="tablenotes" text="Poznámky"/>
|
||||
<l:gentext key="TableofContents" text="Obsah"/>
|
||||
<l:gentext key="tableofcontents" text="Obsah"/>
|
||||
<l:gentext key="the" text="" lang="en"/>
|
||||
<l:gentext key="unexpectedelementname" text="Neočekávané jméno prvku"/>
|
||||
<l:gentext key="unsupported" text="nepodporovaný"/>
|
||||
<l:gentext key="xrefto" text="xref k"/>
|
||||
<l:gentext key="listofequations" text="Seznam rovnic"/>
|
||||
<l:gentext key="ListofEquations" text="Seznam rovnic"/>
|
||||
<l:gentext key="ListofExamples" text="Seznam příkladů"/>
|
||||
<l:gentext key="listofexamples" text="Seznam příkladů"/>
|
||||
<l:gentext key="ListofFigures" text="Seznam obrázků"/>
|
||||
<l:gentext key="listoffigures" text="Seznam obrázků"/>
|
||||
<l:gentext key="ListofProcedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listofprocedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listoftables" text="Seznam tabulek"/>
|
||||
<l:gentext key="ListofTables" text="Seznam tabulek"/>
|
||||
<l:gentext key="ListofUnknown" text="Seznam neznámého"/>
|
||||
<l:gentext key="listofunknown" text="Seznam neznámého"/>
|
||||
<l:gentext key="nav-home" text="Domů"/>
|
||||
<l:gentext key="nav-next" text="Další"/>
|
||||
<l:gentext key="nav-next-sibling" text="Rychle dopředu"/>
|
||||
<l:gentext key="nav-prev" text="Předcházející"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Rychle zpět"/>
|
||||
<l:gentext key="nav-up" text="Nahoru"/>
|
||||
<l:gentext key="nav-toc" text="ToC" lang="en"/>
|
||||
<l:gentext key="Draft" text="Návrh"/>
|
||||
<l:gentext key="above" text="nad"/>
|
||||
<l:gentext key="below" text="pod"/>
|
||||
<l:gentext key="sectioncalled" text="oddíl nazvaný"/>
|
||||
<l:gentext key="index symbols" text="Symboly"/>
|
||||
<l:gentext key="lowercase.alpha" text="aábcčdďeéěfghiíjklmnoópqrřsštťuúůvwxyýzž"/>
|
||||
<l:gentext key="uppercase.alpha" text="AÁBCČDĎEÉĚFGHIÍJKLMNOÓPQRŘSŠTŤUÚŮVWXYÝZŽ"/>
|
||||
<l:dingbat key="startquote" text="„"/>
|
||||
<l:dingbat key="endquote" text="“"/>
|
||||
<l:dingbat key="nestedstartquote" text="‚"/>
|
||||
<l:dingbat key="nestedendquote" text="‘"/>
|
||||
<l:dingbat key="singlestartquote" text="‘" lang="en"/>
|
||||
<l:dingbat key="singleendquote" text="’" lang="en"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-" lang="en"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2" lang="en"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2" lang="en"/>
|
||||
|
||||
<l:context name="styles">
|
||||
<l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Příloha %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Kapitola %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Rovnice %n. %t"/>
|
||||
<l:template name="example" text="Příklad %n. %t"/>
|
||||
<l:template name="figure" text="Obrázek %n. %t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t" lang="en"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Část %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Postup %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Produkce %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tabulka %n. %t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-unnumbered">
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-numbered">
|
||||
<l:template name="appendix" text="Příloha %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Kapitola %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%n. %t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="subtitle">
|
||||
<l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(page %p)" lang="en"/>
|
||||
<l:template name="pageabbrev" text="(p. %p)" lang="en"/>
|
||||
<l:template name="Page" text="Page %p" lang="en"/>
|
||||
<l:template name="bridgehead" text="„%t“"/>
|
||||
<l:template name="refsection" text="„%t“"/>
|
||||
<l:template name="refsect1" text="„%t“"/>
|
||||
<l:template name="refsect2" text="„%t“"/>
|
||||
<l:template name="refsect3" text="„%t“"/>
|
||||
<l:template name="sect1" text="„%t“"/>
|
||||
<l:template name="sect2" text="„%t“"/>
|
||||
<l:template name="sect3" text="„%t“"/>
|
||||
<l:template name="sect4" text="„%t“"/>
|
||||
<l:template name="sect5" text="„%t“"/>
|
||||
<l:template name="section" text="„%t“"/>
|
||||
<l:template name="simplesect" text="„%t“"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number">
|
||||
<l:template name="answer" text="%n"/>
|
||||
<l:template name="appendix" text="%n"/>
|
||||
<l:template name="bridgehead" text="%n"/>
|
||||
<l:template name="chapter" text="%n"/>
|
||||
<l:template name="equation" text="%n"/>
|
||||
<l:template name="example" text="%n"/>
|
||||
<l:template name="figure" text="%n"/>
|
||||
<l:template name="part" text="%n"/>
|
||||
<l:template name="procedure" text="%n"/>
|
||||
<l:template name="productionset" text="%n"/>
|
||||
<l:template name="qandadiv" text="%n"/>
|
||||
<l:template name="qandaentry" text="%n"/>
|
||||
<l:template name="question" text="%n"/>
|
||||
<l:template name="sect1" text="%n"/>
|
||||
<l:template name="sect2" text="%n"/>
|
||||
<l:template name="sect3" text="%n"/>
|
||||
<l:template name="sect4" text="%n"/>
|
||||
<l:template name="sect5" text="%n"/>
|
||||
<l:template name="section" text="%n"/>
|
||||
<l:template name="table" text="%n"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number-and-title">
|
||||
<l:template name="appendix" text="%n – „%t“"/>
|
||||
<l:template name="bridgehead" text="%n – „%t“"/>
|
||||
<l:template name="chapter" text="%n – „%t“"/>
|
||||
<l:template name="equation" text="%n – „%t“"/>
|
||||
<l:template name="example" text="%n – „%t“"/>
|
||||
<l:template name="figure" text="%n – „%t“"/>
|
||||
<l:template name="part" text="%n – „%t“"/>
|
||||
<l:template name="procedure" text="%n – „%t“"/>
|
||||
<l:template name="productionset" text="%n – „%t“"/>
|
||||
<l:template name="qandadiv" text="%n – „%t“"/>
|
||||
<l:template name="refsect1" text="„%t“"/>
|
||||
<l:template name="refsect2" text="„%t“"/>
|
||||
<l:template name="refsect3" text="„%t“"/>
|
||||
<l:template name="refsection" text="„%t“"/>
|
||||
<l:template name="sect1" text="%n – „%t“"/>
|
||||
<l:template name="sect2" text="%n – „%t“"/>
|
||||
<l:template name="sect3" text="%n – „%t“"/>
|
||||
<l:template name="sect4" text="%n – „%t“"/>
|
||||
<l:template name="sect5" text="%n – „%t“"/>
|
||||
<l:template name="section" text="%n – „%t“"/>
|
||||
<l:template name="simplesect" text="%n – „%t“"/>
|
||||
<l:template name="table" text="%n – „%t“"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="authorgroup">
|
||||
<l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" a "/>
|
||||
<l:template name="seplast" text=" a "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="glossary">
|
||||
<l:template name="see" text="Viz "/>
|
||||
<l:template name="seealso" text="Viz též "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="msgset">
|
||||
<l:template name="MsgAud" text="Publikum: "/>
|
||||
<l:template name="MsgLevel" text="Úroveň: "/>
|
||||
<l:template name="MsgOrig" text="Původ: "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime">
|
||||
<l:template name="format" text="d. B Y"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-full">
|
||||
<l:template name="January" text="ledna"/>
|
||||
<l:template name="February" text="února"/>
|
||||
<l:template name="March" text="března"/>
|
||||
<l:template name="April" text="dubna"/>
|
||||
<l:template name="May" text="května"/>
|
||||
<l:template name="June" text="června"/>
|
||||
<l:template name="July" text="července"/>
|
||||
<l:template name="August" text="srpna"/>
|
||||
<l:template name="September" text="září"/>
|
||||
<l:template name="October" text="října"/>
|
||||
<l:template name="November" text="listopadu"/>
|
||||
<l:template name="December" text="prosince"/>
|
||||
<l:template name="Monday" text="pondělí"/>
|
||||
<l:template name="Tuesday" text="úterý"/>
|
||||
<l:template name="Wednesday" text="středa"/>
|
||||
<l:template name="Thursday" text="čtvrtek"/>
|
||||
<l:template name="Friday" text="pátek"/>
|
||||
<l:template name="Saturday" text="sobota"/>
|
||||
<l:template name="Sunday" text="neděle"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-abbrev">
|
||||
<l:template name="Jan" text="led"/>
|
||||
<l:template name="Feb" text="úno"/>
|
||||
<l:template name="Mar" text="bře"/>
|
||||
<l:template name="Apr" text="dub"/>
|
||||
<l:template name="May" text="kvě"/>
|
||||
<l:template name="Jun" text="čer"/>
|
||||
<l:template name="Jul" text="čnc"/>
|
||||
<l:template name="Aug" text="srp"/>
|
||||
<l:template name="Sep" text="zář"/>
|
||||
<l:template name="Oct" text="řij"/>
|
||||
<l:template name="Nov" text="lis"/>
|
||||
<l:template name="Dec" text="pro"/>
|
||||
<l:template name="Mon" text="po"/>
|
||||
<l:template name="Tue" text="út"/>
|
||||
<l:template name="Wed" text="st"/>
|
||||
<l:template name="Thu" text="čt"/>
|
||||
<l:template name="Fri" text="pá"/>
|
||||
<l:template name="Sat" text="so"/>
|
||||
<l:template name="Sun" text="ne"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="htmlhelp">
|
||||
<l:template name="langcode" text="0x0405 Czech"/>
|
||||
</l:context>
|
||||
|
||||
<l:letters>
|
||||
<l:l i="-1"/>
|
||||
<l:l i="0">Symboly</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="1">Á</l:l>
|
||||
<l:l i="1">á</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">Č</l:l>
|
||||
<l:l i="4">č</l:l>
|
||||
<l:l i="5">D</l:l>
|
||||
<l:l i="5">d</l:l>
|
||||
<l:l i="5">Ď</l:l>
|
||||
<l:l i="5">ď</l:l>
|
||||
<l:l i="7">E</l:l>
|
||||
<l:l i="7">e</l:l>
|
||||
<l:l i="7">É</l:l>
|
||||
<l:l i="7">é</l:l>
|
||||
<l:l i="7">Ě</l:l>
|
||||
<l:l i="7">ě</l:l>
|
||||
<l:l i="7">Ë</l:l>
|
||||
<l:l i="7">ë</l:l>
|
||||
<l:l i="8">F</l:l>
|
||||
<l:l i="8">f</l:l>
|
||||
<l:l i="9">G</l:l>
|
||||
<l:l i="9">g</l:l>
|
||||
<l:l i="10">H</l:l>
|
||||
<l:l i="10">h</l:l>
|
||||
<l:l i="11">Ch</l:l>
|
||||
<l:l i="11">ch</l:l>
|
||||
<l:l i="11">cH</l:l>
|
||||
<l:l i="11">CH</l:l>
|
||||
<l:l i="12">I</l:l>
|
||||
<l:l i="12">i</l:l>
|
||||
<l:l i="12">Í</l:l>
|
||||
<l:l i="12">í</l:l>
|
||||
<l:l i="13">J</l:l>
|
||||
<l:l i="13">j</l:l>
|
||||
<l:l i="14">K</l:l>
|
||||
<l:l i="14">k</l:l>
|
||||
<l:l i="15">L</l:l>
|
||||
<l:l i="15">l</l:l>
|
||||
<l:l i="16">M</l:l>
|
||||
<l:l i="16">m</l:l>
|
||||
<l:l i="17">N</l:l>
|
||||
<l:l i="17">n</l:l>
|
||||
<l:l i="17">Ň</l:l>
|
||||
<l:l i="17">ň</l:l>
|
||||
<l:l i="19">O</l:l>
|
||||
<l:l i="19">o</l:l>
|
||||
<l:l i="19">Ó</l:l>
|
||||
<l:l i="19">ó</l:l>
|
||||
<l:l i="19">Ö</l:l>
|
||||
<l:l i="19">ö</l:l>
|
||||
<l:l i="20">P</l:l>
|
||||
<l:l i="20">p</l:l>
|
||||
<l:l i="21">Q</l:l>
|
||||
<l:l i="21">q</l:l>
|
||||
<l:l i="22">R</l:l>
|
||||
<l:l i="22">r</l:l>
|
||||
<l:l i="23">Ř</l:l>
|
||||
<l:l i="23">ř</l:l>
|
||||
<l:l i="24">S</l:l>
|
||||
<l:l i="24">s</l:l>
|
||||
<l:l i="25">Š</l:l>
|
||||
<l:l i="25">š</l:l>
|
||||
<l:l i="26">T</l:l>
|
||||
<l:l i="26">t</l:l>
|
||||
<l:l i="26">Ť</l:l>
|
||||
<l:l i="26">ť</l:l>
|
||||
<l:l i="28">U</l:l>
|
||||
<l:l i="28">u</l:l>
|
||||
<l:l i="28">Ú</l:l>
|
||||
<l:l i="28">ú</l:l>
|
||||
<l:l i="28">Ů</l:l>
|
||||
<l:l i="28">ů</l:l>
|
||||
<l:l i="28">Ü</l:l>
|
||||
<l:l i="28">ü</l:l>
|
||||
<l:l i="29">V</l:l>
|
||||
<l:l i="29">v</l:l>
|
||||
<l:l i="30">W</l:l>
|
||||
<l:l i="30">w</l:l>
|
||||
<l:l i="31">X</l:l>
|
||||
<l:l i="31">x</l:l>
|
||||
<l:l i="32">Y</l:l>
|
||||
<l:l i="32">y</l:l>
|
||||
<l:l i="32">Ý</l:l>
|
||||
<l:l i="32">ý</l:l>
|
||||
<l:l i="33">Z</l:l>
|
||||
<l:l i="33">z</l:l>
|
||||
<l:l i="34">Ž</l:l>
|
||||
<l:l i="34">ž</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
|
@ -1,588 +0,0 @@
|
|||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="da" english-language-name="Danish">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<l:gentext key="Abstract" text="Resumé"/>
|
||||
<l:gentext key="abstract" text="resumé"/>
|
||||
<l:gentext key="Answer" text="Svar"/>
|
||||
<l:gentext key="answer" text="svar"/>
|
||||
<l:gentext key="Appendix" text="Appendiks"/>
|
||||
<l:gentext key="appendix" text="appendiks"/>
|
||||
<l:gentext key="Article" text="Artikel"/>
|
||||
<l:gentext key="article" text="artikel"/>
|
||||
<l:gentext key="Bibliography" text="Litteraturliste"/>
|
||||
<l:gentext key="bibliography" text="litteraturliste"/>
|
||||
<l:gentext key="Book" text="Bog"/>
|
||||
<l:gentext key="book" text="bog"/>
|
||||
<l:gentext key="CAUTION" text="PAS PÅ"/>
|
||||
<l:gentext key="Caution" text="Pas på"/>
|
||||
<l:gentext key="caution" text="pas på"/>
|
||||
<l:gentext key="Chapter" text="Kapitel"/>
|
||||
<l:gentext key="chapter" text="kapitel"/>
|
||||
<l:gentext key="Colophon" text="Kolofon"/>
|
||||
<l:gentext key="colophon" text="kolofon"/>
|
||||
<l:gentext key="Copyright" text="Ophavsret"/>
|
||||
<l:gentext key="copyright" text="ophavsret"/>
|
||||
<l:gentext key="Dedication" text="Tilegnet"/>
|
||||
<l:gentext key="dedication" text="tilegnet"/>
|
||||
<l:gentext key="Edition" text="Udgave"/>
|
||||
<l:gentext key="edition" text="udgave"/>
|
||||
<l:gentext key="Equation" text="Ligning"/>
|
||||
<l:gentext key="equation" text="ligning"/>
|
||||
<l:gentext key="Example" text="Eksempel"/>
|
||||
<l:gentext key="example" text="eksempel"/>
|
||||
<l:gentext key="Figure" text="Figur"/>
|
||||
<l:gentext key="figure" text="figur"/>
|
||||
<l:gentext key="Glossary" text="Ordliste"/>
|
||||
<l:gentext key="glossary" text="ordliste"/>
|
||||
<l:gentext key="GlossSee" text="Se"/>
|
||||
<l:gentext key="glosssee" text="se"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Se også"/>
|
||||
<l:gentext key="glossseealso" text="se også"/>
|
||||
<l:gentext key="IMPORTANT" text="VIGTIGT"/>
|
||||
<l:gentext key="important" text="vigtigt"/>
|
||||
<l:gentext key="Important" text="Vigtigt"/>
|
||||
<l:gentext key="Index" text="Stikordsregister"/>
|
||||
<l:gentext key="index" text="stikordsregister"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Retslig note"/>
|
||||
<l:gentext key="legalnotice" text="retslig note"/>
|
||||
<l:gentext key="MsgAud" text="Målgruppe"/>
|
||||
<l:gentext key="msgaud" text="målgruppe"/>
|
||||
<l:gentext key="MsgLevel" text="Niveau"/>
|
||||
<l:gentext key="msglevel" text="niveau"/>
|
||||
<l:gentext key="MsgOrig" text="Grundlag"/>
|
||||
<l:gentext key="msgorig" text="grundlag"/>
|
||||
<l:gentext key="NOTE" text="BEMÆRK"/>
|
||||
<l:gentext key="Note" text="Bemærk"/>
|
||||
<l:gentext key="note" text="bemærk"/>
|
||||
<l:gentext key="Part" text="Del"/>
|
||||
<l:gentext key="part" text="del"/>
|
||||
<l:gentext key="Preface" text="Forord"/>
|
||||
<l:gentext key="preface" text="forord"/>
|
||||
<l:gentext key="Procedure" text="Procedure"/>
|
||||
<l:gentext key="procedure" text="procedure"/>
|
||||
<l:gentext key="ProductionSet" text="Produktion"/>
|
||||
<l:gentext key="PubDate" text="Publication Date" lang="en"/>
|
||||
<l:gentext key="pubdate" text="Publication date" lang="en"/>
|
||||
<l:gentext key="Published" text="Udgivet"/>
|
||||
<l:gentext key="published" text="udgivet"/>
|
||||
<l:gentext key="Qandadiv" text="Q & A" lang="en"/>
|
||||
<l:gentext key="qandadiv" text="Q & A" lang="en"/>
|
||||
<l:gentext key="Question" text="Spørgsmål"/>
|
||||
<l:gentext key="question" text="spørgsmål"/>
|
||||
<l:gentext key="RefEntry" text="Punkt"/>
|
||||
<l:gentext key="refentry" text="punkt"/>
|
||||
<l:gentext key="Reference" text="Henvisning"/>
|
||||
<l:gentext key="reference" text="henvisning"/>
|
||||
<l:gentext key="RefName" text="Navn"/>
|
||||
<l:gentext key="refname" text="navn"/>
|
||||
<l:gentext key="RefSection" text="Afsnit"/>
|
||||
<l:gentext key="refsection" text="afsnit"/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Synopsis"/>
|
||||
<l:gentext key="refsynopsisdiv" text="synopsis"/>
|
||||
<l:gentext key="RevHistory" text="Revisionshistorie"/>
|
||||
<l:gentext key="revhistory" text="revisionshistorie"/>
|
||||
<l:gentext key="revision" text="revision"/>
|
||||
<l:gentext key="Revision" text="Revision"/>
|
||||
<l:gentext key="sect1" text="Afsnit"/>
|
||||
<l:gentext key="sect2" text="Afsnit"/>
|
||||
<l:gentext key="sect3" text="Afsnit"/>
|
||||
<l:gentext key="sect4" text="Afsnit"/>
|
||||
<l:gentext key="sect5" text="Afsnit"/>
|
||||
<l:gentext key="section" text="afsnit"/>
|
||||
<l:gentext key="Section" text="Afsnit"/>
|
||||
<l:gentext key="see" text="se"/>
|
||||
<l:gentext key="See" text="Se"/>
|
||||
<l:gentext key="seealso" text="se også"/>
|
||||
<l:gentext key="Seealso" text="Se også"/>
|
||||
<l:gentext key="SeeAlso" text="Se også"/>
|
||||
<l:gentext key="set" text="sæt"/>
|
||||
<l:gentext key="Set" text="Sæt"/>
|
||||
<l:gentext key="setindex" text="sæt indeks"/>
|
||||
<l:gentext key="SetIndex" text="Sæt indeks"/>
|
||||
<l:gentext key="Sidebar" text="Sidebjælke"/>
|
||||
<l:gentext key="sidebar" text="sidebjælke"/>
|
||||
<l:gentext key="step" text="trin"/>
|
||||
<l:gentext key="Step" text="Trin"/>
|
||||
<l:gentext key="Table" text="Tabel"/>
|
||||
<l:gentext key="table" text="tabel"/>
|
||||
<l:gentext key="tip" text="vink"/>
|
||||
<l:gentext key="TIP" text="VINK"/>
|
||||
<l:gentext key="Tip" text="Vink"/>
|
||||
<l:gentext key="Warning" text="Advarsel"/>
|
||||
<l:gentext key="warning" text="advarsel"/>
|
||||
<l:gentext key="WARNING" text="ADVARSEL"/>
|
||||
<l:gentext key="and" text="og"/>
|
||||
<l:gentext key="by" text="af"/>
|
||||
<l:gentext key="called" text="called" lang="en"/>
|
||||
<l:gentext key="Edited" text="Redigeret"/>
|
||||
<l:gentext key="edited" text="redigeret"/>
|
||||
<l:gentext key="Editedby" text="Redigeret af"/>
|
||||
<l:gentext key="editedby" text="redigeret af"/>
|
||||
<l:gentext key="in" text="i"/>
|
||||
<l:gentext key="lastlistcomma" text=" og "/>
|
||||
<l:gentext key="listcomma" text=", "/>
|
||||
<l:gentext key="nonexistantelement" text="ikke-eksisterende element"/>
|
||||
<l:gentext key="notes" text="slutbemærkning:"/>
|
||||
<l:gentext key="Notes" text="Slutbemærkning:"/>
|
||||
<l:gentext key="Pgs" text="Siderne"/>
|
||||
<l:gentext key="pgs" text="siderne"/>
|
||||
<l:gentext key="Revisedby" text="Revideret af: "/>
|
||||
<l:gentext key="revisedby" text="revideret af: "/>
|
||||
<l:gentext key="TableNotes" text="Noter:"/>
|
||||
<l:gentext key="tablenotes" text="noter:"/>
|
||||
<l:gentext key="TableofContents" text="Indholdsfortegnelse"/>
|
||||
<l:gentext key="tableofcontents" text="indholdsfortegnelse"/>
|
||||
<l:gentext key="the" text="" lang="en"/>
|
||||
<l:gentext key="unexpectedelementname" text="uventet elementnavn"/>
|
||||
<l:gentext key="unsupported" text="ikke understøttet"/>
|
||||
<l:gentext key="xrefto" text="krydshenvisning til"/>
|
||||
<l:gentext key="listofequations" text="ligningsliste"/>
|
||||
<l:gentext key="ListofEquations" text="Ligningsliste"/>
|
||||
<l:gentext key="ListofExamples" text="Eksempelliste"/>
|
||||
<l:gentext key="listofexamples" text="eksempelliste"/>
|
||||
<l:gentext key="ListofFigures" text="Figurliste"/>
|
||||
<l:gentext key="listoffigures" text="figurliste"/>
|
||||
<l:gentext key="ListofProcedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listofprocedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listoftables" text="tabelliste"/>
|
||||
<l:gentext key="ListofTables" text="Tabelliste"/>
|
||||
<l:gentext key="ListofUnknown" text="Liste over ukendte"/>
|
||||
<l:gentext key="listofunknown" text="liste over ukendte"/>
|
||||
<l:gentext key="nav-home" text="hjem"/>
|
||||
<l:gentext key="nav-next" text="næste"/>
|
||||
<l:gentext key="nav-next-sibling" text="hurtigt fremad"/>
|
||||
<l:gentext key="nav-prev" text="forrige"/>
|
||||
<l:gentext key="nav-prev-sibling" text="hurtigt tilbage"/>
|
||||
<l:gentext key="nav-up" text="op"/>
|
||||
<l:gentext key="nav-toc" text="ToC" lang="en"/>
|
||||
<l:gentext key="Draft" text="Kladde"/>
|
||||
<l:gentext key="above" text="over"/>
|
||||
<l:gentext key="below" text="under"/>
|
||||
<l:gentext key="sectioncalled" text="afsnittet der hedder"/>
|
||||
<l:gentext key="index symbols" text="symboler"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcdefghijklmnopqrstuvwxyzæøå"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCDEFGHIJKLMNOPQRSTUVWXYZÆØÅ"/>
|
||||
<l:dingbat key="startquote" text="“"/>
|
||||
<l:dingbat key="endquote" text="”"/>
|
||||
<l:dingbat key="nestedstartquote" text="‘"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘" lang="en"/>
|
||||
<l:dingbat key="singleendquote" text="’" lang="en"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2"/>
|
||||
|
||||
<l:context name="styles">
|
||||
<l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Appendiks %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Kapitel %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Ligning %n. %t"/>
|
||||
<l:template name="example" text="Eksempel %n. %t"/>
|
||||
<l:template name="figure" text="Figur %n. %t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t" lang="en"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Del %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Procedure %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Produktion %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="Spørgsmål %n"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tabel %n. %t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-unnumbered">
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-numbered">
|
||||
<l:template name="appendix" text="Appendiks %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Kapitel %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="subtitle">
|
||||
<l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="Svar %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="Spørgsmål %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="Spørgsmål %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(page %p)" lang="en"/>
|
||||
<l:template name="pageabbrev" text="(p. %p)" lang="en"/>
|
||||
<l:template name="Page" text="Page %p" lang="en"/>
|
||||
<l:template name="bridgehead" text="afsnittet der hedder “%t”"/>
|
||||
<l:template name="refsection" text="“%t”"/>
|
||||
<l:template name="refsect1" text="“%t”"/>
|
||||
<l:template name="refsect2" text="“%t”"/>
|
||||
<l:template name="refsect3" text="“%t”"/>
|
||||
<l:template name="sect1" text="“%t”"/>
|
||||
<l:template name="sect2" text="“%t”"/>
|
||||
<l:template name="sect3" text="“%t”"/>
|
||||
<l:template name="sect4" text="“%t”"/>
|
||||
<l:template name="sect5" text="“%t”"/>
|
||||
<l:template name="section" text="“%t”"/>
|
||||
<l:template name="simplesect" text="“%t”"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number">
|
||||
<l:template name="answer" text="Svar %n"/>
|
||||
<l:template name="appendix" text="Appendiks %n"/>
|
||||
<l:template name="bridgehead" text="Afsnit %n"/>
|
||||
<l:template name="chapter" text="Kapitel %n"/>
|
||||
<l:template name="equation" text="Ligning %n"/>
|
||||
<l:template name="example" text="Eksempel %n"/>
|
||||
<l:template name="figure" text="Figur %n"/>
|
||||
<l:template name="part" text="Del %n"/>
|
||||
<l:template name="procedure" text="Procedure %n"/>
|
||||
<l:template name="productionset" text="Produktion %n"/>
|
||||
<l:template name="qandadiv" text="Q & A %n"/>
|
||||
<l:template name="qandaentry" text="Spørgsmål %n"/>
|
||||
<l:template name="question" text="Spørgsmål %n"/>
|
||||
<l:template name="sect1" text="Afsnit %n"/>
|
||||
<l:template name="sect2" text="Afsnit %n"/>
|
||||
<l:template name="sect3" text="Afsnit %n"/>
|
||||
<l:template name="sect4" text="Afsnit %n"/>
|
||||
<l:template name="sect5" text="Afsnit %n"/>
|
||||
<l:template name="section" text="Afsnit %n"/>
|
||||
<l:template name="table" text="Tabel %n"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number-and-title">
|
||||
<l:template name="appendix" text="Appendiks %n, %t"/>
|
||||
<l:template name="bridgehead" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="chapter" text="Kapitel %n, %t"/>
|
||||
<l:template name="equation" text="Ligning %n, “%t”"/>
|
||||
<l:template name="example" text="Eksempel %n, “%t”"/>
|
||||
<l:template name="figure" text="Figur %n, “%t”"/>
|
||||
<l:template name="part" text="Del %n, “%t”"/>
|
||||
<l:template name="procedure" text="Procedure %n, “%t”"/>
|
||||
<l:template name="productionset" text="Produktion %n, “%t”"/>
|
||||
<l:template name="qandadiv" text="Q & A %n, “%t”"/>
|
||||
<l:template name="refsect1" text="afsnittet der hedder “%t”"/>
|
||||
<l:template name="refsect2" text="afsnittet der hedder “%t”"/>
|
||||
<l:template name="refsect3" text="afsnittet der hedder “%t”"/>
|
||||
<l:template name="refsection" text="afsnittet der hedder “%t”"/>
|
||||
<l:template name="sect1" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="sect2" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="sect3" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="sect4" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="sect5" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="section" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="simplesect" text="afsnittet der hedder “%t”"/>
|
||||
<l:template name="table" text="Tabel %n, “%t”"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="authorgroup">
|
||||
<l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" og "/>
|
||||
<l:template name="seplast" text=" og og "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="glossary">
|
||||
<l:template name="see" text="Se "/>
|
||||
<l:template name="seealso" text="Se også "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="msgset">
|
||||
<l:template name="MsgAud" text="Målgruppe: "/>
|
||||
<l:template name="MsgLevel" text="Niveau: "/>
|
||||
<l:template name="MsgOrig" text="Grundlag: "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime">
|
||||
<l:template name="format" text="d/m/Y"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-full">
|
||||
<l:template name="January" text="Januar"/>
|
||||
<l:template name="February" text="Februar"/>
|
||||
<l:template name="March" text="Marts"/>
|
||||
<l:template name="April" text="April"/>
|
||||
<l:template name="May" text="Maj"/>
|
||||
<l:template name="June" text="Juni"/>
|
||||
<l:template name="July" text="July"/>
|
||||
<l:template name="August" text="August"/>
|
||||
<l:template name="September" text="September"/>
|
||||
<l:template name="October" text="Oktober"/>
|
||||
<l:template name="November" text="November"/>
|
||||
<l:template name="December" text="December"/>
|
||||
<l:template name="Monday" text="Mandag"/>
|
||||
<l:template name="Tuesday" text="Tirsdag"/>
|
||||
<l:template name="Wednesday" text="Onsdag"/>
|
||||
<l:template name="Thursday" text="Torsdag"/>
|
||||
<l:template name="Friday" text="Fredag"/>
|
||||
<l:template name="Saturday" text="Lørdag"/>
|
||||
<l:template name="Sunday" text="Søndag"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-abbrev">
|
||||
<l:template name="Jan" text="Jan"/>
|
||||
<l:template name="Feb" text="Feb"/>
|
||||
<l:template name="Mar" text="Mar"/>
|
||||
<l:template name="Apr" text="Apr"/>
|
||||
<l:template name="May" text="Maj"/>
|
||||
<l:template name="Jun" text="Jun"/>
|
||||
<l:template name="Jul" text="Jul"/>
|
||||
<l:template name="Aug" text="Aug"/>
|
||||
<l:template name="Sep" text="Sep"/>
|
||||
<l:template name="Oct" text="Okt"/>
|
||||
<l:template name="Nov" text="Nov"/>
|
||||
<l:template name="Dec" text="Dec"/>
|
||||
<l:template name="Mon" text="Man"/>
|
||||
<l:template name="Tue" text="Tir"/>
|
||||
<l:template name="Wed" text="ins"/>
|
||||
<l:template name="Thu" text="Tor"/>
|
||||
<l:template name="Fri" text="Fre"/>
|
||||
<l:template name="Sat" text="Lør"/>
|
||||
<l:template name="Sun" text="Søn"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="htmlhelp">
|
||||
<l:template name="langcode" text="0x0406 Danish"/>
|
||||
</l:context>
|
||||
|
||||
<l:letters>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">D</l:l>
|
||||
<l:l i="4">d</l:l>
|
||||
<l:l i="5">E</l:l>
|
||||
<l:l i="5">e</l:l>
|
||||
<l:l i="6">F</l:l>
|
||||
<l:l i="6">f</l:l>
|
||||
<l:l i="7">G</l:l>
|
||||
<l:l i="7">g</l:l>
|
||||
<l:l i="8">H</l:l>
|
||||
<l:l i="8">h</l:l>
|
||||
<l:l i="9">I</l:l>
|
||||
<l:l i="9">i</l:l>
|
||||
<l:l i="10">J</l:l>
|
||||
<l:l i="10">j</l:l>
|
||||
<l:l i="11">K</l:l>
|
||||
<l:l i="11">k</l:l>
|
||||
<l:l i="12">L</l:l>
|
||||
<l:l i="12">l</l:l>
|
||||
<l:l i="13">M</l:l>
|
||||
<l:l i="13">m</l:l>
|
||||
<l:l i="14">N</l:l>
|
||||
<l:l i="14">n</l:l>
|
||||
<l:l i="15">O</l:l>
|
||||
<l:l i="15">o</l:l>
|
||||
<l:l i="16">P</l:l>
|
||||
<l:l i="16">p</l:l>
|
||||
<l:l i="17">Q</l:l>
|
||||
<l:l i="17">q</l:l>
|
||||
<l:l i="18">R</l:l>
|
||||
<l:l i="18">r</l:l>
|
||||
<l:l i="19">S</l:l>
|
||||
<l:l i="19">s</l:l>
|
||||
<l:l i="20">T</l:l>
|
||||
<l:l i="20">t</l:l>
|
||||
<l:l i="21">U</l:l>
|
||||
<l:l i="21">u</l:l>
|
||||
<l:l i="22">V</l:l>
|
||||
<l:l i="22">v</l:l>
|
||||
<l:l i="23">W</l:l>
|
||||
<l:l i="23">w</l:l>
|
||||
<l:l i="24">X</l:l>
|
||||
<l:l i="24">x</l:l>
|
||||
<l:l i="25">Y</l:l>
|
||||
<l:l i="25">y</l:l>
|
||||
<l:l i="26">Z</l:l>
|
||||
<l:l i="26">z</l:l>
|
||||
<l:l i="27">Æ</l:l>
|
||||
<l:l i="27">æ</l:l>
|
||||
<l:l i="28">Ø</l:l>
|
||||
<l:l i="28">ø</l:l>
|
||||
<l:l i="29">Å</l:l>
|
||||
<l:l i="29">å</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
|
@ -1,590 +0,0 @@
|
|||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="de" english-language-name="German">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<l:gentext key="Abstract" text="Zusammenfassung"/>
|
||||
<l:gentext key="abstract" text="Zusammenfassung"/>
|
||||
<l:gentext key="Answer" text="A:"/>
|
||||
<l:gentext key="answer" text="A:"/>
|
||||
<l:gentext key="Appendix" text="Anhang"/>
|
||||
<l:gentext key="appendix" text="Anhang"/>
|
||||
<l:gentext key="Article" text="Artikel"/>
|
||||
<l:gentext key="article" text="Artikel"/>
|
||||
<l:gentext key="Bibliography" text="Literaturverzeichnis"/>
|
||||
<l:gentext key="bibliography" text="Literaturverzeichnis"/>
|
||||
<l:gentext key="Book" text="Buch"/>
|
||||
<l:gentext key="book" text="Buch"/>
|
||||
<l:gentext key="CAUTION" text="ACHTUNG"/>
|
||||
<l:gentext key="Caution" text="Achtung"/>
|
||||
<l:gentext key="caution" text="Achtung"/>
|
||||
<l:gentext key="Chapter" text="Kapitel"/>
|
||||
<l:gentext key="chapter" text="Kapitel"/>
|
||||
<l:gentext key="Colophon" text="Kolophon"/>
|
||||
<l:gentext key="colophon" text="Kolophon"/>
|
||||
<l:gentext key="Copyright" text="Copyright"/>
|
||||
<l:gentext key="copyright" text="Copyright"/>
|
||||
<l:gentext key="Dedication" text="Widmung"/>
|
||||
<l:gentext key="dedication" text="Widmung"/>
|
||||
<l:gentext key="Edition" text="Ausgabe"/>
|
||||
<l:gentext key="edition" text="Ausgabe"/>
|
||||
<l:gentext key="Equation" text="Gleichung"/>
|
||||
<l:gentext key="equation" text="Gleichung"/>
|
||||
<l:gentext key="Example" text="Beispiel"/>
|
||||
<l:gentext key="example" text="Beispiel"/>
|
||||
<l:gentext key="Figure" text="Abbildung"/>
|
||||
<l:gentext key="figure" text="Abbildung"/>
|
||||
<l:gentext key="Glossary" text="Glossar"/>
|
||||
<l:gentext key="glossary" text="Glossar"/>
|
||||
<l:gentext key="GlossSee" text="Siehe"/>
|
||||
<l:gentext key="glosssee" text="Siehe"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Siehe auch"/>
|
||||
<l:gentext key="glossseealso" text="Siehe auch"/>
|
||||
<l:gentext key="IMPORTANT" text="WICHTIG"/>
|
||||
<l:gentext key="important" text="Wichtig"/>
|
||||
<l:gentext key="Important" text="Wichtig"/>
|
||||
<l:gentext key="Index" text="Stichwortverzeichnis"/>
|
||||
<l:gentext key="index" text="Stichwortverzeichnis"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Rechtlicher Hinweis"/>
|
||||
<l:gentext key="legalnotice" text="Rechtlicher Hinweis"/>
|
||||
<l:gentext key="MsgAud" text="Zielgruppe"/>
|
||||
<l:gentext key="msgaud" text="Zielgruppe"/>
|
||||
<l:gentext key="MsgLevel" text="Dringlichkeit"/>
|
||||
<l:gentext key="msglevel" text="Dringlichkeit"/>
|
||||
<l:gentext key="MsgOrig" text="Ursprung"/>
|
||||
<l:gentext key="msgorig" text="Ursprung"/>
|
||||
<l:gentext key="NOTE" text="ANMERKUNG"/>
|
||||
<l:gentext key="Note" text="Anmerkung"/>
|
||||
<l:gentext key="note" text="Anmerkung"/>
|
||||
<l:gentext key="Part" text="Teil"/>
|
||||
<l:gentext key="part" text="Teil"/>
|
||||
<l:gentext key="Preface" text="Vorwort"/>
|
||||
<l:gentext key="preface" text="Vorwort"/>
|
||||
<l:gentext key="Procedure" text="Prozedur"/>
|
||||
<l:gentext key="procedure" text="Prozedur"/>
|
||||
<l:gentext key="ProductionSet" text="Produktion"/>
|
||||
<l:gentext key="PubDate" text="Veröffentlicht"/>
|
||||
<l:gentext key="pubdate" text="Veröffentlicht"/>
|
||||
<l:gentext key="Published" text="Veröffentlicht"/>
|
||||
<l:gentext key="published" text="Veröffentlicht"/>
|
||||
<l:gentext key="Qandadiv" text="F & A"/>
|
||||
<l:gentext key="qandadiv" text="F & A"/>
|
||||
<l:gentext key="Question" text="F:"/>
|
||||
<l:gentext key="question" text="F:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Verweis"/>
|
||||
<l:gentext key="reference" text="Verweis"/>
|
||||
<l:gentext key="RefName" text="Name"/>
|
||||
<l:gentext key="refname" text="Name"/>
|
||||
<l:gentext key="RefSection" text="Abschnitt"/>
|
||||
<l:gentext key="refsection" text="Abschnitt"/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Synopsis"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Synopsis"/>
|
||||
<l:gentext key="RevHistory" text="Versionsgeschichte"/>
|
||||
<l:gentext key="revhistory" text="Versionsgeschichte"/>
|
||||
<l:gentext key="revision" text="Version"/>
|
||||
<l:gentext key="Revision" text="Version"/>
|
||||
<l:gentext key="sect1" text="Abschnitt"/>
|
||||
<l:gentext key="sect2" text="Abschnitt"/>
|
||||
<l:gentext key="sect3" text="Abschnitt"/>
|
||||
<l:gentext key="sect4" text="Abschnitt"/>
|
||||
<l:gentext key="sect5" text="Abschnitt"/>
|
||||
<l:gentext key="section" text="Abschnitt"/>
|
||||
<l:gentext key="Section" text="Abschnitt"/>
|
||||
<l:gentext key="see" text="Siehe"/>
|
||||
<l:gentext key="See" text="Siehe"/>
|
||||
<l:gentext key="seealso" text="Siehe auch"/>
|
||||
<l:gentext key="Seealso" text="Siehe auch"/>
|
||||
<l:gentext key="SeeAlso" text="Siehe auch"/>
|
||||
<l:gentext key="set" text="Satz"/>
|
||||
<l:gentext key="Set" text="Satz"/>
|
||||
<l:gentext key="setindex" text="Stichwortverzeichnis"/>
|
||||
<l:gentext key="SetIndex" text="Stichwortverzeichnis"/>
|
||||
<l:gentext key="Sidebar" text="Randnotiz"/>
|
||||
<l:gentext key="sidebar" text="randnotiz"/>
|
||||
<l:gentext key="step" text="Schritt"/>
|
||||
<l:gentext key="Step" text="Schritt"/>
|
||||
<l:gentext key="Table" text="Tabelle"/>
|
||||
<l:gentext key="table" text="Tabelle"/>
|
||||
<l:gentext key="tip" text="Tipp"/>
|
||||
<l:gentext key="TIP" text="TIPP"/>
|
||||
<l:gentext key="Tip" text="Tipp"/>
|
||||
<l:gentext key="Warning" text="Warnung"/>
|
||||
<l:gentext key="warning" text="Warnung"/>
|
||||
<l:gentext key="WARNING" text="WARNUNG"/>
|
||||
<l:gentext key="and" text="und"/>
|
||||
<l:gentext key="by" text="von"/>
|
||||
<l:gentext key="called" text="called" lang="en"/>
|
||||
<l:gentext key="Edited" text="Herausgegeben"/>
|
||||
<l:gentext key="edited" text="Herausgegeben"/>
|
||||
<l:gentext key="Editedby" text="Herausgegeben von"/>
|
||||
<l:gentext key="editedby" text="Herausgegeben von"/>
|
||||
<l:gentext key="in" text="in"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="nicht existierendes Element"/>
|
||||
<l:gentext key="notes" text="Fußnoten"/>
|
||||
<l:gentext key="Notes" text="Fußnoten"/>
|
||||
<l:gentext key="Pgs" text="Seiten"/>
|
||||
<l:gentext key="pgs" text="Seiten"/>
|
||||
<l:gentext key="Revisedby" text="Geändert durch: "/>
|
||||
<l:gentext key="revisedby" text="Geändert durch: "/>
|
||||
<l:gentext key="TableNotes" text="Bemerkungen"/>
|
||||
<l:gentext key="tablenotes" text="Bemerkungen"/>
|
||||
<l:gentext key="TableofContents" text="Inhaltsverzeichnis"/>
|
||||
<l:gentext key="tableofcontents" text="Inhaltsverzeichnis"/>
|
||||
<l:gentext key="the" text=""/>
|
||||
<l:gentext key="unexpectedelementname" text="Unerwarteter Elementname"/>
|
||||
<l:gentext key="unsupported" text="wird nicht unterstützt"/>
|
||||
<l:gentext key="xrefto" text="xref auf"/>
|
||||
<l:gentext key="listofequations" text="Gleichungen"/>
|
||||
<l:gentext key="ListofEquations" text="Gleichungen"/>
|
||||
<l:gentext key="ListofExamples" text="Beispiele"/>
|
||||
<l:gentext key="listofexamples" text="Beispiele"/>
|
||||
<l:gentext key="ListofFigures" text="Abbildungsverzeichnis"/>
|
||||
<l:gentext key="listoffigures" text="Abbildungsverzeichnis"/>
|
||||
<l:gentext key="ListofProcedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listofprocedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listoftables" text="Tabellenverzeichnis"/>
|
||||
<l:gentext key="ListofTables" text="Tabellenverzeichnis"/>
|
||||
<l:gentext key="ListofUnknown" text="???-Verzeichnis"/>
|
||||
<l:gentext key="listofunknown" text="???-Verzeichnis"/>
|
||||
<l:gentext key="nav-home" text="Zum Anfang"/>
|
||||
<l:gentext key="nav-next" text="Weiter"/>
|
||||
<l:gentext key="nav-next-sibling" text="Schnell weiter"/>
|
||||
<l:gentext key="nav-prev" text="Zurück"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Schnell zurück"/>
|
||||
<l:gentext key="nav-up" text="Nach oben"/>
|
||||
<l:gentext key="nav-toc" text="InhV"/>
|
||||
<l:gentext key="Draft" text="Entwurf"/>
|
||||
<l:gentext key="above" text="oben"/>
|
||||
<l:gentext key="below" text="unten"/>
|
||||
<l:gentext key="sectioncalled" text="der Abschnitt namens"/>
|
||||
<l:gentext key="index symbols" text="Symbole"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcdefghijklmnopqrstuvwxyzäöüß"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCDEFGHIJKLMNOPQRSTUVWXYZÄÖÜß"/>
|
||||
<l:dingbat key="startquote" text="„"/>
|
||||
<l:dingbat key="endquote" text="“"/>
|
||||
<l:dingbat key="nestedstartquote" text="‚"/>
|
||||
<l:dingbat key="nestedendquote" text="‘"/>
|
||||
<l:dingbat key="singlestartquote" text="‚"/>
|
||||
<l:dingbat key="singleendquote" text="‘"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="3"/>
|
||||
|
||||
<l:context name="styles">
|
||||
<l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Anhang %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Kapitel %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Gleichung %n. %t"/>
|
||||
<l:template name="example" text="Beispiel %n. %t"/>
|
||||
<l:template name="figure" text="Abbildung %n. %t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Teil %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Prozedur %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Produktion %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="F: %n"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tabelle %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="" lang="en"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-unnumbered">
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-numbered">
|
||||
<l:template name="appendix" text="Anhang %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Kapitel %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%n. %t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="subtitle">
|
||||
<l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="A: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="F: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="F: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(Seite %p)"/>
|
||||
<l:template name="pageabbrev" text="(S. %p)"/>
|
||||
<l:template name="Page" text="Seite %p"/>
|
||||
<l:template name="bridgehead" text="„%t“"/>
|
||||
<l:template name="refsection" text="„%t“"/>
|
||||
<l:template name="refsect1" text="„%t“"/>
|
||||
<l:template name="refsect2" text="„%t“"/>
|
||||
<l:template name="refsect3" text="„%t“"/>
|
||||
<l:template name="sect1" text="„%t“"/>
|
||||
<l:template name="sect2" text="„%t“"/>
|
||||
<l:template name="sect3" text="„%t“"/>
|
||||
<l:template name="sect4" text="„%t“"/>
|
||||
<l:template name="sect5" text="„%t“"/>
|
||||
<l:template name="section" text="„%t“"/>
|
||||
<l:template name="simplesect" text="„%t“"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number">
|
||||
<l:template name="answer" text="A: %n"/>
|
||||
<l:template name="appendix" text="Anhang %n"/>
|
||||
<l:template name="bridgehead" text="Abschnitt %n"/>
|
||||
<l:template name="chapter" text="Kapitel %n"/>
|
||||
<l:template name="equation" text="Gleichung %n"/>
|
||||
<l:template name="example" text="Beispiel %n"/>
|
||||
<l:template name="figure" text="Abbildung %n"/>
|
||||
<l:template name="part" text="Teil %n"/>
|
||||
<l:template name="procedure" text="Prozedur %n"/>
|
||||
<l:template name="productionset" text="Produktion %n"/>
|
||||
<l:template name="qandadiv" text="F & A %n"/>
|
||||
<l:template name="qandaentry" text="F: %n"/>
|
||||
<l:template name="question" text="F: %n"/>
|
||||
<l:template name="sect1" text="Abschnitt %n"/>
|
||||
<l:template name="sect2" text="Abschnitt %n"/>
|
||||
<l:template name="sect3" text="Abschnitt %n"/>
|
||||
<l:template name="sect4" text="Abschnitt %n"/>
|
||||
<l:template name="sect5" text="Abschnitt %n"/>
|
||||
<l:template name="section" text="Abschnitt %n"/>
|
||||
<l:template name="table" text="Tabelle %n"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number-and-title">
|
||||
<l:template name="appendix" text="Anhang %n, %t"/>
|
||||
<l:template name="bridgehead" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="chapter" text="Kapitel %n, %t"/>
|
||||
<l:template name="equation" text="Gleichung %n, „%t“"/>
|
||||
<l:template name="example" text="Beispiel %n, „%t“"/>
|
||||
<l:template name="figure" text="Abbildung %n, „%t“"/>
|
||||
<l:template name="part" text="Teil %n, „%t“"/>
|
||||
<l:template name="procedure" text="Prozedur %n, „%t“"/>
|
||||
<l:template name="productionset" text="Produktion %n, „%t“"/>
|
||||
<l:template name="qandadiv" text="F & A %n, „%t“"/>
|
||||
<l:template name="refsect1" text="der Abschnitt namens „%t“"/>
|
||||
<l:template name="refsect2" text="der Abschnitt namens „%t“"/>
|
||||
<l:template name="refsect3" text="der Abschnitt namens „%t“"/>
|
||||
<l:template name="refsection" text="der Abschnitt namens „%t“"/>
|
||||
<l:template name="sect1" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="sect2" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="sect3" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="sect4" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="sect5" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="section" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="simplesect" text="der Abschnitt namens „%t“"/>
|
||||
<l:template name="table" text="Tabelle %n, „%t“"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="authorgroup">
|
||||
<l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" und "/>
|
||||
<l:template name="seplast" text=" und "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="glossary">
|
||||
<l:template name="see" text="Siehe "/>
|
||||
<l:template name="seealso" text="Siehe auch "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="msgset">
|
||||
<l:template name="MsgAud" text="Zielgruppe: "/>
|
||||
<l:template name="MsgLevel" text="Dringlichkeit: "/>
|
||||
<l:template name="MsgOrig" text="Ursprung: "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime">
|
||||
<l:template name="format" text="d.M.Y"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-full">
|
||||
<l:template name="January" text="Januar"/>
|
||||
<l:template name="February" text="Februar"/>
|
||||
<l:template name="March" text="März"/>
|
||||
<l:template name="April" text="April"/>
|
||||
<l:template name="May" text="Mai"/>
|
||||
<l:template name="June" text="Juni"/>
|
||||
<l:template name="July" text="Juli"/>
|
||||
<l:template name="August" text="August"/>
|
||||
<l:template name="September" text="September"/>
|
||||
<l:template name="October" text="Oktober"/>
|
||||
<l:template name="November" text="November"/>
|
||||
<l:template name="December" text="Dezember"/>
|
||||
<l:template name="Monday" text="Montag"/>
|
||||
<l:template name="Tuesday" text="Dienstag"/>
|
||||
<l:template name="Wednesday" text="Mittwoch"/>
|
||||
<l:template name="Thursday" text="Donnerstag"/>
|
||||
<l:template name="Friday" text="Freitag"/>
|
||||
<l:template name="Saturday" text="Samstag"/>
|
||||
<l:template name="Sunday" text="Sonntag"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-abbrev">
|
||||
<l:template name="Jan" text="Jan"/>
|
||||
<l:template name="Feb" text="Feb"/>
|
||||
<l:template name="Mar" text="Mar"/>
|
||||
<l:template name="Apr" text="Apr"/>
|
||||
<l:template name="May" text="Mai"/>
|
||||
<l:template name="Jun" text="Jun"/>
|
||||
<l:template name="Jul" text="Jul"/>
|
||||
<l:template name="Aug" text="Aug"/>
|
||||
<l:template name="Sep" text="Sep"/>
|
||||
<l:template name="Oct" text="Okt"/>
|
||||
<l:template name="Nov" text="Nov"/>
|
||||
<l:template name="Dec" text="Dez"/>
|
||||
<l:template name="Mon" text="Mo"/>
|
||||
<l:template name="Tue" text="Di"/>
|
||||
<l:template name="Wed" text="Mi"/>
|
||||
<l:template name="Thu" text="Do"/>
|
||||
<l:template name="Fri" text="Fr"/>
|
||||
<l:template name="Sat" text="Sa"/>
|
||||
<l:template name="Sun" text="So"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="htmlhelp">
|
||||
<l:template name="langcode" text="0x0407 German (GERMANY)"/>
|
||||
</l:context>
|
||||
|
||||
<l:letters>
|
||||
<l:l i="-1"/>
|
||||
<l:l i="0">Symbole</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="1">Ä</l:l>
|
||||
<l:l i="1">ä</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">D</l:l>
|
||||
<l:l i="4">d</l:l>
|
||||
<l:l i="5">E</l:l>
|
||||
<l:l i="5">e</l:l>
|
||||
<l:l i="6">F</l:l>
|
||||
<l:l i="6">f</l:l>
|
||||
<l:l i="7">G</l:l>
|
||||
<l:l i="7">g</l:l>
|
||||
<l:l i="8">H</l:l>
|
||||
<l:l i="8">h</l:l>
|
||||
<l:l i="9">I</l:l>
|
||||
<l:l i="9">i</l:l>
|
||||
<l:l i="10">J</l:l>
|
||||
<l:l i="10">j</l:l>
|
||||
<l:l i="11">K</l:l>
|
||||
<l:l i="11">k</l:l>
|
||||
<l:l i="12">L</l:l>
|
||||
<l:l i="12">l</l:l>
|
||||
<l:l i="13">M</l:l>
|
||||
<l:l i="13">m</l:l>
|
||||
<l:l i="14">N</l:l>
|
||||
<l:l i="14">n</l:l>
|
||||
<l:l i="15">O</l:l>
|
||||
<l:l i="15">o</l:l>
|
||||
<l:l i="15">Ö</l:l>
|
||||
<l:l i="15">ö</l:l>
|
||||
<l:l i="16">P</l:l>
|
||||
<l:l i="16">p</l:l>
|
||||
<l:l i="17">Q</l:l>
|
||||
<l:l i="17">q</l:l>
|
||||
<l:l i="18">R</l:l>
|
||||
<l:l i="18">r</l:l>
|
||||
<l:l i="19">S</l:l>
|
||||
<l:l i="19">s</l:l>
|
||||
<l:l i="20">T</l:l>
|
||||
<l:l i="20">t</l:l>
|
||||
<l:l i="21">U</l:l>
|
||||
<l:l i="21">u</l:l>
|
||||
<l:l i="21">Ü</l:l>
|
||||
<l:l i="21">ü</l:l>
|
||||
<l:l i="22">V</l:l>
|
||||
<l:l i="22">v</l:l>
|
||||
<l:l i="23">W</l:l>
|
||||
<l:l i="23">w</l:l>
|
||||
<l:l i="24">X</l:l>
|
||||
<l:l i="24">x</l:l>
|
||||
<l:l i="25">Y</l:l>
|
||||
<l:l i="25">y</l:l>
|
||||
<l:l i="26">Z</l:l>
|
||||
<l:l i="26">z</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,600 +0,0 @@
|
|||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="es" english-language-name="Spanish">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<l:gentext key="Abstract" text="Resumen"/>
|
||||
<l:gentext key="abstract" text="resumen"/>
|
||||
<l:gentext key="Answer" text="R:"/>
|
||||
<l:gentext key="answer" text="r:"/>
|
||||
<l:gentext key="Appendix" text="Apéndice"/>
|
||||
<l:gentext key="appendix" text="apéndice"/>
|
||||
<l:gentext key="Article" text="Artículo"/>
|
||||
<l:gentext key="article" text="artículo"/>
|
||||
<l:gentext key="Bibliography" text="Bibliografía"/>
|
||||
<l:gentext key="bibliography" text="bibliografía"/>
|
||||
<l:gentext key="Book" text="Libro"/>
|
||||
<l:gentext key="book" text="libro"/>
|
||||
<l:gentext key="CAUTION" text="ATENCIÓN"/>
|
||||
<l:gentext key="Caution" text="Atención"/>
|
||||
<l:gentext key="caution" text="atención"/>
|
||||
<l:gentext key="Chapter" text="Capítulo"/>
|
||||
<l:gentext key="chapter" text="capítulo"/>
|
||||
<l:gentext key="Colophon" text="Colofón"/>
|
||||
<l:gentext key="colophon" text="colofón"/>
|
||||
<l:gentext key="Copyright" text="Copyright"/>
|
||||
<l:gentext key="copyright" text="copyright"/>
|
||||
<l:gentext key="Dedication" text="Dedicatoria"/>
|
||||
<l:gentext key="dedication" text="dedicatoria"/>
|
||||
<l:gentext key="Edition" text="Edición"/>
|
||||
<l:gentext key="edition" text="edición"/>
|
||||
<l:gentext key="Equation" text="Ecuación"/>
|
||||
<l:gentext key="equation" text="ecuación"/>
|
||||
<l:gentext key="Example" text="Ejemplo"/>
|
||||
<l:gentext key="example" text="ejemplo"/>
|
||||
<l:gentext key="Figure" text="Figura"/>
|
||||
<l:gentext key="figure" text="figura"/>
|
||||
<l:gentext key="Glossary" text="Glosario"/>
|
||||
<l:gentext key="glossary" text="glosario"/>
|
||||
<l:gentext key="GlossSee" text="Ver"/>
|
||||
<l:gentext key="glosssee" text="ver"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Ver también"/>
|
||||
<l:gentext key="glossseealso" text="ver también"/>
|
||||
<l:gentext key="IMPORTANT" text="IMPORTANTE"/>
|
||||
<l:gentext key="important" text="importante"/>
|
||||
<l:gentext key="Important" text="Importante"/>
|
||||
<l:gentext key="Index" text="Índice"/>
|
||||
<l:gentext key="index" text="índice"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="isbn"/>
|
||||
<l:gentext key="LegalNotice" text="Aviso Legal"/>
|
||||
<l:gentext key="legalnotice" text="aviso legal"/>
|
||||
<l:gentext key="MsgAud" text="Audiencia"/>
|
||||
<l:gentext key="msgaud" text="audiencia"/>
|
||||
<l:gentext key="MsgLevel" text="Nivel"/>
|
||||
<l:gentext key="msglevel" text="nivel"/>
|
||||
<l:gentext key="MsgOrig" text="Origen"/>
|
||||
<l:gentext key="msgorig" text="origen"/>
|
||||
<l:gentext key="NOTE" text="NOTA"/>
|
||||
<l:gentext key="Note" text="Nota"/>
|
||||
<l:gentext key="note" text="nota"/>
|
||||
<l:gentext key="Part" text="Parte"/>
|
||||
<l:gentext key="part" text="parte"/>
|
||||
<l:gentext key="Preface" text="Prefacio"/>
|
||||
<l:gentext key="preface" text="prefacio"/>
|
||||
<l:gentext key="Procedure" text="Procedimiento"/>
|
||||
<l:gentext key="procedure" text="procedimiento"/>
|
||||
<l:gentext key="ProductionSet" text="Producción"/>
|
||||
<l:gentext key="PubDate" text="Fecha de publicación"/>
|
||||
<l:gentext key="pubdate" text="fecha de publicación"/>
|
||||
<l:gentext key="Published" text="Publicado"/>
|
||||
<l:gentext key="published" text="publicado"/>
|
||||
<l:gentext key="Qandadiv" text="Q & A" lang="en"/>
|
||||
<l:gentext key="qandadiv" text="Q & A" lang="en"/>
|
||||
<l:gentext key="Question" text="P:"/>
|
||||
<l:gentext key="question" text="p:"/>
|
||||
<l:gentext key="RefEntry" text="Entrada de referencia"/>
|
||||
<l:gentext key="refentry" text="entrada de referencia"/>
|
||||
<l:gentext key="Reference" text="Referencia"/>
|
||||
<l:gentext key="reference" text="referencia"/>
|
||||
<l:gentext key="RefName" text="Nombre de referencia"/>
|
||||
<l:gentext key="refname" text="nombre de referencia"/>
|
||||
<l:gentext key="RefSection" text="Sección de referencia"/>
|
||||
<l:gentext key="refsection" text="sección de referencia"/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Sinopsis"/>
|
||||
<l:gentext key="refsynopsisdiv" text="sinopsis"/>
|
||||
<l:gentext key="RevHistory" text="Historial de revisiones"/>
|
||||
<l:gentext key="revhistory" text="Historial de revisiones"/>
|
||||
<l:gentext key="revision" text="revisión"/>
|
||||
<l:gentext key="Revision" text="Revisión"/>
|
||||
<l:gentext key="sect1" text="Sección"/>
|
||||
<l:gentext key="sect2" text="Sección"/>
|
||||
<l:gentext key="sect3" text="Sección"/>
|
||||
<l:gentext key="sect4" text="Sección"/>
|
||||
<l:gentext key="sect5" text="Sección"/>
|
||||
<l:gentext key="section" text="sección"/>
|
||||
<l:gentext key="Section" text="Sección"/>
|
||||
<l:gentext key="see" text="ver"/>
|
||||
<l:gentext key="See" text="Ver"/>
|
||||
<l:gentext key="seealso" text="ver también"/>
|
||||
<l:gentext key="Seealso" text="Ver también"/>
|
||||
<l:gentext key="SeeAlso" text="Ver También"/>
|
||||
<l:gentext key="set" text="conjunto"/>
|
||||
<l:gentext key="Set" text="Conjunto"/>
|
||||
<l:gentext key="setindex" text="índice del conjunto"/>
|
||||
<l:gentext key="SetIndex" text="Índice del Conjunto"/>
|
||||
<l:gentext key="Sidebar" text="Barra lateral"/>
|
||||
<l:gentext key="sidebar" text="barra lateral"/>
|
||||
<l:gentext key="step" text="paso"/>
|
||||
<l:gentext key="Step" text="Paso"/>
|
||||
<l:gentext key="Table" text="Tabla"/>
|
||||
<l:gentext key="table" text="tabla"/>
|
||||
<l:gentext key="tip" text="sugerencia"/>
|
||||
<l:gentext key="TIP" text="SUGERENCIA"/>
|
||||
<l:gentext key="Tip" text="Sugerencia"/>
|
||||
<l:gentext key="Warning" text="Aviso"/>
|
||||
<l:gentext key="warning" text="aviso"/>
|
||||
<l:gentext key="WARNING" text="AVISO"/>
|
||||
<l:gentext key="and" text="y"/>
|
||||
<l:gentext key="by" text="por"/>
|
||||
<l:gentext key="called" text="called" lang="en"/>
|
||||
<l:gentext key="Edited" text="Editado"/>
|
||||
<l:gentext key="edited" text="editado"/>
|
||||
<l:gentext key="Editedby" text="Editado por"/>
|
||||
<l:gentext key="editedby" text="editado por"/>
|
||||
<l:gentext key="in" text="en"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="elemento inexistente"/>
|
||||
<l:gentext key="notes" text="notas"/>
|
||||
<l:gentext key="Notes" text="Notas"/>
|
||||
<l:gentext key="Pgs" text="Pags."/>
|
||||
<l:gentext key="pgs" text="pags."/>
|
||||
<l:gentext key="Revisedby" text="Revisado por: "/>
|
||||
<l:gentext key="revisedby" text="revisado por: "/>
|
||||
<l:gentext key="TableNotes" text="Notas de Tabla"/>
|
||||
<l:gentext key="tablenotes" text="notas de tabla"/>
|
||||
<l:gentext key="TableofContents" text="Tabla de contenidos"/>
|
||||
<l:gentext key="tableofcontents" text="tabla de contenidos"/>
|
||||
<l:gentext key="the" text="" lang="en"/>
|
||||
<l:gentext key="unexpectedelementname" text="nombre de elemento inesperado"/>
|
||||
<l:gentext key="unsupported" text="no soportado"/>
|
||||
<l:gentext key="xrefto" text="referencia a"/>
|
||||
<l:gentext key="listofequations" text="lista de ecuaciones"/>
|
||||
<l:gentext key="ListofEquations" text="Lista de ecuaciones"/>
|
||||
<l:gentext key="ListofExamples" text="Lista de ejemplos"/>
|
||||
<l:gentext key="listofexamples" text="lista de ejemplos"/>
|
||||
<l:gentext key="ListofFigures" text="Lista de figuras"/>
|
||||
<l:gentext key="listoffigures" text="lista de figuras"/>
|
||||
<l:gentext key="ListofProcedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listofprocedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listoftables" text="lista de tablas"/>
|
||||
<l:gentext key="ListofTables" text="Lista de tablas"/>
|
||||
<l:gentext key="ListofUnknown" text="Lista de desconocido"/>
|
||||
<l:gentext key="listofunknown" text="lista de desconocido"/>
|
||||
<l:gentext key="nav-home" text="Inicio"/>
|
||||
<l:gentext key="nav-next" text="Siguiente"/>
|
||||
<l:gentext key="nav-next-sibling" text="Avanzar"/>
|
||||
<l:gentext key="nav-prev" text="Anterior"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Retroceder"/>
|
||||
<l:gentext key="nav-up" text="Subir"/>
|
||||
<l:gentext key="nav-toc" text="ToC" lang="en"/>
|
||||
<l:gentext key="Draft" text="Borrador"/>
|
||||
<l:gentext key="above" text="arriba"/>
|
||||
<l:gentext key="below" text="abajo"/>
|
||||
<l:gentext key="sectioncalled" text="sección llamada"/>
|
||||
<l:gentext key="index symbols" text="Símbolos"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcdefghijklmnopqrstuvwxyzáéíóúñ"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCDEFGHIJKLMNOPQRSTUVWXYZÁÉÍÓÚÑ"/>
|
||||
<l:dingbat key="startquote" text="“"/>
|
||||
<l:dingbat key="endquote" text="”"/>
|
||||
<l:dingbat key="nestedstartquote" text="‘"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘" lang="en"/>
|
||||
<l:dingbat key="singleendquote" text="’" lang="en"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-" lang="en"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2" lang="en"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2" lang="en"/>
|
||||
|
||||
<l:context name="styles">
|
||||
<l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Apéndice %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Capítulo %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Ecuación %n. %t"/>
|
||||
<l:template name="example" text="Ejemplo %n. %t"/>
|
||||
<l:template name="figure" text="Figura %n. %t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t" lang="en"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Parte %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Procedimiento %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Producción %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tabla %n. %t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="" lang="en"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-unnumbered">
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-numbered">
|
||||
<l:template name="appendix" text="Apéndice %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Capítulo %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="subtitle">
|
||||
<l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="R: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="P: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="P: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(page %p)" lang="en"/>
|
||||
<l:template name="pageabbrev" text="(p. %p)" lang="en"/>
|
||||
<l:template name="Page" text="Page %p" lang="en"/>
|
||||
<l:template name="bridgehead" text="“%t”"/>
|
||||
<l:template name="refsection" text="“%t”"/>
|
||||
<l:template name="refsect1" text="“%t”"/>
|
||||
<l:template name="refsect2" text="“%t”"/>
|
||||
<l:template name="refsect3" text="“%t”"/>
|
||||
<l:template name="sect1" text="“%t”"/>
|
||||
<l:template name="sect2" text="“%t”"/>
|
||||
<l:template name="sect3" text="“%t”"/>
|
||||
<l:template name="sect4" text="“%t”"/>
|
||||
<l:template name="sect5" text="“%t”"/>
|
||||
<l:template name="section" text="“%t”"/>
|
||||
<l:template name="simplesect" text="“%t”"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number">
|
||||
<l:template name="answer" text="R: %n"/>
|
||||
<l:template name="appendix" text="Apéndice %n"/>
|
||||
<l:template name="bridgehead" text="Sección %n"/>
|
||||
<l:template name="chapter" text="Capítulo %n"/>
|
||||
<l:template name="equation" text="Ecuación %n"/>
|
||||
<l:template name="example" text="Ejemplo %n"/>
|
||||
<l:template name="figure" text="Figura %n"/>
|
||||
<l:template name="part" text="Parte %n"/>
|
||||
<l:template name="procedure" text="Procedimiento %n"/>
|
||||
<l:template name="productionset" text="Producción %n"/>
|
||||
<l:template name="qandadiv" text="Q & A %n"/>
|
||||
<l:template name="qandaentry" text="P: %n"/>
|
||||
<l:template name="question" text="P: %n"/>
|
||||
<l:template name="sect1" text="Sección %n"/>
|
||||
<l:template name="sect2" text="Sección %n"/>
|
||||
<l:template name="sect3" text="Sección %n"/>
|
||||
<l:template name="sect4" text="Sección %n"/>
|
||||
<l:template name="sect5" text="Sección %n"/>
|
||||
<l:template name="section" text="Sección %n"/>
|
||||
<l:template name="table" text="Tabla %n"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number-and-title">
|
||||
<l:template name="appendix" text="Apéndice %n, %t"/>
|
||||
<l:template name="bridgehead" text="Sección %n, “%t”"/>
|
||||
<l:template name="chapter" text="Capítulo %n, %t"/>
|
||||
<l:template name="equation" text="Ecuación %n, “%t”"/>
|
||||
<l:template name="example" text="Ejemplo %n, “%t”"/>
|
||||
<l:template name="figure" text="Figura %n, “%t”"/>
|
||||
<l:template name="part" text="Parte %n, “%t”"/>
|
||||
<l:template name="procedure" text="Procedimiento %n, “%t”"/>
|
||||
<l:template name="productionset" text="Producción %n, “%t”"/>
|
||||
<l:template name="qandadiv" text="Q & A %n, “%t”"/>
|
||||
<l:template name="refsect1" text="sección llamada “%t”"/>
|
||||
<l:template name="refsect2" text="sección llamada “%t”"/>
|
||||
<l:template name="refsect3" text="sección llamada “%t”"/>
|
||||
<l:template name="refsection" text="sección llamada “%t”"/>
|
||||
<l:template name="sect1" text="Sección %n, “%t”"/>
|
||||
<l:template name="sect2" text="Sección %n, “%t”"/>
|
||||
<l:template name="sect3" text="Sección %n, “%t”"/>
|
||||
<l:template name="sect4" text="Sección %n, “%t”"/>
|
||||
<l:template name="sect5" text="Sección %n, “%t”"/>
|
||||
<l:template name="section" text="Sección %n, “%t”"/>
|
||||
<l:template name="simplesect" text="sección llamada “%t”"/>
|
||||
<l:template name="table" text="Tabla %n, “%t”"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="authorgroup">
|
||||
<l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" y "/>
|
||||
<l:template name="seplast" text=", y "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="glossary">
|
||||
<l:template name="see" text="Ver "/>
|
||||
<l:template name="seealso" text="Ver también "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="msgset">
|
||||
<l:template name="MsgAud" text="Audiencia: "/>
|
||||
<l:template name="MsgLevel" text="Nivel: "/>
|
||||
<l:template name="MsgOrig" text="Origen: "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime">
|
||||
<l:template name="format" text="m/d/Y" lang="en"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-full">
|
||||
<l:template name="January" text="January" lang="en"/>
|
||||
<l:template name="February" text="February" lang="en"/>
|
||||
<l:template name="March" text="March" lang="en"/>
|
||||
<l:template name="April" text="April" lang="en"/>
|
||||
<l:template name="May" text="May" lang="en"/>
|
||||
<l:template name="June" text="June" lang="en"/>
|
||||
<l:template name="July" text="July" lang="en"/>
|
||||
<l:template name="August" text="August" lang="en"/>
|
||||
<l:template name="September" text="September" lang="en"/>
|
||||
<l:template name="October" text="October" lang="en"/>
|
||||
<l:template name="November" text="November" lang="en"/>
|
||||
<l:template name="December" text="December" lang="en"/>
|
||||
<l:template name="Monday" text="Monday" lang="en"/>
|
||||
<l:template name="Tuesday" text="Tuesday" lang="en"/>
|
||||
<l:template name="Wednesday" text="Wednesday" lang="en"/>
|
||||
<l:template name="Thursday" text="Thursday" lang="en"/>
|
||||
<l:template name="Friday" text="Friday" lang="en"/>
|
||||
<l:template name="Saturday" text="Saturday" lang="en"/>
|
||||
<l:template name="Sunday" text="Sunday" lang="en"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-abbrev">
|
||||
<l:template name="Jan" text="Jan" lang="en"/>
|
||||
<l:template name="Feb" text="Feb" lang="en"/>
|
||||
<l:template name="Mar" text="Mar" lang="en"/>
|
||||
<l:template name="Apr" text="Apr" lang="en"/>
|
||||
<l:template name="May" text="May" lang="en"/>
|
||||
<l:template name="Jun" text="Jun" lang="en"/>
|
||||
<l:template name="Jul" text="Jul" lang="en"/>
|
||||
<l:template name="Aug" text="Aug" lang="en"/>
|
||||
<l:template name="Sep" text="Sep" lang="en"/>
|
||||
<l:template name="Oct" text="Oct" lang="en"/>
|
||||
<l:template name="Nov" text="Nov" lang="en"/>
|
||||
<l:template name="Dec" text="Dec" lang="en"/>
|
||||
<l:template name="Mon" text="Mon" lang="en"/>
|
||||
<l:template name="Tue" text="Tue" lang="en"/>
|
||||
<l:template name="Wed" text="Wed" lang="en"/>
|
||||
<l:template name="Thu" text="Thu" lang="en"/>
|
||||
<l:template name="Fri" text="Fri" lang="en"/>
|
||||
<l:template name="Sat" text="Sat" lang="en"/>
|
||||
<l:template name="Sun" text="Sun" lang="en"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="htmlhelp">
|
||||
<l:template name="langcode" text="0x040a Spanish (Traditional Sort)"/>
|
||||
</l:context>
|
||||
|
||||
<l:letters>
|
||||
<l:l i="-1"/>
|
||||
<l:l i="0">Símbolos</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="1">á</l:l>
|
||||
<l:l i="1">Á</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">CH</l:l>
|
||||
<l:l i="4">ch</l:l>
|
||||
<l:l i="5">D</l:l>
|
||||
<l:l i="5">d</l:l>
|
||||
<l:l i="6">E</l:l>
|
||||
<l:l i="6">e</l:l>
|
||||
<l:l i="6">É</l:l>
|
||||
<l:l i="6">é</l:l>
|
||||
<l:l i="7">F</l:l>
|
||||
<l:l i="7">f</l:l>
|
||||
<l:l i="8">G</l:l>
|
||||
<l:l i="8">g</l:l>
|
||||
<l:l i="9">H</l:l>
|
||||
<l:l i="9">h</l:l>
|
||||
<l:l i="10">I</l:l>
|
||||
<l:l i="10">i</l:l>
|
||||
<l:l i="10">Í</l:l>
|
||||
<l:l i="10">í</l:l>
|
||||
<l:l i="11">J</l:l>
|
||||
<l:l i="11">j</l:l>
|
||||
<l:l i="12">K</l:l>
|
||||
<l:l i="12">k</l:l>
|
||||
<l:l i="13">L</l:l>
|
||||
<l:l i="13">l</l:l>
|
||||
<l:l i="14">LL</l:l>
|
||||
<l:l i="14">ll</l:l>
|
||||
<l:l i="15">M</l:l>
|
||||
<l:l i="15">m</l:l>
|
||||
<l:l i="16">N</l:l>
|
||||
<l:l i="16">n</l:l>
|
||||
<l:l i="17">Ñ</l:l>
|
||||
<l:l i="17">ñ</l:l>
|
||||
<l:l i="18">O</l:l>
|
||||
<l:l i="18">o</l:l>
|
||||
<l:l i="18">Ó</l:l>
|
||||
<l:l i="18">ó</l:l>
|
||||
<l:l i="19">P</l:l>
|
||||
<l:l i="19">p</l:l>
|
||||
<l:l i="20">Q</l:l>
|
||||
<l:l i="20">q</l:l>
|
||||
<l:l i="21">R</l:l>
|
||||
<l:l i="21">r</l:l>
|
||||
<l:l i="22">S</l:l>
|
||||
<l:l i="22">s</l:l>
|
||||
<l:l i="23">T</l:l>
|
||||
<l:l i="23">t</l:l>
|
||||
<l:l i="24">U</l:l>
|
||||
<l:l i="24">u</l:l>
|
||||
<l:l i="24">Ú</l:l>
|
||||
<l:l i="24">ú</l:l>
|
||||
<l:l i="25">V</l:l>
|
||||
<l:l i="25">v</l:l>
|
||||
<l:l i="26">W</l:l>
|
||||
<l:l i="26">w</l:l>
|
||||
<l:l i="27">X</l:l>
|
||||
<l:l i="27">x</l:l>
|
||||
<l:l i="28">Y</l:l>
|
||||
<l:l i="28">y</l:l>
|
||||
<l:l i="29">Z</l:l>
|
||||
<l:l i="29">z</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,614 +0,0 @@
|
|||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="fr" english-language-name="French">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<l:gentext key="Abstract" text="Résumé"/>
|
||||
<l:gentext key="abstract" text="Résumé"/>
|
||||
<l:gentext key="Answer" text="R :"/>
|
||||
<l:gentext key="answer" text="R :"/>
|
||||
<l:gentext key="Appendix" text="Annexe"/>
|
||||
<l:gentext key="appendix" text="annexe"/>
|
||||
<l:gentext key="Article" text="Article"/>
|
||||
<l:gentext key="article" text="Article"/>
|
||||
<l:gentext key="Bibliography" text="Bibliographie"/>
|
||||
<l:gentext key="bibliography" text="Bibliographie"/>
|
||||
<l:gentext key="Book" text="Livre"/>
|
||||
<l:gentext key="book" text="Livre"/>
|
||||
<l:gentext key="CAUTION" text="ATTENTION"/>
|
||||
<l:gentext key="Caution" text="Attention"/>
|
||||
<l:gentext key="caution" text="Attention"/>
|
||||
<l:gentext key="Chapter" text="Chapitre"/>
|
||||
<l:gentext key="chapter" text="chapitre"/>
|
||||
<l:gentext key="Colophon" text="Colophon"/>
|
||||
<l:gentext key="colophon" text="Colophon"/>
|
||||
<l:gentext key="Copyright" text="Copyright"/>
|
||||
<l:gentext key="copyright" text="Copyright"/>
|
||||
<l:gentext key="Dedication" text="Dédicace"/>
|
||||
<l:gentext key="dedication" text="Dédicace"/>
|
||||
<l:gentext key="Edition" text="Édition"/>
|
||||
<l:gentext key="edition" text="Édition"/>
|
||||
<l:gentext key="Equation" text="Équation"/>
|
||||
<l:gentext key="equation" text="Équation"/>
|
||||
<l:gentext key="Example" text="Exemple"/>
|
||||
<l:gentext key="example" text="Exemple"/>
|
||||
<l:gentext key="Figure" text="Figure"/>
|
||||
<l:gentext key="figure" text="Figure"/>
|
||||
<l:gentext key="Glossary" text="Glossaire"/>
|
||||
<l:gentext key="glossary" text="Glossaire"/>
|
||||
<l:gentext key="GlossSee" text="Voir"/>
|
||||
<l:gentext key="glosssee" text="Voir"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Voir aussi"/>
|
||||
<l:gentext key="glossseealso" text="Voir aussi"/>
|
||||
<l:gentext key="IMPORTANT" text="IMPORTANT"/>
|
||||
<l:gentext key="important" text="Important"/>
|
||||
<l:gentext key="Important" text="Important"/>
|
||||
<l:gentext key="Index" text="Index"/>
|
||||
<l:gentext key="index" text="Index"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Note légale"/>
|
||||
<l:gentext key="legalnotice" text="Note légale"/>
|
||||
<l:gentext key="MsgAud" text="Public visé"/>
|
||||
<l:gentext key="msgaud" text="Public visé"/>
|
||||
<l:gentext key="MsgLevel" text="Niveau"/>
|
||||
<l:gentext key="msglevel" text="Niveau"/>
|
||||
<l:gentext key="MsgOrig" text="Origine"/>
|
||||
<l:gentext key="msgorig" text="Origine"/>
|
||||
<l:gentext key="NOTE" text="NOTE"/>
|
||||
<l:gentext key="Note" text="Note"/>
|
||||
<l:gentext key="note" text="Note"/>
|
||||
<l:gentext key="Part" text="Partie"/>
|
||||
<l:gentext key="part" text="Partie"/>
|
||||
<l:gentext key="Preface" text="Préface"/>
|
||||
<l:gentext key="preface" text="Préface"/>
|
||||
<l:gentext key="Procedure" text="Procédure"/>
|
||||
<l:gentext key="procedure" text="Procédure"/>
|
||||
<l:gentext key="ProductionSet" text="Production"/>
|
||||
<l:gentext key="PubDate" text="Date de publication"/>
|
||||
<l:gentext key="pubdate" text="Date de publication"/>
|
||||
<l:gentext key="Published" text="Publié"/>
|
||||
<l:gentext key="published" text="Publié"/>
|
||||
<l:gentext key="Qandadiv" text="Q & R"/>
|
||||
<l:gentext key="qandadiv" text="Q & R"/>
|
||||
<l:gentext key="Question" text="Q :"/>
|
||||
<l:gentext key="question" text="Q :"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Référence"/>
|
||||
<l:gentext key="reference" text="Référence"/>
|
||||
<l:gentext key="RefName" text="Nom"/>
|
||||
<l:gentext key="refname" text="Nom"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Synopsis"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Synopsis"/>
|
||||
<l:gentext key="RevHistory" text="Historique des versions"/>
|
||||
<l:gentext key="revhistory" text="Historique des versions"/>
|
||||
<l:gentext key="revision" text="Version"/>
|
||||
<l:gentext key="Revision" text="Version"/>
|
||||
<l:gentext key="sect1" text="Section"/>
|
||||
<l:gentext key="sect2" text="Section"/>
|
||||
<l:gentext key="sect3" text="Section"/>
|
||||
<l:gentext key="sect4" text="Section"/>
|
||||
<l:gentext key="sect5" text="Section"/>
|
||||
<l:gentext key="section" text="section"/>
|
||||
<l:gentext key="Section" text="Section"/>
|
||||
<l:gentext key="see" text="voir"/>
|
||||
<l:gentext key="See" text="Voir"/>
|
||||
<l:gentext key="seealso" text="voir aussi"/>
|
||||
<l:gentext key="Seealso" text="Voir aussi"/>
|
||||
<l:gentext key="SeeAlso" text="Voir Aussi"/>
|
||||
<l:gentext key="set" text="Ensemble"/>
|
||||
<l:gentext key="Set" text="Ensemble"/>
|
||||
<l:gentext key="setindex" text="Index"/>
|
||||
<l:gentext key="SetIndex" text="Index"/>
|
||||
<l:gentext key="Sidebar" text=""/>
|
||||
<l:gentext key="sidebar" text="sidebar"/>
|
||||
<l:gentext key="step" text="étape"/>
|
||||
<l:gentext key="Step" text="Étape"/>
|
||||
<l:gentext key="Table" text="Tableau"/>
|
||||
<l:gentext key="table" text="Tableau"/>
|
||||
<l:gentext key="tip" text="ASTUCE"/>
|
||||
<l:gentext key="TIP" text="ASTUCE"/>
|
||||
<l:gentext key="Tip" text="Astuce"/>
|
||||
<l:gentext key="Warning" text="Avertissement"/>
|
||||
<l:gentext key="warning" text="AVERTISSEMENT"/>
|
||||
<l:gentext key="WARNING" text="AVERTISSEMENT"/>
|
||||
<l:gentext key="and" text="et"/>
|
||||
<l:gentext key="by" text="par"/>
|
||||
<l:gentext key="called" text="intitulé"/>
|
||||
<l:gentext key="Edited" text="Publié"/>
|
||||
<l:gentext key="edited" text="Publié"/>
|
||||
<l:gentext key="Editedby" text="Publié par"/>
|
||||
<l:gentext key="editedby" text="Publié par"/>
|
||||
<l:gentext key="in" text="dans"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="Cet élément n'existe pas"/>
|
||||
<l:gentext key="notes" text="Notes"/>
|
||||
<l:gentext key="Notes" text="Notes"/>
|
||||
<l:gentext key="Pgs" text="Pages"/>
|
||||
<l:gentext key="pgs" text="Pages"/>
|
||||
<l:gentext key="Revisedby" text="Revu par : "/>
|
||||
<l:gentext key="revisedby" text="Revu par : "/>
|
||||
<l:gentext key="TableNotes" text="Remarques"/>
|
||||
<l:gentext key="tablenotes" text="Remarques"/>
|
||||
<l:gentext key="TableofContents" text="Table des matières"/>
|
||||
<l:gentext key="tableofcontents" text="Table des matières"/>
|
||||
<l:gentext key="the" text=""/>
|
||||
<l:gentext key="unexpectedelementname" text="Nom d'élément non attendu"/>
|
||||
<l:gentext key="unsupported" text="Non reconnu par le système"/>
|
||||
<l:gentext key="xrefto" text="Référence vers"/>
|
||||
<l:gentext key="listofequations" text="Liste des équations"/>
|
||||
<l:gentext key="ListofEquations" text="Liste des équations"/>
|
||||
<l:gentext key="ListofExamples" text="Liste des exemples"/>
|
||||
<l:gentext key="listofexamples" text="Liste des exemples"/>
|
||||
<l:gentext key="ListofFigures" text="Liste des illustrations"/>
|
||||
<l:gentext key="listoffigures" text="Liste des illustrations"/>
|
||||
<l:gentext key="ListofProcedures" text="Liste des procédures"/>
|
||||
<l:gentext key="listofprocedures" text="Liste des procédures"/>
|
||||
<l:gentext key="listoftables" text="Liste des tableaux"/>
|
||||
<l:gentext key="ListofTables" text="Liste des tableaux"/>
|
||||
<l:gentext key="ListofUnknown" text="Liste des inconnues"/>
|
||||
<l:gentext key="listofunknown" text="Liste des inconnues"/>
|
||||
<l:gentext key="nav-home" text="Sommaire"/>
|
||||
<l:gentext key="nav-next" text="Suivant"/>
|
||||
<l:gentext key="nav-next-sibling" text="Avance rapide"/>
|
||||
<l:gentext key="nav-prev" text="Précédent"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Arrière rapide"/>
|
||||
<l:gentext key="nav-up" text="Niveau supérieur"/>
|
||||
<l:gentext key="nav-toc" text="TdM"/>
|
||||
<l:gentext key="Draft" text="Brouillon"/>
|
||||
<l:gentext key="above" text="au dessus"/>
|
||||
<l:gentext key="below" text="au dessous"/>
|
||||
<l:gentext key="sectioncalled" text="la section intitulée"/>
|
||||
<l:gentext key="index symbols" text="Symboles"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcdefghijklmnopqrstuvwxyzâêîôûëïüàèùéçæœ"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCDEFGHIJKLMNOPQRSTUVWXYZÂÊÎÔÛËÏÜÀÈÙÉÇÆŒ"/>
|
||||
<l:dingbat key="startquote" text="« "/>
|
||||
<l:dingbat key="endquote" text=" »"/>
|
||||
<l:dingbat key="nestedstartquote" text="« "/>
|
||||
<l:dingbat key="nestedendquote" text=" »"/>
|
||||
<l:dingbat key="singlestartquote" text="‹"/>
|
||||
<l:dingbat key="singleendquote" text="›"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2"/>
|
||||
|
||||
<l:context name="styles">
|
||||
<l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Annexe %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Chapitre %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Équation %n. %t"/>
|
||||
<l:template name="example" text="Exemple %n. %t"/>
|
||||
<l:template name="figure" text="Figure %n. %t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Procédure %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Production %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tableau %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-unnumbered">
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-numbered">
|
||||
<l:template name="appendix" text="Annexe %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Chapitre %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="subtitle">
|
||||
<l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="R : %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="Q : %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="Q : %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(page %p)"/>
|
||||
<l:template name="pageabbrev" text="(p. %p)"/>
|
||||
<l:template name="Page" text="Page %p"/>
|
||||
<l:template name="bridgehead" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsection" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsect1" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsect2" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsect3" text="la section intitulée « %t »"/>
|
||||
<l:template name="sect1" text="la section intitulée « %t »"/>
|
||||
<l:template name="sect2" text="la section intitulée « %t »"/>
|
||||
<l:template name="sect3" text="la section intitulée « %t »"/>
|
||||
<l:template name="sect4" text="la section intitulée « %t »"/>
|
||||
<l:template name="sect5" text="la section intitulée « %t »"/>
|
||||
<l:template name="section" text="la section intitulée « %t »"/>
|
||||
<l:template name="simplesect" text="la section intitulée « %t »"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number">
|
||||
<l:template name="answer" text="R : %n"/>
|
||||
<l:template name="appendix" text="Annexe %n"/>
|
||||
<l:template name="bridgehead" text="Section %n"/>
|
||||
<l:template name="chapter" text="Chapitre %n"/>
|
||||
<l:template name="equation" text="Équation %n"/>
|
||||
<l:template name="example" text="Exemple %n"/>
|
||||
<l:template name="figure" text="Figure %n"/>
|
||||
<l:template name="part" text="Partie %n"/>
|
||||
<l:template name="procedure" text="Procédure %n"/>
|
||||
<l:template name="productionset" text="Production %n"/>
|
||||
<l:template name="qandadiv" text="Q & R %n"/>
|
||||
<l:template name="qandaentry" text="Q : %n"/>
|
||||
<l:template name="question" text="Q : %n"/>
|
||||
<l:template name="sect1" text="Section %n"/>
|
||||
<l:template name="sect2" text="Section %n"/>
|
||||
<l:template name="sect3" text="Section %n"/>
|
||||
<l:template name="sect4" text="Section %n"/>
|
||||
<l:template name="sect5" text="Section %n"/>
|
||||
<l:template name="section" text="Section %n"/>
|
||||
<l:template name="table" text="Tableau %n"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number-and-title">
|
||||
<l:template name="appendix" text="Annexe %n, %t"/>
|
||||
<l:template name="bridgehead" text="Section %n, « %t »"/>
|
||||
<l:template name="chapter" text="Chapitre %n, %t"/>
|
||||
<l:template name="equation" text="Équation %n, « %t »"/>
|
||||
<l:template name="example" text="Exemple %n, « %t »"/>
|
||||
<l:template name="figure" text="Figure %n, « %t »"/>
|
||||
<l:template name="part" text="Partie %n, « %t »"/>
|
||||
<l:template name="procedure" text="Procédure %n, « %t »"/>
|
||||
<l:template name="productionset" text="Production %n, « %t »"/>
|
||||
<l:template name="qandadiv" text="Q & R %n, « %t »"/>
|
||||
<l:template name="refsect1" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsect2" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsect3" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsection" text="la section intitulée « %t »"/>
|
||||
<l:template name="sect1" text="Section %n, « %t »"/>
|
||||
<l:template name="sect2" text="Section %n, « %t »"/>
|
||||
<l:template name="sect3" text="Section %n, « %t »"/>
|
||||
<l:template name="sect4" text="Section %n, « %t »"/>
|
||||
<l:template name="sect5" text="Section %n, « %t »"/>
|
||||
<l:template name="section" text="Section %n, « %t »"/>
|
||||
<l:template name="simplesect" text="la section intitulée « %t »"/>
|
||||
<l:template name="table" text="Tableau %n, « %t »"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="authorgroup">
|
||||
<l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" et "/>
|
||||
<l:template name="seplast" text=", et "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="glossary">
|
||||
<l:template name="see" text="Voir "/>
|
||||
<l:template name="seealso" text="Voir aussi "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="msgset">
|
||||
<l:template name="MsgAud" text="Public visé: "/>
|
||||
<l:template name="MsgLevel" text="Niveau: "/>
|
||||
<l:template name="MsgOrig" text="Origine: "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime">
|
||||
<l:template name="format" text="d/m/Y"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-full">
|
||||
<l:template name="January" text="janvier"/>
|
||||
<l:template name="February" text="février"/>
|
||||
<l:template name="March" text="mars"/>
|
||||
<l:template name="April" text="avril"/>
|
||||
<l:template name="May" text="mai"/>
|
||||
<l:template name="June" text="juin"/>
|
||||
<l:template name="July" text="juillet"/>
|
||||
<l:template name="August" text="août"/>
|
||||
<l:template name="September" text="septembre"/>
|
||||
<l:template name="October" text="octobre"/>
|
||||
<l:template name="November" text="novembre"/>
|
||||
<l:template name="December" text="décembre"/>
|
||||
<l:template name="Monday" text="lundi"/>
|
||||
<l:template name="Tuesday" text="mardi"/>
|
||||
<l:template name="Wednesday" text="mercredi"/>
|
||||
<l:template name="Thursday" text="jeudi"/>
|
||||
<l:template name="Friday" text="vendredi"/>
|
||||
<l:template name="Saturday" text="samedi"/>
|
||||
<l:template name="Sunday" text="dimanche"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-abbrev">
|
||||
<l:template name="Jan" text="jan"/>
|
||||
<l:template name="Feb" text="fév"/>
|
||||
<l:template name="Mar" text="mar"/>
|
||||
<l:template name="Apr" text="avr"/>
|
||||
<l:template name="May" text="mai"/>
|
||||
<l:template name="Jun" text="jun"/>
|
||||
<l:template name="Jul" text="jui"/>
|
||||
<l:template name="Aug" text="aoû"/>
|
||||
<l:template name="Sep" text="sep"/>
|
||||
<l:template name="Oct" text="oct"/>
|
||||
<l:template name="Nov" text="nov"/>
|
||||
<l:template name="Dec" text="déc"/>
|
||||
<l:template name="Mon" text="lun"/>
|
||||
<l:template name="Tue" text="mar"/>
|
||||
<l:template name="Wed" text="mer"/>
|
||||
<l:template name="Thu" text="jeu"/>
|
||||
<l:template name="Fri" text="ven"/>
|
||||
<l:template name="Sat" text="sam"/>
|
||||
<l:template name="Sun" text="dim"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="htmlhelp">
|
||||
<l:template name="langcode" text="0x040c French (FRANCE)"/>
|
||||
</l:context>
|
||||
|
||||
<l:letters>
|
||||
<l:l i="-1"/>
|
||||
<l:l i="0">Symboles</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="1">à</l:l>
|
||||
<l:l i="1">À</l:l>
|
||||
<l:l i="1">â</l:l>
|
||||
<l:l i="1">Â</l:l>
|
||||
<l:l i="1">Æ</l:l>
|
||||
<l:l i="1">æ</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="3">ç</l:l>
|
||||
<l:l i="4">D</l:l>
|
||||
<l:l i="4">d</l:l>
|
||||
<l:l i="5">E</l:l>
|
||||
<l:l i="5">e</l:l>
|
||||
<l:l i="5">ê</l:l>
|
||||
<l:l i="5">Ê</l:l>
|
||||
<l:l i="5">é</l:l>
|
||||
<l:l i="5">É</l:l>
|
||||
<l:l i="5">è</l:l>
|
||||
<l:l i="5">È</l:l>
|
||||
<l:l i="5">ë</l:l>
|
||||
<l:l i="5">Ë</l:l>
|
||||
<l:l i="5">€</l:l>
|
||||
<l:l i="6">F</l:l>
|
||||
<l:l i="6">f</l:l>
|
||||
<l:l i="7">G</l:l>
|
||||
<l:l i="7">g</l:l>
|
||||
<l:l i="8">H</l:l>
|
||||
<l:l i="8">h</l:l>
|
||||
<l:l i="9">I</l:l>
|
||||
<l:l i="9">i</l:l>
|
||||
<l:l i="9">Î</l:l>
|
||||
<l:l i="9">î</l:l>
|
||||
<l:l i="9">Ï</l:l>
|
||||
<l:l i="9">ï</l:l>
|
||||
<l:l i="10">J</l:l>
|
||||
<l:l i="10">j</l:l>
|
||||
<l:l i="11">K</l:l>
|
||||
<l:l i="11">k</l:l>
|
||||
<l:l i="12">L</l:l>
|
||||
<l:l i="12">l</l:l>
|
||||
<l:l i="13">M</l:l>
|
||||
<l:l i="13">m</l:l>
|
||||
<l:l i="14">N</l:l>
|
||||
<l:l i="14">n</l:l>
|
||||
<l:l i="15">O</l:l>
|
||||
<l:l i="15">o</l:l>
|
||||
<l:l i="15">Ö</l:l>
|
||||
<l:l i="15">ö</l:l>
|
||||
<l:l i="15">Œ</l:l>
|
||||
<l:l i="15">œ</l:l>
|
||||
<l:l i="16">P</l:l>
|
||||
<l:l i="16">p</l:l>
|
||||
<l:l i="17">Q</l:l>
|
||||
<l:l i="17">q</l:l>
|
||||
<l:l i="18">R</l:l>
|
||||
<l:l i="18">r</l:l>
|
||||
<l:l i="19">S</l:l>
|
||||
<l:l i="19">s</l:l>
|
||||
<l:l i="20">T</l:l>
|
||||
<l:l i="20">t</l:l>
|
||||
<l:l i="21">U</l:l>
|
||||
<l:l i="21">u</l:l>
|
||||
<l:l i="21">Ù</l:l>
|
||||
<l:l i="21">ù</l:l>
|
||||
<l:l i="21">Û</l:l>
|
||||
<l:l i="21">û</l:l>
|
||||
<l:l i="21">Ü</l:l>
|
||||
<l:l i="21">ü</l:l>
|
||||
<l:l i="22">V</l:l>
|
||||
<l:l i="22">v</l:l>
|
||||
<l:l i="23">W</l:l>
|
||||
<l:l i="23">w</l:l>
|
||||
<l:l i="24">X</l:l>
|
||||
<l:l i="24">x</l:l>
|
||||
<l:l i="25">Y</l:l>
|
||||
<l:l i="25">y</l:l>
|
||||
<l:l i="26">Z</l:l>
|
||||
<l:l i="26">z</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
|
@ -1,716 +0,0 @@
|
|||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
exclude-result-prefixes="doc"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: gentext.xsl 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
|
||||
<xsl:template match="*" mode="object.title.template">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="chapter" mode="object.title.template">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$chapter.autolabel != 0">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-numbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-unnumbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="appendix" mode="object.title.template">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$appendix.autolabel != 0">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-numbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-unnumbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section|sect1|sect2|sect3|sect4|sect5|simplesect
|
||||
|bridgehead"
|
||||
mode="object.title.template">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$section.autolabel != 0">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-numbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-unnumbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="procedure" mode="object.title.template">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$formal.procedures != 0">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
<xsl:text>.formal</xsl:text>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="object.subtitle.template">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'subtitle'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="is.autonumber">
|
||||
<xsl:value-of select="'0'"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section|sect1|sect2|sect3|sect4|sect5"
|
||||
mode="is.autonumber">
|
||||
<xsl:value-of select="$section.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="figure|example|table|equation" mode="is.autonumber">
|
||||
<xsl:value-of select="'1'"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="appendix" mode="is.autonumber">
|
||||
<xsl:value-of select="$appendix.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="chapter" mode="is.autonumber">
|
||||
<xsl:value-of select="$chapter.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="part" mode="is.autonumber">
|
||||
<xsl:value-of select="$part.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="preface" mode="is.autonumber">
|
||||
<xsl:value-of select="$preface.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="question|answer" mode="is.autonumber">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$qanda.defaultlabel = 'number'
|
||||
and not(label)">
|
||||
<xsl:value-of select="'1'"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="'0'"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="qandadiv" mode="is.autonumber">
|
||||
<xsl:value-of select="$qandadiv.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="bridgehead" mode="is.autonumber">
|
||||
<xsl:value-of select="$section.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="*" mode="object.xref.template">
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="xrefstyle"/>
|
||||
<xsl:param name="referrer"/>
|
||||
|
||||
<!-- Is autonumbering on? -->
|
||||
<xsl:variable name="autonumber">
|
||||
<xsl:apply-templates select="." mode="is.autonumber"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="number-and-title-template">
|
||||
<xsl:call-template name="gentext.template.exists">
|
||||
<xsl:with-param name="context" select="'xref-number-and-title'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="number-template">
|
||||
<xsl:call-template name="gentext.template.exists">
|
||||
<xsl:with-param name="context" select="'xref-number'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="context">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$autonumber != 0
|
||||
and $number-and-title-template != 0
|
||||
and $xref.with.number.and.title != 0">
|
||||
<xsl:value-of select="'xref-number-and-title'"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$autonumber != 0
|
||||
and $number-template != 0">
|
||||
<xsl:value-of select="'xref-number'"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="'xref'"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="$context"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
</xsl:call-template>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="object.title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="template">
|
||||
<xsl:apply-templates select="." mode="object.title.template"/>
|
||||
</xsl:variable>
|
||||
|
||||
<!--
|
||||
<xsl:message>
|
||||
<xsl:text>object.title.markup: </xsl:text>
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
<xsl:text>: </xsl:text>
|
||||
<xsl:value-of select="$template"/>
|
||||
</xsl:message>
|
||||
-->
|
||||
|
||||
<xsl:call-template name="substitute-markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
<xsl:with-param name="template" select="$template"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="*" mode="object.title.markup.textonly">
|
||||
<xsl:variable name="title">
|
||||
<xsl:apply-templates select="." mode="object.title.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:value-of select="$title"/>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="object.titleabbrev.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
|
||||
<!-- Just for consistency in template naming -->
|
||||
|
||||
<xsl:apply-templates select="." mode="titleabbrev.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="object.subtitle.markup">
|
||||
<xsl:variable name="template">
|
||||
<xsl:apply-templates select="." mode="object.subtitle.template"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="substitute-markup">
|
||||
<xsl:with-param name="template" select="$template"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="object.xref.markup">
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="xrefstyle"/>
|
||||
<xsl:param name="referrer"/>
|
||||
|
||||
<xsl:variable name="template">
|
||||
<xsl:choose>
|
||||
<xsl:when test="starts-with(normalize-space($xrefstyle), 'select:')">
|
||||
<xsl:call-template name="make.gentext.template">
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="starts-with(normalize-space($xrefstyle), 'template:')">
|
||||
<xsl:value-of select="substring-after(normalize-space($xrefstyle), 'template:')"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="object.xref.template">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<!--
|
||||
<xsl:message>
|
||||
<xsl:text>object.xref.markup: </xsl:text>
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
<xsl:text>(</xsl:text>
|
||||
<xsl:value-of select="$xrefstyle"/>
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="$purpose"/>
|
||||
<xsl:text>)</xsl:text>
|
||||
<xsl:text>: [</xsl:text>
|
||||
<xsl:value-of select="$template"/>
|
||||
<xsl:text>]</xsl:text>
|
||||
</xsl:message>
|
||||
-->
|
||||
|
||||
<xsl:if test="$template = ''">
|
||||
<xsl:message>
|
||||
<xsl:text>object.xref.markup: empty xref template</xsl:text>
|
||||
<xsl:text> for linkend="</xsl:text>
|
||||
<xsl:value-of select="@id"/>
|
||||
<xsl:text>" and @xrefstyle="</xsl:text>
|
||||
<xsl:value-of select="$xrefstyle"/>
|
||||
<xsl:text>"</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:call-template name="substitute-markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
<xsl:with-param name="template" select="$template"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="listitem" mode="object.xref.markup">
|
||||
<xsl:choose>
|
||||
<xsl:when test="parent::orderedlist">
|
||||
<xsl:variable name="template">
|
||||
<xsl:apply-templates select="." mode="object.xref.template"/>
|
||||
</xsl:variable>
|
||||
<xsl:call-template name="substitute-markup">
|
||||
<xsl:with-param name="template" select="$template"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>Xref is only supported to listitems in an</xsl:text>
|
||||
<xsl:text> orderedlist: </xsl:text>
|
||||
<xsl:value-of select="@id"/>
|
||||
</xsl:message>
|
||||
<xsl:text>???</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="question" mode="object.xref.markup">
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="xrefstyle"/>
|
||||
<xsl:param name="referrer"/>
|
||||
|
||||
<xsl:variable name="deflabel">
|
||||
<xsl:choose>
|
||||
<xsl:when test="ancestor-or-self::*[@defaultlabel]">
|
||||
<xsl:value-of select="(ancestor-or-self::*[@defaultlabel])[last()]
|
||||
/@defaultlabel"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$qanda.defaultlabel"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="template">
|
||||
<xsl:choose>
|
||||
<!-- This avoids double Q: Q: in xref when defaultlabel=qanda -->
|
||||
<xsl:when test="$deflabel = 'qanda' and not(label)">%n</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="object.xref.template">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="substitute-markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
<xsl:with-param name="template" select="$template"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template name="substitute-markup">
|
||||
<xsl:param name="template" select="''"/>
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:param name="title" select="''"/>
|
||||
<xsl:param name="subtitle" select="''"/>
|
||||
<xsl:param name="label" select="''"/>
|
||||
<xsl:param name="pagenumber" select="''"/>
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="xrefstyle"/>
|
||||
<xsl:param name="referrer"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($template, '%')">
|
||||
<xsl:value-of select="substring-before($template, '%')"/>
|
||||
<xsl:variable name="candidate"
|
||||
select="substring(substring-after($template, '%'), 1, 1)"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$candidate = 't'">
|
||||
<xsl:apply-templates select="." mode="insert.title.markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="title">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title != ''">
|
||||
<xsl:copy-of select="$title"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="$candidate = 's'">
|
||||
<xsl:apply-templates select="." mode="insert.subtitle.markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="subtitle">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$subtitle != ''">
|
||||
<xsl:copy-of select="$subtitle"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="$candidate = 'n'">
|
||||
<xsl:apply-templates select="." mode="insert.label.markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="label">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$label != ''">
|
||||
<xsl:copy-of select="$label"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="label.markup"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="$candidate = 'p'">
|
||||
<xsl:apply-templates select="." mode="insert.pagenumber.markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="pagenumber">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$pagenumber != ''">
|
||||
<xsl:copy-of select="$pagenumber"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="pagenumber.markup"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="$candidate = 'd'">
|
||||
<xsl:apply-templates select="." mode="insert.direction.markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="direction">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$referrer">
|
||||
<xsl:variable name="referent-is-below">
|
||||
<xsl:for-each select="preceding::xref">
|
||||
<xsl:if test="generate-id(.) = generate-id($referrer)">1</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$referent-is-below = ''">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'above'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'below'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>Attempt to use %d in gentext with no referrer!</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="$candidate = '%' ">
|
||||
<xsl:text>%</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:text>%</xsl:text><xsl:value-of select="$candidate"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<!-- recurse with the rest of the template string -->
|
||||
<xsl:variable name="rest"
|
||||
select="substring($template,
|
||||
string-length(substring-before($template, '%'))+3)"/>
|
||||
<xsl:call-template name="substitute-markup">
|
||||
<xsl:with-param name="template" select="$rest"/>
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
<xsl:with-param name="title" select="$title"/>
|
||||
<xsl:with-param name="subtitle" select="$subtitle"/>
|
||||
<xsl:with-param name="label" select="$label"/>
|
||||
<xsl:with-param name="pagenumber" select="$pagenumber"/>
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$template"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template name="make.gentext.template">
|
||||
<xsl:param name="xrefstyle" select="''"/>
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="referrer"/>
|
||||
<xsl:param name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:param>
|
||||
|
||||
<!-- parse xrefstyle to get parts -->
|
||||
<xsl:variable name="parts"
|
||||
select="substring-after(normalize-space($xrefstyle), 'select:')"/>
|
||||
|
||||
<xsl:variable name="labeltype">
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($parts, 'labelnumber')">
|
||||
<xsl:text>labelnumber</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'labelname')">
|
||||
<xsl:text>labelname</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'label')">
|
||||
<xsl:text>label</xsl:text>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="titletype">
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($parts, 'quotedtitle')">
|
||||
<xsl:text>quotedtitle</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'title')">
|
||||
<xsl:text>title</xsl:text>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="pagetype">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$insert.xref.page.number = 'no'">
|
||||
<!-- suppress page numbers -->
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'nopage')">
|
||||
<xsl:text>nopage</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'pagenumber')">
|
||||
<xsl:text>pagenumber</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'pageabbrev')">
|
||||
<xsl:text>pageabbrev</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'Page')">
|
||||
<xsl:text>Page</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'page')">
|
||||
<xsl:text>page</xsl:text>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$labeltype != ''">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$labeltype = 'labelname'">
|
||||
<xsl:call-template name="gentext"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$labeltype = 'labelnumber'">
|
||||
<xsl:text>%n</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="$labeltype = 'label'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'xref-number'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$titletype != ''">
|
||||
<xsl:value-of select="$xref.label-title.separator"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$pagetype != ''">
|
||||
<xsl:value-of select="$xref.label-page.separator"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="$titletype != ''">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$titletype = 'title'">
|
||||
<xsl:text>%t</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="$titletype = 'quotedtitle'">
|
||||
<xsl:call-template name="gentext.dingbat">
|
||||
<xsl:with-param name="dingbat" select="'startquote'"/>
|
||||
</xsl:call-template>
|
||||
<xsl:text>%t</xsl:text>
|
||||
<xsl:call-template name="gentext.dingbat">
|
||||
<xsl:with-param name="dingbat" select="'endquote'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$pagetype != '' and $pagetype != 'nopage'">
|
||||
<xsl:value-of select="$xref.title-page.separator"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="$pagetype != ''">
|
||||
<xsl:choose>
|
||||
<!-- special case: use regular xref template -->
|
||||
<xsl:when test="$pagetype = 'nopage'
|
||||
and $labeltype = ''
|
||||
and $titletype = ''">
|
||||
<xsl:apply-templates select="." mode="object.xref.template">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="$pagetype = 'page'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'xref'"/>
|
||||
<xsl:with-param name="name" select="'page'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$pagetype = 'Page'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'xref'"/>
|
||||
<xsl:with-param name="name" select="'Page'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$pagetype = 'pageabbrev'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'xref'"/>
|
||||
<xsl:with-param name="name" select="'pageabbrev'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$pagetype = 'pagenumber'">
|
||||
<xsl:text>%p</xsl:text>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
|
||||
</xsl:if>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,63 +0,0 @@
|
|||
<!ENTITY % prefix "l">
|
||||
|
||||
<!ENTITY % xmlns "xmlns:%prefix;">
|
||||
<!ENTITY % uri "'http://docbook.sourceforge.net/xmlns/l10n/1.0'">
|
||||
|
||||
<!ENTITY % i18n "%prefix;:i18n">
|
||||
<!ENTITY % l10n "%prefix;:l10n">
|
||||
<!ENTITY % gentext "%prefix;:gentext">
|
||||
<!ENTITY % dingbat "%prefix;:dingbat">
|
||||
<!ENTITY % context "%prefix;:context">
|
||||
<!ENTITY % template "%prefix;:template">
|
||||
<!ENTITY % letters "%prefix;:letters">
|
||||
<!ENTITY % l "%prefix;:l">
|
||||
<!ENTITY % lang "lang NMTOKEN #IMPLIED">
|
||||
|
||||
<!ELEMENT %i18n; ((%l10n;)+)>
|
||||
<!ATTLIST %i18n;
|
||||
%xmlns; CDATA #FIXED %uri;
|
||||
>
|
||||
|
||||
<!ELEMENT %l10n; (%gentext;|%dingbat;|%context;|%letters;)*>
|
||||
<!ATTLIST %l10n;
|
||||
%xmlns; CDATA #FIXED %uri;
|
||||
language CDATA #REQUIRED
|
||||
english-language-name CDATA #IMPLIED
|
||||
>
|
||||
|
||||
<!ELEMENT %gentext; EMPTY>
|
||||
<!ATTLIST %gentext;
|
||||
%lang;
|
||||
key CDATA #REQUIRED
|
||||
text CDATA #REQUIRED
|
||||
>
|
||||
|
||||
<!ELEMENT %dingbat; EMPTY>
|
||||
<!ATTLIST %dingbat;
|
||||
%lang;
|
||||
key CDATA #REQUIRED
|
||||
text CDATA #REQUIRED
|
||||
>
|
||||
|
||||
<!ELEMENT %context; ((%template;)+)>
|
||||
<!ATTLIST %context;
|
||||
name CDATA #REQUIRED
|
||||
>
|
||||
|
||||
<!ELEMENT %template; EMPTY>
|
||||
<!ATTLIST %template;
|
||||
%lang;
|
||||
name CDATA #REQUIRED
|
||||
text CDATA #REQUIRED
|
||||
style CDATA #IMPLIED
|
||||
>
|
||||
|
||||
<!ELEMENT %letters; ((%l;)+)>
|
||||
<!ATTLIST %letters;
|
||||
%lang;
|
||||
>
|
||||
|
||||
<!ELEMENT %l; (#PCDATA)>
|
||||
<!ATTLIST %l;
|
||||
i CDATA #REQUIRED
|
||||
>
|
|
@ -1,89 +0,0 @@
|
|||
<?xml version='1.0'?>
|
||||
<!DOCTYPE l:i18n SYSTEM "l10n.dtd" [
|
||||
<!ENTITY af SYSTEM "af.xml">
|
||||
<!ENTITY bg SYSTEM "bg.xml">
|
||||
<!ENTITY bn SYSTEM "bn.xml">
|
||||
<!ENTITY ca SYSTEM "ca.xml">
|
||||
<!ENTITY cs SYSTEM "cs.xml">
|
||||
<!ENTITY da SYSTEM "da.xml">
|
||||
<!ENTITY de SYSTEM "de.xml">
|
||||
<!ENTITY el SYSTEM "el.xml">
|
||||
<!ENTITY en SYSTEM "en.xml">
|
||||
<!ENTITY es SYSTEM "es.xml">
|
||||
<!ENTITY et SYSTEM "et.xml">
|
||||
<!ENTITY eu SYSTEM "eu.xml">
|
||||
<!ENTITY fi SYSTEM "fi.xml">
|
||||
<!ENTITY fr SYSTEM "fr.xml">
|
||||
<!ENTITY he SYSTEM "he.xml">
|
||||
<!ENTITY hu SYSTEM "hu.xml">
|
||||
<!ENTITY id SYSTEM "id.xml">
|
||||
<!ENTITY it SYSTEM "it.xml">
|
||||
<!ENTITY ja SYSTEM "ja.xml">
|
||||
<!ENTITY ko SYSTEM "ko.xml">
|
||||
<!ENTITY la SYSTEM "la.xml">
|
||||
<!ENTITY lit SYSTEM "lt.xml">
|
||||
<!ENTITY nl SYSTEM "nl.xml">
|
||||
<!ENTITY nn SYSTEM "nn.xml">
|
||||
<!ENTITY no SYSTEM "no.xml">
|
||||
<!ENTITY pl SYSTEM "pl.xml">
|
||||
<!ENTITY pt SYSTEM "pt.xml">
|
||||
<!ENTITY pt_br SYSTEM "pt_br.xml">
|
||||
<!ENTITY ro SYSTEM "ro.xml">
|
||||
<!ENTITY ru SYSTEM "ru.xml">
|
||||
<!ENTITY sk SYSTEM "sk.xml">
|
||||
<!ENTITY sl SYSTEM "sl.xml">
|
||||
<!ENTITY sr SYSTEM "sr.xml">
|
||||
<!ENTITY sr_Latn SYSTEM "sr_Latn.xml">
|
||||
<!ENTITY sv SYSTEM "sv.xml">
|
||||
<!ENTITY th SYSTEM "th.xml">
|
||||
<!ENTITY tr SYSTEM "tr.xml">
|
||||
<!ENTITY uk SYSTEM "uk.xml">
|
||||
<!ENTITY vi SYSTEM "vi.xml">
|
||||
<!ENTITY xh SYSTEM "xh.xml">
|
||||
<!ENTITY zh_cn SYSTEM "zh_cn.xml">
|
||||
<!ENTITY zh_tw SYSTEM "zh_tw.xml">
|
||||
]>
|
||||
<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0">
|
||||
⁡
|
||||
&bg;
|
||||
&bn;
|
||||
&ca;
|
||||
&cs;
|
||||
&da;
|
||||
&de;
|
||||
⪙
|
||||
&en;
|
||||
&es;
|
||||
&et;
|
||||
&eu;
|
||||
&fi;
|
||||
&fr;
|
||||
&he;
|
||||
&hu;
|
||||
&id;
|
||||
⁢
|
||||
&ja;
|
||||
&ko;
|
||||
&la;
|
||||
&lit;
|
||||
&nl;
|
||||
&nn;
|
||||
&no;
|
||||
&pl;
|
||||
&pt;
|
||||
&pt_br;
|
||||
&ro;
|
||||
&ru;
|
||||
&sk;
|
||||
&sl;
|
||||
&sr;
|
||||
&sr_Latn;
|
||||
&sv;
|
||||
&th;
|
||||
&tr;
|
||||
&uk;
|
||||
&vi;
|
||||
&xh;
|
||||
&zh_cn;
|
||||
&zh_tw;
|
||||
</l:i18n>
|
|
@ -1,451 +0,0 @@
|
|||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"
|
||||
exclude-result-prefixes="l"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: l10n.xsl 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
This file contains localization templates (for internationalization)
|
||||
******************************************************************** -->
|
||||
|
||||
<xsl:param name="l10n.xml" select="document('../common/l10n.xml')"/>
|
||||
<xsl:param name="local.l10n.xml" select="document('')"/>
|
||||
|
||||
<xsl:template name="l10n.language">
|
||||
<xsl:param name="target" select="."/>
|
||||
<xsl:param name="xref-context" select="false()"/>
|
||||
|
||||
<xsl:variable name="mc-language">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$l10n.gentext.language != ''">
|
||||
<xsl:value-of select="$l10n.gentext.language"/>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:when test="$xref-context or $l10n.gentext.use.xref.language != 0">
|
||||
<!-- can't do this one step: attributes are unordered! -->
|
||||
<xsl:variable name="lang-scope"
|
||||
select="($target/ancestor-or-self::*[@lang]
|
||||
|$target/ancestor-or-self::*[@xml:lang])[last()]"/>
|
||||
<xsl:variable name="lang-attr"
|
||||
select="($lang-scope/@lang | $lang-scope/@xml:lang)[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="string($lang-attr) = ''">
|
||||
<xsl:value-of select="$l10n.gentext.default.language"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$lang-attr"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:otherwise>
|
||||
<!-- can't do this one step: attributes are unordered! -->
|
||||
<xsl:variable name="lang-scope"
|
||||
select="($target/ancestor-or-self::*[@lang]
|
||||
|$target/ancestor-or-self::*[@xml:lang])[last()]"/>
|
||||
<xsl:variable name="lang-attr"
|
||||
select="($lang-scope/@lang | $lang-scope/@xml:lang)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="string($lang-attr) = ''">
|
||||
<xsl:value-of select="$l10n.gentext.default.language"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$lang-attr"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="language" select="translate($mc-language,
|
||||
'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
|
||||
'abcdefghijklmnopqrstuvwxyz')"/>
|
||||
|
||||
<xsl:variable name="adjusted.language">
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($language,'-')">
|
||||
<xsl:value-of select="substring-before($language,'-')"/>
|
||||
<xsl:text>_</xsl:text>
|
||||
<xsl:value-of select="substring-after($language,'-')"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$language"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$l10n.xml/l:i18n/l:l10n[@language=$adjusted.language]">
|
||||
<xsl:value-of select="$adjusted.language"/>
|
||||
</xsl:when>
|
||||
<!-- try just the lang code without country -->
|
||||
<xsl:when test="$l10n.xml/l:i18n/l:l10n[@language=substring-before($adjusted.language,'_')]">
|
||||
<xsl:value-of select="substring-before($adjusted.language,'_')"/>
|
||||
</xsl:when>
|
||||
<!-- or use the default -->
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>No localization exists for "</xsl:text>
|
||||
<xsl:value-of select="$adjusted.language"/>
|
||||
<xsl:text>" or "</xsl:text>
|
||||
<xsl:value-of select="substring-before($adjusted.language,'_')"/>
|
||||
<xsl:text>". Using default "</xsl:text>
|
||||
<xsl:value-of select="$l10n.gentext.default.language"/>
|
||||
<xsl:text>".</xsl:text>
|
||||
</xsl:message>
|
||||
<xsl:value-of select="$l10n.gentext.default.language"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="language.attribute">
|
||||
<xsl:param name="node" select="."/>
|
||||
|
||||
<xsl:variable name="language">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$l10n.gentext.language != ''">
|
||||
<xsl:value-of select="$l10n.gentext.language"/>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:otherwise>
|
||||
<!-- can't do this one step: attributes are unordered! -->
|
||||
<xsl:variable name="lang-scope"
|
||||
select="($node/ancestor-or-self::*[@lang]
|
||||
|$node/ancestor-or-self::*[@xml:lang])[last()]"/>
|
||||
<xsl:variable name="lang-attr"
|
||||
select="($lang-scope/@lang | $lang-scope/@xml:lang)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="string($lang-attr) = ''">
|
||||
<xsl:value-of select="$l10n.gentext.default.language"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$lang-attr"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$language != ''">
|
||||
<xsl:attribute name="lang">
|
||||
<xsl:value-of select="$language"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext">
|
||||
<xsl:param name="key" select="local-name(.)"/>
|
||||
<xsl:param name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:param>
|
||||
|
||||
<xsl:variable name="local.l10n.gentext"
|
||||
select="($local.l10n.xml//l:i18n/l:l10n[@language=$lang]/l:gentext[@key=$key])[1]"/>
|
||||
|
||||
<xsl:variable name="l10n.gentext"
|
||||
select="($l10n.xml/l:i18n/l:l10n[@language=$lang]/l:gentext[@key=$key])[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($local.l10n.gentext) > 0">
|
||||
<xsl:value-of select="$local.l10n.gentext/@text"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="count($l10n.gentext) > 0">
|
||||
<xsl:value-of select="$l10n.gentext/@text"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>No "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization of "</xsl:text>
|
||||
<xsl:value-of select="$key"/>
|
||||
<xsl:text>" exists</xsl:text>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$lang = 'en'">
|
||||
<xsl:text>.</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:text>; using "en".</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:message>
|
||||
|
||||
<xsl:value-of select="($l10n.xml/l:i18n/l:l10n[@language='en']/l:gentext[@key=$key])[1]/@text"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.element.name">
|
||||
<xsl:param name="element.name" select="name(.)"/>
|
||||
<xsl:param name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:param>
|
||||
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="$element.name"/>
|
||||
<xsl:with-param name="lang" select="$lang"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.space">
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.edited.by">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Editedby'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.by">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'by'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.dingbat">
|
||||
<xsl:param name="dingbat">bullet</xsl:param>
|
||||
<xsl:param name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:param>
|
||||
|
||||
<xsl:variable name="local.l10n.dingbat"
|
||||
select="($local.l10n.xml//l:i18n/l:l10n[@language=$lang]/l:dingbat[@key=$dingbat])[1]"/>
|
||||
|
||||
<xsl:variable name="l10n.dingbat"
|
||||
select="($l10n.xml/l:i18n/l:l10n[@language=$lang]/l:dingbat[@key=$dingbat])[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($local.l10n.dingbat) > 0">
|
||||
<xsl:value-of select="$local.l10n.dingbat/@text"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="count($l10n.dingbat) > 0">
|
||||
<xsl:value-of select="$l10n.dingbat/@text"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>No "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization of dingbat </xsl:text>
|
||||
<xsl:value-of select="$dingbat"/>
|
||||
<xsl:text> exists; using "en".</xsl:text>
|
||||
</xsl:message>
|
||||
|
||||
<xsl:value-of select="($l10n.xml/l:i18n/l:l10n[@language='en']/l:dingbat[@key=$dingbat])[1]/@text"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.startquote">
|
||||
<xsl:call-template name="gentext.dingbat">
|
||||
<xsl:with-param name="dingbat">startquote</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.endquote">
|
||||
<xsl:call-template name="gentext.dingbat">
|
||||
<xsl:with-param name="dingbat">endquote</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.nestedstartquote">
|
||||
<xsl:call-template name="gentext.dingbat">
|
||||
<xsl:with-param name="dingbat">nestedstartquote</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.nestedendquote">
|
||||
<xsl:call-template name="gentext.dingbat">
|
||||
<xsl:with-param name="dingbat">nestedendquote</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.nav.prev">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'nav-prev'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.nav.next">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'nav-next'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.nav.home">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'nav-home'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.nav.up">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'nav-up'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template name="gentext.template">
|
||||
<xsl:param name="context" select="'default'"/>
|
||||
<xsl:param name="name" select="'default'"/>
|
||||
<xsl:param name="origname" select="$name"/>
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="xrefstyle"/>
|
||||
<xsl:param name="referrer"/>
|
||||
<xsl:param name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:param>
|
||||
|
||||
<xsl:variable name="local.localization.node"
|
||||
select="($local.l10n.xml//l:i18n/l:l10n[@language=$lang])[1]"/>
|
||||
|
||||
<xsl:variable name="localization.node"
|
||||
select="($l10n.xml/l:i18n/l:l10n[@language=$lang])[1]"/>
|
||||
|
||||
<xsl:if test="count($localization.node) = 0
|
||||
and count($local.localization.node) = 0">
|
||||
<xsl:message>
|
||||
<xsl:text>No "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization exists.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:variable name="local.context.node"
|
||||
select="$local.localization.node/l:context[@name=$context]"/>
|
||||
|
||||
<xsl:variable name="context.node"
|
||||
select="$localization.node/l:context[@name=$context]"/>
|
||||
|
||||
<xsl:if test="count($context.node) = 0
|
||||
and count($local.context.node) = 0">
|
||||
<xsl:message>
|
||||
<xsl:text>No context named "</xsl:text>
|
||||
<xsl:value-of select="$context"/>
|
||||
<xsl:text>" exists in the "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:variable name="local.template.node"
|
||||
select="($local.context.node/l:template[@name=$name
|
||||
and @style
|
||||
and @style=$xrefstyle]
|
||||
|$local.context.node/l:template[@name=$name
|
||||
and not(@style)])[1]"/>
|
||||
|
||||
<xsl:variable name="template.node"
|
||||
select="($context.node/l:template[@name=$name
|
||||
and @style
|
||||
and @style=$xrefstyle]
|
||||
|$context.node/l:template[@name=$name
|
||||
and not(@style)])[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$local.template.node/@text">
|
||||
<xsl:value-of select="$local.template.node/@text"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$template.node/@text">
|
||||
<xsl:value-of select="$template.node/@text"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($name, '/')">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="$context"/>
|
||||
<xsl:with-param name="name" select="substring-after($name, '/')"/>
|
||||
<xsl:with-param name="origname" select="$origname"/>
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
<xsl:with-param name="lang" select="$lang"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>No template for "</xsl:text>
|
||||
<xsl:value-of select="$origname"/>
|
||||
<xsl:text>" (or any of its leaves) exists
|
||||
in the context named "</xsl:text>
|
||||
<xsl:value-of select="$context"/>
|
||||
<xsl:text>" in the "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.template.exists">
|
||||
<xsl:param name="context" select="'default'"/>
|
||||
<xsl:param name="name" select="'default'"/>
|
||||
<xsl:param name="origname" select="$name"/>
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="xrefstyle"/>
|
||||
<xsl:param name="referrer"/>
|
||||
<xsl:param name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:param>
|
||||
|
||||
<xsl:variable name="local.localization.node"
|
||||
select="($local.l10n.xml//l:i18n/l:l10n[@language=$lang])[1]"/>
|
||||
|
||||
<xsl:variable name="localization.node"
|
||||
select="($l10n.xml/l:i18n/l:l10n[@language=$lang])[1]"/>
|
||||
|
||||
<xsl:variable name="local.context.node"
|
||||
select="$local.localization.node/l:context[@name=$context]"/>
|
||||
|
||||
<xsl:variable name="context.node"
|
||||
select="$localization.node/l:context[@name=$context]"/>
|
||||
|
||||
<xsl:variable name="local.template.node"
|
||||
select="($local.context.node/l:template[@name=$name
|
||||
and @style
|
||||
and @style=$xrefstyle]
|
||||
|$local.context.node/l:template[@name=$name
|
||||
and not(@style)])[1]"/>
|
||||
|
||||
<xsl:variable name="template.node"
|
||||
select="($context.node/l:template[@name=$name
|
||||
and @style
|
||||
and @style=$xrefstyle]
|
||||
|$context.node/l:template[@name=$name
|
||||
and not(@style)])[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$local.template.node/@text">1</xsl:when>
|
||||
<xsl:when test="$template.node/@text">1</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($name, '/')">
|
||||
<xsl:call-template name="gentext.template.exists">
|
||||
<xsl:with-param name="context" select="$context"/>
|
||||
<xsl:with-param name="name" select="substring-after($name, '/')"/>
|
||||
<xsl:with-param name="origname" select="$origname"/>
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
<xsl:with-param name="lang" select="$lang"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>0</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
|
File diff suppressed because it is too large
Load Diff
|
@ -1,618 +0,0 @@
|
|||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
exclude-result-prefixes="doc"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: labels.xsl 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!-- label markup -->
|
||||
|
||||
<doc:mode mode="label.markup" xmlns="">
|
||||
<refpurpose>Provides access to element labels</refpurpose>
|
||||
<refdescription>
|
||||
<para>Processing an element in the
|
||||
<literal role="mode">label.markup</literal> mode produces the
|
||||
element label.</para>
|
||||
<para>Trailing punctuation is not added to the label.
|
||||
</para>
|
||||
</refdescription>
|
||||
</doc:mode>
|
||||
|
||||
<xsl:template match="*" mode="intralabel.punctuation">
|
||||
<xsl:text>.</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="*" mode="label.markup">
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
<xsl:if test="$verbose">
|
||||
<xsl:message>
|
||||
<xsl:text>Request for label of unexpected element: </xsl:text>
|
||||
<xsl:value-of select="name(.)"/>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="set|book" mode="label.markup">
|
||||
<xsl:if test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="part" mode="label.markup">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$part.autolabel != 0">
|
||||
<xsl:number from="book" count="part" format="I"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="partintro" mode="label.markup">
|
||||
<!-- no label -->
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="preface" mode="label.markup">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$preface.autolabel != 0">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$label.from.part != 0 and ancestor::part">
|
||||
<xsl:number from="part" count="preface" format="1" level="any"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number from="book" count="preface" format="1" level="any"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="chapter" mode="label.markup">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$chapter.autolabel != 0">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$label.from.part != 0 and ancestor::part">
|
||||
<xsl:number from="part" count="chapter" format="1" level="any"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number from="book" count="chapter" format="1" level="any"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="appendix" mode="label.markup">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$appendix.autolabel != 0">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$label.from.part != 0 and ancestor::part">
|
||||
<xsl:number from="part" count="appendix" format="A" level="any"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number from="book|article"
|
||||
count="appendix" format="A" level="any"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="article" mode="label.markup">
|
||||
<xsl:if test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="dedication|colophon" mode="label.markup">
|
||||
<xsl:if test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="reference" mode="label.markup">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$part.autolabel != 0">
|
||||
<xsl:number from="book" count="reference" format="I" level="any"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refentry" mode="label.markup">
|
||||
<xsl:if test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section" mode="label.markup">
|
||||
<!-- if this is a nested section, label the parent -->
|
||||
<xsl:if test="local-name(..) = 'section'">
|
||||
<xsl:variable name="parent.section.label">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.section.label != ''">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
|
||||
<!-- if the parent is a component, maybe label that too -->
|
||||
<xsl:variable name="parent.is.component">
|
||||
<xsl:call-template name="is.component">
|
||||
<xsl:with-param name="node" select=".."/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<!-- does this section get labelled? -->
|
||||
<xsl:variable name="label">
|
||||
<xsl:call-template name="label.this.section">
|
||||
<xsl:with-param name="section" select="."/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$section.label.includes.component.label != 0
|
||||
and $parent.is.component != 0">
|
||||
<xsl:variable name="parent.label">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.label != ''">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
|
||||
<!--
|
||||
<xsl:message>
|
||||
<xsl:value-of select="$label"/>, <xsl:number count="section"/>
|
||||
</xsl:message>
|
||||
-->
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$label != 0">
|
||||
<xsl:number count="section"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sect1" mode="label.markup">
|
||||
<!-- if the parent is a component, maybe label that too -->
|
||||
<xsl:variable name="parent.is.component">
|
||||
<xsl:call-template name="is.component">
|
||||
<xsl:with-param name="node" select=".."/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$section.label.includes.component.label != 0
|
||||
and $parent.is.component != 0">
|
||||
<xsl:variable name="parent.label">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.label != ''">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$section.autolabel != 0">
|
||||
<xsl:number count="sect1"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sect2|sect3|sect4|sect5" mode="label.markup">
|
||||
<!-- label the parent -->
|
||||
<xsl:variable name="parent.label">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.label != ''">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$section.autolabel != 0">
|
||||
<xsl:choose>
|
||||
<xsl:when test="local-name(.) = 'sect2'">
|
||||
<xsl:number count="sect2"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="local-name(.) = 'sect3'">
|
||||
<xsl:number count="sect3"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="local-name(.) = 'sect4'">
|
||||
<xsl:number count="sect4"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="local-name(.) = 'sect5'">
|
||||
<xsl:number count="sect5"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>label.markup: this can't happen!</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="bridgehead" mode="label.markup">
|
||||
<!-- FIXME: could we do a better job here? -->
|
||||
<xsl:variable name="contsec"
|
||||
select="(ancestor::section
|
||||
|ancestor::simplesect
|
||||
|ancestor::sect1
|
||||
|ancestor::sect2
|
||||
|ancestor::sect3
|
||||
|ancestor::sect4
|
||||
|ancestor::sect5
|
||||
|ancestor::refsect1
|
||||
|ancestor::refsect2
|
||||
|ancestor::refsect3
|
||||
|ancestor::chapter
|
||||
|ancestor::appendix
|
||||
|ancestor::preface)[last()]"/>
|
||||
|
||||
<xsl:apply-templates select="$contsec" mode="label.markup"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refsect1" mode="label.markup">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$section.autolabel != 0">
|
||||
<xsl:number count="refsect1"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refsect2|refsect3" mode="label.markup">
|
||||
<!-- label the parent -->
|
||||
<xsl:variable name="parent.label">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.label != ''">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$section.autolabel != 0">
|
||||
<xsl:choose>
|
||||
<xsl:when test="local-name(.) = 'refsect2'">
|
||||
<xsl:number count="refsect2"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number count="refsect3"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="simplesect" mode="label.markup">
|
||||
<!-- if this is a nested section, label the parent -->
|
||||
<xsl:if test="local-name(..) = 'section'
|
||||
or local-name(..) = 'sect1'
|
||||
or local-name(..) = 'sect2'
|
||||
or local-name(..) = 'sect3'
|
||||
or local-name(..) = 'sect4'
|
||||
or local-name(..) = 'sect5'">
|
||||
<xsl:variable name="parent.section.label">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.section.label != ''">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
|
||||
<!-- if the parent is a component, maybe label that too -->
|
||||
<xsl:variable name="parent.is.component">
|
||||
<xsl:call-template name="is.component">
|
||||
<xsl:with-param name="node" select=".."/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<!-- does this section get labelled? -->
|
||||
<xsl:variable name="label">
|
||||
<xsl:call-template name="label.this.section">
|
||||
<xsl:with-param name="section" select="."/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$section.label.includes.component.label != 0
|
||||
and $parent.is.component != 0">
|
||||
<xsl:variable name="parent.label">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.label != ''">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$label != 0">
|
||||
<xsl:number count="simplesect"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="qandadiv" mode="label.markup">
|
||||
<xsl:variable name="lparent" select="(ancestor::set
|
||||
|ancestor::book
|
||||
|ancestor::chapter
|
||||
|ancestor::appendix
|
||||
|ancestor::preface
|
||||
|ancestor::section
|
||||
|ancestor::simplesect
|
||||
|ancestor::sect1
|
||||
|ancestor::sect2
|
||||
|ancestor::sect3
|
||||
|ancestor::sect4
|
||||
|ancestor::sect5
|
||||
|ancestor::refsect1
|
||||
|ancestor::refsect2
|
||||
|ancestor::refsect3)[last()]"/>
|
||||
|
||||
<xsl:variable name="lparent.prefix">
|
||||
<xsl:apply-templates select="$lparent" mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="prefix">
|
||||
<xsl:if test="$qanda.inherit.numeration != 0">
|
||||
<xsl:if test="$lparent.prefix != ''">
|
||||
<xsl:apply-templates select="$lparent" mode="label.markup"/>
|
||||
<xsl:apply-templates select="$lparent" mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$qandadiv.autolabel != 0">
|
||||
<xsl:value-of select="$prefix"/>
|
||||
<xsl:number level="multiple" count="qandadiv" format="1"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="question|answer" mode="label.markup">
|
||||
<xsl:variable name="lparent" select="(ancestor::set
|
||||
|ancestor::book
|
||||
|ancestor::chapter
|
||||
|ancestor::appendix
|
||||
|ancestor::preface
|
||||
|ancestor::section
|
||||
|ancestor::simplesect
|
||||
|ancestor::sect1
|
||||
|ancestor::sect2
|
||||
|ancestor::sect3
|
||||
|ancestor::sect4
|
||||
|ancestor::sect5
|
||||
|ancestor::refsect1
|
||||
|ancestor::refsect2
|
||||
|ancestor::refsect3)[last()]"/>
|
||||
|
||||
<xsl:variable name="lparent.prefix">
|
||||
<xsl:apply-templates select="$lparent" mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="prefix">
|
||||
<xsl:if test="$qanda.inherit.numeration != 0">
|
||||
<xsl:if test="$lparent.prefix != ''">
|
||||
<xsl:apply-templates select="$lparent" mode="label.markup"/>
|
||||
<xsl:apply-templates select="$lparent" mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="ancestor::qandadiv">
|
||||
<xsl:apply-templates select="ancestor::qandadiv[1]" mode="label.markup"/>
|
||||
<xsl:apply-templates select="ancestor::qandadiv[1]"
|
||||
mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="inhlabel"
|
||||
select="ancestor-or-self::qandaset/@defaultlabel[1]"/>
|
||||
|
||||
<xsl:variable name="deflabel">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$inhlabel != ''">
|
||||
<xsl:value-of select="$inhlabel"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$qanda.defaultlabel"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="label" select="label"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($label)>0">
|
||||
<xsl:apply-templates select="$label"/>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:when test="$deflabel = 'qanda' and local-name(.) = 'question'">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Question'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:when test="$deflabel = 'qanda' and local-name(.) = 'answer'">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Answer'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:when test="$deflabel = 'number' and local-name(.) = 'question'">
|
||||
<xsl:value-of select="$prefix"/>
|
||||
<xsl:number level="multiple" count="qandaentry" format="1"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="bibliography|glossary|index|setindex" mode="label.markup">
|
||||
<xsl:if test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="figure|table|example|procedure" mode="label.markup">
|
||||
<xsl:variable name="pchap"
|
||||
select="ancestor::chapter
|
||||
|ancestor::appendix
|
||||
|ancestor::article[ancestor::book]"/>
|
||||
|
||||
<xsl:variable name="prefix">
|
||||
<xsl:if test="count($pchap) > 0">
|
||||
<xsl:apply-templates select="$pchap" mode="label.markup"/>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="local-name() = 'procedure' and
|
||||
$formal.procedures = 0">
|
||||
<!-- No label -->
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($pchap)>0">
|
||||
<xsl:if test="$prefix != ''">
|
||||
<xsl:apply-templates select="$pchap" mode="label.markup"/>
|
||||
<xsl:apply-templates select="$pchap" mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
<xsl:number format="1" from="chapter|appendix" level="any"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number format="1" from="book|article" level="any"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="equation" mode="label.markup">
|
||||
<xsl:variable name="pchap"
|
||||
select="ancestor::chapter
|
||||
|ancestor::appendix
|
||||
|ancestor::article[ancestor::book]"/>
|
||||
|
||||
<xsl:variable name="prefix">
|
||||
<xsl:if test="count($pchap) > 0">
|
||||
<xsl:apply-templates select="$pchap" mode="label.markup"/>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($pchap)>0">
|
||||
<xsl:if test="$prefix != ''">
|
||||
<xsl:apply-templates select="$pchap" mode="label.markup"/>
|
||||
<xsl:apply-templates select="$pchap" mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
<xsl:number format="1" count="equation[title]" from="chapter|appendix" level="any"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number format="1" count="equation[title]" from="book|article" level="any"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="orderedlist/listitem" mode="label.markup">
|
||||
<xsl:variable name="numeration">
|
||||
<xsl:call-template name="list.numeration">
|
||||
<xsl:with-param name="node" select="parent::orderedlist"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="type">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$numeration='arabic'">1</xsl:when>
|
||||
<xsl:when test="$numeration='loweralpha'">a</xsl:when>
|
||||
<xsl:when test="$numeration='lowerroman'">i</xsl:when>
|
||||
<xsl:when test="$numeration='upperalpha'">A</xsl:when>
|
||||
<xsl:when test="$numeration='upperroman'">I</xsl:when>
|
||||
<!-- What!? This should never happen -->
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>Unexpected numeration: </xsl:text>
|
||||
<xsl:value-of select="$numeration"/>
|
||||
</xsl:message>
|
||||
<xsl:value-of select="1."/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:number count="listitem" format="{$type}"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="abstract" mode="label.markup">
|
||||
<!-- nop -->
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template name="label.this.section">
|
||||
<xsl:param name="section" select="."/>
|
||||
<xsl:value-of select="$section.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<doc:template name="label.this.section" xmlns="">
|
||||
<refpurpose>Returns true if $section should be labelled</refpurpose>
|
||||
<refdescription>
|
||||
<para>Returns true if the specified section should be labelled.
|
||||
By default, this template simply returns $section.autolabel, but
|
||||
custom stylesheets may override it to get more selective behavior.</para>
|
||||
</refdescription>
|
||||
</doc:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
</xsl:stylesheet>
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,177 +0,0 @@
|
|||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
xmlns:date="http://exslt.org/dates-and-times"
|
||||
exclude-result-prefixes="doc date"
|
||||
extension-element-prefixes="date"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: pi.xsl 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
This file contains general templates for processing processing
|
||||
instructions common to both the HTML and FO versions of the
|
||||
DocBook stylesheets.
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- Process PIs also on title pages -->
|
||||
<xsl:template match="processing-instruction()" mode="titlepage.mode">
|
||||
<xsl:apply-templates select="."/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="processing-instruction('dbtimestamp')">
|
||||
<xsl:variable name="format">
|
||||
<xsl:variable name="pi-format">
|
||||
<xsl:call-template name="pi-attribute">
|
||||
<xsl:with-param name="pis" select="."/>
|
||||
<xsl:with-param name="attribute">format</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$pi-format != ''">
|
||||
<xsl:value-of select="$pi-format"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'datetime'"/>
|
||||
<xsl:with-param name="name" select="'format'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="padding">
|
||||
<xsl:variable name="pi-padding">
|
||||
<xsl:call-template name="pi-attribute">
|
||||
<xsl:with-param name="pis" select="."/>
|
||||
<xsl:with-param name="attribute">padding</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$pi-padding != ''">
|
||||
<xsl:value-of select="$pi-padding"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>1</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="date">
|
||||
<xsl:if test="function-available('date:date-time')">
|
||||
<xsl:value-of select="date:date-time()"/>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="function-available('date:date-time')">
|
||||
<xsl:call-template name="datetime.format">
|
||||
<xsl:with-param name="date" select="$date"/>
|
||||
<xsl:with-param name="format" select="$format"/>
|
||||
<xsl:with-param name="padding" select="$padding"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
Timestamp processing requires XSLT processor with EXSLT date support.
|
||||
</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="datetime.format">
|
||||
<xsl:param name="date"/>
|
||||
<xsl:param name="format"/>
|
||||
<xsl:param name="padding" select="1"/>
|
||||
|
||||
<xsl:if test="$format != ''">
|
||||
<xsl:variable name="char" select="substring($format,1,1)"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$char = 'a'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'datetime-abbrev'"/>
|
||||
<xsl:with-param name="name" select="date:day-abbreviation($date)"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'A'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'datetime-full'"/>
|
||||
<xsl:with-param name="name" select="date:day-name($date)"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'b'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'datetime-abbrev'"/>
|
||||
<xsl:with-param name="name" select="date:month-abbreviation($date)"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'c'">
|
||||
<xsl:value-of select="date:date($date)"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:value-of select="date:time($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'B'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'datetime-full'"/>
|
||||
<xsl:with-param name="name" select="date:month-name($date)"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'd'">
|
||||
<xsl:if test="$padding = 1 and string-length(date:day-in-month($date)) = 1">0</xsl:if>
|
||||
<xsl:value-of select="date:day-in-month($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'H'">
|
||||
<xsl:if test="$padding = 1 and string-length(date:hour-in-day($date)) = 1">0</xsl:if>
|
||||
<xsl:value-of select="date:hour-in-day($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'j'">
|
||||
<xsl:value-of select="date:day-in-year($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'm'">
|
||||
<xsl:if test="$padding = 1 and string-length(date:month-in-year($date)) = 1">0</xsl:if>
|
||||
<xsl:value-of select="date:month-in-year($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'M'">
|
||||
<xsl:if test="string-length(date:minute-in-hour($date)) = 1">0</xsl:if>
|
||||
<xsl:value-of select="date:minute-in-hour($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'S'">
|
||||
<xsl:if test="string-length(date:second-in-minute($date)) = 1">0</xsl:if>
|
||||
<xsl:value-of select="date:second-in-minute($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'U'">
|
||||
<xsl:value-of select="date:week-in-year($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'w'">
|
||||
<xsl:value-of select="date:day-in-week($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'x'">
|
||||
<xsl:value-of select="date:date($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'X'">
|
||||
<xsl:value-of select="date:time($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$char = 'Y'">
|
||||
<xsl:value-of select="date:year($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$char"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
<!-- Process rest of format specifier -->
|
||||
<xsl:call-template name="datetime.format">
|
||||
<xsl:with-param name="date" select="$date"/>
|
||||
<xsl:with-param name="format" select="substring($format,2)"/>
|
||||
<xsl:with-param name="padding" select="$padding"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,147 +0,0 @@
|
|||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
exclude-result-prefixes="doc"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: subtitles.xsl 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!-- subtitle markup -->
|
||||
|
||||
<doc:mode mode="subtitle.markup" xmlns="">
|
||||
<refpurpose>Provides access to element subtitles</refpurpose>
|
||||
<refdescription>
|
||||
<para>Processing an element in the
|
||||
<literal role="mode">subtitle.markup</literal> mode produces the
|
||||
subtitle of the element.
|
||||
</para>
|
||||
</refdescription>
|
||||
</doc:mode>
|
||||
|
||||
<xsl:template match="*" mode="subtitle.markup">
|
||||
<xsl:message>
|
||||
<xsl:text>Request for subtitle of unexpected element: </xsl:text>
|
||||
<xsl:value-of select="name(.)"/>
|
||||
</xsl:message>
|
||||
<xsl:text>???SUBTITLE???</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="subtitle" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="set" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(setinfo/subtitle|info/subtitle|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="book" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(bookinfo/subtitle|info/subtitle|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="part" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(partinfo/subtitle
|
||||
|docinfo/subtitle
|
||||
|info/subtitle
|
||||
|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="preface|chapter|appendix" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(docinfo/subtitle
|
||||
|info/subtitle
|
||||
|prefaceinfo/subtitle
|
||||
|chapterinfo/subtitle
|
||||
|appendixinfo/subtitle
|
||||
|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="article" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(artheader/subtitle
|
||||
|articleinfo/subtitle
|
||||
|info/subtitle
|
||||
|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="dedication|colophon" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="subtitle"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="reference" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(referenceinfo/subtitle
|
||||
|docinfo/subtitle
|
||||
|info/subtitle
|
||||
|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refentry" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(refentryinfo/subtitle
|
||||
|info/subtitle
|
||||
|docinfo/subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section
|
||||
|sect1|sect2|sect3|sect4|sect5
|
||||
|refsect1|refsect2|refsect3
|
||||
|simplesect"
|
||||
mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(info/subtitle
|
||||
|sectioninfo/subtitle
|
||||
|sect1info/subtitle
|
||||
|sect2info/subtitle
|
||||
|sect3info/subtitle
|
||||
|sect4info/subtitle
|
||||
|sect5info/subtitle
|
||||
|refsect1info/subtitle
|
||||
|refsect2info/subtitle
|
||||
|refsect3info/subtitle
|
||||
|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
|
File diff suppressed because it is too large
Load Diff
|
@ -1,441 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
exclude-result-prefixes="doc"
|
||||
version="1.0">
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: table.xsl 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template name="blank.spans">
|
||||
<xsl:param name="cols" select="1"/>
|
||||
<xsl:if test="$cols > 0">
|
||||
<xsl:text>0:</xsl:text>
|
||||
<xsl:call-template name="blank.spans">
|
||||
<xsl:with-param name="cols" select="$cols - 1"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="calculate.following.spans">
|
||||
<xsl:param name="colspan" select="1"/>
|
||||
<xsl:param name="spans" select="''"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$colspan > 0">
|
||||
<xsl:call-template name="calculate.following.spans">
|
||||
<xsl:with-param name="colspan" select="$colspan - 1"/>
|
||||
<xsl:with-param name="spans" select="substring-after($spans,':')"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$spans"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="finaltd">
|
||||
<xsl:param name="spans"/>
|
||||
<xsl:param name="col" select="0"/>
|
||||
|
||||
<xsl:if test="$spans != ''">
|
||||
<xsl:choose>
|
||||
<xsl:when test="starts-with($spans,'0:')">
|
||||
<xsl:call-template name="empty.table.cell">
|
||||
<xsl:with-param name="colnum" select="$col"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
<xsl:call-template name="finaltd">
|
||||
<xsl:with-param name="spans" select="substring-after($spans,':')"/>
|
||||
<xsl:with-param name="col" select="$col+1"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="sfinaltd">
|
||||
<xsl:param name="spans"/>
|
||||
|
||||
<xsl:if test="$spans != ''">
|
||||
<xsl:choose>
|
||||
<xsl:when test="starts-with($spans,'0:')">0:</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="substring-before($spans,':')-1"/>
|
||||
<xsl:text>:</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
<xsl:call-template name="sfinaltd">
|
||||
<xsl:with-param name="spans" select="substring-after($spans,':')"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="entry.colnum">
|
||||
<xsl:param name="entry" select="."/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$entry/@spanname">
|
||||
<xsl:variable name="spanname" select="$entry/@spanname"/>
|
||||
<xsl:variable name="spanspec"
|
||||
select="$entry/ancestor::tgroup/spanspec[@spanname=$spanname]"/>
|
||||
<xsl:variable name="colspec"
|
||||
select="$entry/ancestor::tgroup/colspec[@colname=$spanspec/@namest]"/>
|
||||
<xsl:call-template name="colspec.colnum">
|
||||
<xsl:with-param name="colspec" select="$colspec"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$entry/@colname">
|
||||
<xsl:variable name="colname" select="$entry/@colname"/>
|
||||
<xsl:variable name="colspec"
|
||||
select="$entry/ancestor::tgroup/colspec[@colname=$colname]"/>
|
||||
<xsl:call-template name="colspec.colnum">
|
||||
<xsl:with-param name="colspec" select="$colspec"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$entry/@namest">
|
||||
<xsl:variable name="namest" select="$entry/@namest"/>
|
||||
<xsl:variable name="colspec"
|
||||
select="$entry/ancestor::tgroup/colspec[@colname=$namest]"/>
|
||||
<xsl:call-template name="colspec.colnum">
|
||||
<xsl:with-param name="colspec" select="$colspec"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<!-- no idea, return 0 -->
|
||||
<xsl:otherwise>0</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<doc:template name="entry.colnum" xmlns="">
|
||||
<refpurpose>Determine the column number in which a given entry occurs</refpurpose>
|
||||
<refdescription>
|
||||
<para>If an <sgmltag>entry</sgmltag> has a
|
||||
<sgmltag class="attribute">colname</sgmltag> or
|
||||
<sgmltag class="attribute">namest</sgmltag> attribute, this template
|
||||
will determine the number of the column in which the entry should occur.
|
||||
For other <sgmltag>entry</sgmltag>s, nothing is returned.</para>
|
||||
</refdescription>
|
||||
<refparameter>
|
||||
<variablelist>
|
||||
<varlistentry><term>entry</term>
|
||||
<listitem>
|
||||
<para>The <sgmltag>entry</sgmltag>-element which is to be tested.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refparameter>
|
||||
|
||||
<refreturn>
|
||||
<para>This template returns the column number if it can be determined,
|
||||
or 0 (the empty string)</para>
|
||||
</refreturn>
|
||||
</doc:template>
|
||||
|
||||
<xsl:template name="colspec.colnum">
|
||||
<xsl:param name="colspec" select="."/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$colspec/@colnum">
|
||||
<xsl:value-of select="$colspec/@colnum"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$colspec/preceding-sibling::colspec">
|
||||
<xsl:variable name="prec.colspec.colnum">
|
||||
<xsl:call-template name="colspec.colnum">
|
||||
<xsl:with-param name="colspec"
|
||||
select="$colspec/preceding-sibling::colspec[1]"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:value-of select="$prec.colspec.colnum + 1"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>1</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="calculate.colspan">
|
||||
<xsl:param name="entry" select="."/>
|
||||
<xsl:variable name="spanname" select="$entry/@spanname"/>
|
||||
<xsl:variable name="spanspec"
|
||||
select="$entry/ancestor::tgroup/spanspec[@spanname=$spanname]"/>
|
||||
|
||||
<xsl:variable name="namest">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@spanname">
|
||||
<xsl:value-of select="$spanspec/@namest"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$entry/@namest"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="nameend">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@spanname">
|
||||
<xsl:value-of select="$spanspec/@nameend"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$entry/@nameend"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="scol">
|
||||
<xsl:call-template name="colspec.colnum">
|
||||
<xsl:with-param name="colspec"
|
||||
select="$entry/ancestor::tgroup/colspec[@colname=$namest]"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="ecol">
|
||||
<xsl:call-template name="colspec.colnum">
|
||||
<xsl:with-param name="colspec"
|
||||
select="$entry/ancestor::tgroup/colspec[@colname=$nameend]"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$namest != '' and $nameend != ''">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$ecol >= $scol">
|
||||
<xsl:value-of select="$ecol - $scol + 1"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$scol - $ecol + 1"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>1</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="calculate.rowsep">
|
||||
<xsl:param name="entry" select="."/>
|
||||
<xsl:param name="colnum" select="0"/>
|
||||
|
||||
<xsl:call-template name="inherited.table.attribute">
|
||||
<xsl:with-param name="entry" select="$entry"/>
|
||||
<xsl:with-param name="colnum" select="$colnum"/>
|
||||
<xsl:with-param name="attribute" select="'rowsep'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="calculate.colsep">
|
||||
<xsl:param name="entry" select="."/>
|
||||
<xsl:param name="colnum" select="0"/>
|
||||
|
||||
<xsl:call-template name="inherited.table.attribute">
|
||||
<xsl:with-param name="entry" select="$entry"/>
|
||||
<xsl:with-param name="colnum" select="$colnum"/>
|
||||
<xsl:with-param name="attribute" select="'colsep'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="inherited.table.attribute">
|
||||
<xsl:param name="entry" select="."/>
|
||||
<xsl:param name="row" select="$entry/ancestor-or-self::row[1]"/>
|
||||
<xsl:param name="colnum" select="0"/>
|
||||
<xsl:param name="attribute" select="'colsep'"/>
|
||||
|
||||
<xsl:variable name="tgroup" select="$row/ancestor::tgroup[1]"/>
|
||||
|
||||
<xsl:variable name="entry.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$entry"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="row.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$row"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="span.value">
|
||||
<xsl:if test="$entry/@spanname">
|
||||
<xsl:variable name="spanname" select="$entry/@spanname"/>
|
||||
<xsl:variable name="spanspec"
|
||||
select="$tgroup/spanspec[@spanname=$spanname]"/>
|
||||
<xsl:variable name="span.colspec"
|
||||
select="$tgroup/colspec[@colname=$spanspec/@namest]"/>
|
||||
|
||||
<xsl:variable name="spanspec.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$spanspec"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="scolspec.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$span.colspec"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$spanspec.value != ''">
|
||||
<xsl:value-of select="$spanspec.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$scolspec.value != ''">
|
||||
<xsl:value-of select="$scolspec.value"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="namest.value">
|
||||
<xsl:if test="$entry/@namest">
|
||||
<xsl:variable name="namest" select="$entry/@namest"/>
|
||||
<xsl:variable name="colspec"
|
||||
select="$tgroup/colspec[@colname=$namest]"/>
|
||||
|
||||
<xsl:variable name="inner.namest.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$colspec"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$inner.namest.value">
|
||||
<xsl:value-of select="$inner.namest.value"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="tgroup.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$tgroup"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="default.value">
|
||||
<!-- This section used to say that rowsep and colsep have defaults based -->
|
||||
<!-- on the frame setting. Further reflection and closer examination of the -->
|
||||
<!-- CALS spec reveals I was mistaken. The default is "1" for rowsep and colsep. -->
|
||||
<!-- For everything else, the default is the tgroup value -->
|
||||
<xsl:choose>
|
||||
<xsl:when test="$tgroup.value != ''">
|
||||
<xsl:value-of select="$tgroup.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$attribute = 'rowsep'">1</xsl:when>
|
||||
<xsl:when test="$attribute = 'colsep'">1</xsl:when>
|
||||
<xsl:otherwise><!-- empty --></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$entry.value != ''">
|
||||
<xsl:value-of select="$entry.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$row.value != ''">
|
||||
<xsl:value-of select="$row.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$span.value != ''">
|
||||
<xsl:value-of select="$span.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$namest.value != ''">
|
||||
<xsl:value-of select="$namest.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$colnum > 0">
|
||||
<xsl:variable name="calc.colvalue">
|
||||
<xsl:call-template name="colnum.colspec">
|
||||
<xsl:with-param name="colnum" select="$colnum"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$calc.colvalue != ''">
|
||||
<xsl:value-of select="$calc.colvalue"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$default.value"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$default.value"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="colnum.colspec">
|
||||
<xsl:param name="colnum" select="0"/>
|
||||
<xsl:param name="attribute" select="'colname'"/>
|
||||
<xsl:param name="colspecs" select="ancestor::tgroup/colspec"/>
|
||||
<xsl:param name="count" select="1"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="not($colspecs) or $count > $colnum">
|
||||
<!-- nop -->
|
||||
</xsl:when>
|
||||
<xsl:when test="$colspecs[1]/@colnum">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$colspecs[1]/@colnum = $colnum">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$colspecs[1]"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="colnum.colspec">
|
||||
<xsl:with-param name="colnum" select="$colnum"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
<xsl:with-param name="colspecs"
|
||||
select="$colspecs[position()>1]"/>
|
||||
<xsl:with-param name="count"
|
||||
select="$colspecs[1]/@colnum+1"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$count = $colnum">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$colspecs[1]"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="colnum.colspec">
|
||||
<xsl:with-param name="colnum" select="$colnum"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
<xsl:with-param name="colspecs"
|
||||
select="$colspecs[position()>1]"/>
|
||||
<xsl:with-param name="count" select="$count+1"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="get-attribute">
|
||||
<xsl:param name="element" select="."/>
|
||||
<xsl:param name="attribute" select="''"/>
|
||||
|
||||
<xsl:for-each select="$element/@*">
|
||||
<xsl:if test="local-name(.) = $attribute">
|
||||
<xsl:value-of select="."/>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
|
@ -1,47 +0,0 @@
|
|||
<!-- targetdatabase.dtd -->
|
||||
<!-- A DTD for managing cross reference target information -->
|
||||
|
||||
<!ELEMENT targetset (targetsetinfo?, sitemap*, document*) >
|
||||
|
||||
<!ELEMENT targetsetinfo (#PCDATA) >
|
||||
|
||||
<!ELEMENT sitemap (dir) >
|
||||
|
||||
<!ELEMENT dir ((dir|document)*) >
|
||||
<!ATTLIST dir
|
||||
name CDATA #REQUIRED
|
||||
>
|
||||
|
||||
<!ELEMENT document (div*) >
|
||||
<!ATTLIST document
|
||||
targetdoc CDATA #REQUIRED
|
||||
uri CDATA #IMPLIED
|
||||
baseuri CDATA #IMPLIED
|
||||
href CDATA #IMPLIED
|
||||
>
|
||||
|
||||
<!ELEMENT div (ttl?, objttl?, xreftext?, page?, (div|obj)*)>
|
||||
<!ATTLIST div
|
||||
targetptr CDATA #IMPLIED
|
||||
element CDATA #IMPLIED
|
||||
name CDATA #IMPLIED
|
||||
number CDATA #IMPLIED
|
||||
href CDATA #IMPLIED
|
||||
lang CDATA #IMPLIED
|
||||
>
|
||||
|
||||
|
||||
<!ELEMENT ttl (#PCDATA)>
|
||||
<!ELEMENT objttl (#PCDATA)>
|
||||
<!ELEMENT xreftext (#PCDATA)>
|
||||
<!ELEMENT page (#PCDATA)>
|
||||
|
||||
<!ELEMENT obj (ttl?, objttl?, xreftext?, page?)>
|
||||
<!ATTLIST obj
|
||||
targetptr CDATA #IMPLIED
|
||||
element CDATA #IMPLIED
|
||||
name CDATA #IMPLIED
|
||||
number CDATA #IMPLIED
|
||||
href CDATA #IMPLIED
|
||||
lang CDATA #IMPLIED
|
||||
>
|
|
@ -1,251 +0,0 @@
|
|||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
exclude-result-prefixes="doc"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: targets.xsl 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!-- cross reference target collection -->
|
||||
|
||||
<doc:mode mode="collect.targets" xmlns="">
|
||||
<refpurpose>Collects information for potential cross reference targets</refpurpose>
|
||||
<refdescription>
|
||||
<para>Processing the root element in the
|
||||
<literal role="mode">collect.targets</literal> mode produces
|
||||
a set of target database elements that can be used by
|
||||
the olink mechanism to resolve external cross references.
|
||||
The collection process is controlled by the <literal>
|
||||
collect.xref.targets</literal> parameter, which can be
|
||||
<literal>yes</literal> to collect targets and process
|
||||
the document for output, <literal>only</literal> to
|
||||
only collect the targets, and <literal>no</literal>
|
||||
(default) to not collect the targets and only process the document.
|
||||
</para>
|
||||
<para>
|
||||
A <literal>targets.filename</literal> parameter must be
|
||||
specified to receive the output if
|
||||
<literal>collect.xref.targets</literal> is
|
||||
set to <literal>yes</literal> so as to
|
||||
redirect the target data to a file separate from the
|
||||
document output.
|
||||
</para>
|
||||
</refdescription>
|
||||
</doc:mode>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="collect.targets">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$collect.xref.targets = 'yes' and $targets.filename = ''">
|
||||
<xsl:message>
|
||||
Must specify a $targets.filename parameter when
|
||||
$collect.xref.targets is set to 'yes'.
|
||||
The xref targets were not collected.
|
||||
</xsl:message>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$targets.filename">
|
||||
<xsl:call-template name="write.chunk">
|
||||
<xsl:with-param name="filename" select="$targets.filename"/>
|
||||
<xsl:with-param name="method" select="'xml'"/>
|
||||
<xsl:with-param name="encoding" select="'utf-8'"/>
|
||||
<xsl:with-param name="omit-xml-declaration" select="'yes'"/>
|
||||
<xsl:with-param name="doctype-public" select="''"/>
|
||||
<xsl:with-param name="doctype-system" select="''"/>
|
||||
<xsl:with-param name="indent" select="'yes'"/>
|
||||
<xsl:with-param name="quiet" select="0"/>
|
||||
<xsl:with-param name="content">
|
||||
<xsl:apply-templates select="." mode="olink.mode"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<!-- Else write to standard output -->
|
||||
<xsl:apply-templates select="." mode="olink.mode"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="olink.href.target">
|
||||
<xsl:param name="nd" select="."/>
|
||||
|
||||
<xsl:value-of select="$olink.base.uri"/>
|
||||
<xsl:call-template name="href.target">
|
||||
<xsl:with-param name="obj" select="$nd"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Templates for extracting cross reference information
|
||||
from a document for use in an xref database.
|
||||
-->
|
||||
|
||||
<xsl:template name="attrs">
|
||||
<xsl:param name="nd" select="."/>
|
||||
|
||||
<xsl:attribute name="element">
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:attribute name="href">
|
||||
<xsl:call-template name="olink.href.target">
|
||||
<xsl:with-param name="object" select="$nd"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:variable name="num">
|
||||
<xsl:apply-templates select="$nd" mode="label.markup">
|
||||
<xsl:with-param name="verbose" select="0"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$num">
|
||||
<xsl:attribute name="number">
|
||||
<xsl:value-of select="$num"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="$nd/@id">
|
||||
<xsl:attribute name="targetptr">
|
||||
<xsl:value-of select="$nd/@id"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="$nd/@lang">
|
||||
<xsl:attribute name="lang">
|
||||
<xsl:value-of select="$nd/@lang"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="div">
|
||||
<xsl:param name="nd" select="."/>
|
||||
|
||||
<div>
|
||||
<xsl:call-template name="attrs">
|
||||
<xsl:with-param name="nd" select="$nd"/>
|
||||
</xsl:call-template>
|
||||
<ttl>
|
||||
<xsl:apply-templates select="$nd" mode="title.markup"/>
|
||||
</ttl>
|
||||
<xreftext>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$nd/@xreflabel">
|
||||
<xsl:call-template name="xref.xreflabel">
|
||||
<xsl:with-param name="target" select="$nd"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="$nd" mode="xref-to"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xreftext>
|
||||
<xsl:apply-templates mode="olink.mode"/>
|
||||
</div>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="obj">
|
||||
<xsl:param name="nd" select="."/>
|
||||
|
||||
<obj>
|
||||
<xsl:call-template name="attrs">
|
||||
<xsl:with-param name="nd" select="$nd"/>
|
||||
</xsl:call-template>
|
||||
<ttl>
|
||||
<xsl:apply-templates select="$nd" mode="title.markup">
|
||||
<xsl:with-param name="verbose" select="0"/>
|
||||
</xsl:apply-templates>
|
||||
</ttl>
|
||||
<xreftext>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$nd/@xreflabel">
|
||||
<xsl:call-template name="xref.xreflabel">
|
||||
<xsl:with-param name="target" select="$nd"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="$nd" mode="xref-to">
|
||||
<xsl:with-param name="verbose" select="0"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xreftext>
|
||||
</obj>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="text()|processing-instruction()|comment()"
|
||||
mode="olink.mode">
|
||||
<!-- nop -->
|
||||
</xsl:template>
|
||||
|
||||
<!--
|
||||
<xsl:template match="*" mode="olink.mode">
|
||||
</xsl:template>
|
||||
-->
|
||||
|
||||
<xsl:template match="set" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="book" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="preface|chapter|appendix" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="part|reference" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="article" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refentry" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section|sect1|sect2|sect3|sect4|sect5" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refsection|refsect1|refsect2|refsect3" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="figure|example|table" mode="olink.mode">
|
||||
<xsl:call-template name="obj"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="equation[title]" mode="olink.mode">
|
||||
<xsl:call-template name="obj"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="qandaset|qandaentry" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="*" mode="olink.mode">
|
||||
<xsl:if test="@id">
|
||||
<xsl:call-template name="obj"/>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates mode="olink.mode"/>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
File diff suppressed because it is too large
Load Diff
|
@ -1,602 +0,0 @@
|
|||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
exclude-result-prefixes="doc"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: titles.xsl 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!-- title markup -->
|
||||
|
||||
<doc:mode mode="title.markup" xmlns="">
|
||||
<refpurpose>Provides access to element titles</refpurpose>
|
||||
<refdescription>
|
||||
<para>Processing an element in the
|
||||
<literal role="mode">title.markup</literal> mode produces the
|
||||
title of the element. This does not include the label.
|
||||
</para>
|
||||
</refdescription>
|
||||
</doc:mode>
|
||||
|
||||
<xsl:template match="*" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="title">
|
||||
<xsl:apply-templates select="title[1]" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="local-name(.) = 'partintro'">
|
||||
<!-- partintro's don't have titles, use the parent (part or reference)
|
||||
title instead. -->
|
||||
<xsl:apply-templates select="parent::*" mode="title.markup"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:if test="$verbose">
|
||||
<xsl:message>
|
||||
<xsl:text>Request for title of element with no title: </xsl:text>
|
||||
<xsl:value-of select="name(.)"/>
|
||||
<xsl:if test="@id">
|
||||
<xsl:text> (id="</xsl:text>
|
||||
<xsl:value-of select="@id"/>
|
||||
<xsl:text>")</xsl:text>
|
||||
</xsl:if>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
<xsl:text>???TITLE???</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="title" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$allow-anchors != 0">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates mode="no.anchor.mode"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- only occurs in HTML Tables! -->
|
||||
<xsl:template match="caption" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$allow-anchors != 0">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates mode="no.anchor.mode"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="set" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="(setinfo/title|info/title|title)[1]"
|
||||
mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="book" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="(bookinfo/title|info/title|title)[1]"
|
||||
mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="part" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="(partinfo/title|info/title|docinfo/title|title)[1]"
|
||||
mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="preface|chapter|appendix" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
|
||||
<!--
|
||||
<xsl:message>
|
||||
<xsl:value-of select="name(.)"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:value-of select="$allow-anchors"/>
|
||||
</xsl:message>
|
||||
-->
|
||||
|
||||
<xsl:variable name="title" select="(docinfo/title
|
||||
|info/title
|
||||
|prefaceinfo/title
|
||||
|chapterinfo/title
|
||||
|appendixinfo/title
|
||||
|title)[1]"/>
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="dedication" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="title">
|
||||
<xsl:apply-templates select="title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Dedication'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="colophon" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="title">
|
||||
<xsl:apply-templates select="title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Colophon'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="article" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(artheader/title
|
||||
|articleinfo/title
|
||||
|info/title
|
||||
|title)[1]"/>
|
||||
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="reference" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="(referenceinfo/title|docinfo/title|info/title|title)[1]"
|
||||
mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refentry" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="refmeta" select=".//refmeta"/>
|
||||
<xsl:variable name="refentrytitle" select="$refmeta//refentrytitle"/>
|
||||
<xsl:variable name="refnamediv" select=".//refnamediv"/>
|
||||
<xsl:variable name="refname" select="$refnamediv//refname"/>
|
||||
|
||||
<xsl:variable name="title">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$refentrytitle">
|
||||
<xsl:apply-templates select="$refentrytitle[1]" mode="title.markup"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$refname">
|
||||
<xsl:apply-templates select="$refname[1]" mode="title.markup"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>REFENTRY WITHOUT TITLE???</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:copy-of select="$title"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refentrytitle|refname" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$allow-anchors != 0">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates mode="no.anchor.mode"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section
|
||||
|sect1|sect2|sect3|sect4|sect5
|
||||
|refsect1|refsect2|refsect3
|
||||
|simplesect"
|
||||
mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(info/title
|
||||
|sectioninfo/title
|
||||
|sect1info/title
|
||||
|sect2info/title
|
||||
|sect3info/title
|
||||
|sect4info/title
|
||||
|sect5info/title
|
||||
|refsect1info/title
|
||||
|refsect2info/title
|
||||
|refsect3info/title
|
||||
|title)[1]"/>
|
||||
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="bridgehead" mode="title.markup">
|
||||
<xsl:apply-templates mode="title.markup"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refsynopsisdiv" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="title">
|
||||
<xsl:apply-templates select="title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'RefSynopsisDiv'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="bibliography" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(bibliographyinfo/title|info/title|title)[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title">
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Bibliography'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="glossary" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(glossaryinfo/title|info/title|title)[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title">
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext.element.name">
|
||||
<xsl:with-param name="element.name" select="name(.)"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="glossentry" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="glossterm" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="glossterm" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$allow-anchors != 0">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates mode="no.anchor.mode"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="index" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(indexinfo/title|info/title|title)[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title">
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Index'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="setindex" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(setindexinfo/title|info/title|title)[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title">
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'SetIndex'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="figure|example|equation" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="table" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="title|caption" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="procedure" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="abstract" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="title">
|
||||
<xsl:apply-templates select="title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Abstract'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="caution|tip|warning|important|note" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="title[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title">
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key">
|
||||
<xsl:choose>
|
||||
<xsl:when test="local-name(.)='note'">Note</xsl:when>
|
||||
<xsl:when test="local-name(.)='important'">Important</xsl:when>
|
||||
<xsl:when test="local-name(.)='caution'">Caution</xsl:when>
|
||||
<xsl:when test="local-name(.)='warning'">Warning</xsl:when>
|
||||
<xsl:when test="local-name(.)='tip'">Tip</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="question" mode="title.markup">
|
||||
<!-- questions don't have titles -->
|
||||
<xsl:text>Question</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="answer" mode="title.markup">
|
||||
<!-- answers don't have titles -->
|
||||
<xsl:text>Answer</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="qandaentry" mode="title.markup">
|
||||
<!-- qandaentrys are represented by the first question in them -->
|
||||
<xsl:text>Question</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="legalnotice" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="title">
|
||||
<xsl:apply-templates select="title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'LegalNotice'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="titleabbrev.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="titleabbrev">
|
||||
<xsl:apply-templates select="titleabbrev[1]" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
<xsl:with-param name="verbose" select="$verbose"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="preface|chapter|appendix" mode="titleabbrev.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
|
||||
<xsl:variable name="titleabbrev" select="(docinfo/titleabbrev
|
||||
|info/titleabbrev
|
||||
|prefaceinfo/titleabbrev
|
||||
|chapterinfo/titleabbrev
|
||||
|appendixinfo/titleabbrev
|
||||
|titleabbrev)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$titleabbrev">
|
||||
<xsl:apply-templates select="$titleabbrev" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
<xsl:with-param name="verbose" select="$verbose"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="article" mode="titleabbrev.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
|
||||
<xsl:variable name="titleabbrev" select="(artheader/titleabbrev
|
||||
|articleinfo/titleabbrev
|
||||
|info/titleabbrev
|
||||
|titleabbrev)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$titleabbrev">
|
||||
<xsl:apply-templates select="$titleabbrev" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
<xsl:with-param name="verbose" select="$verbose"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section
|
||||
|sect1|sect2|sect3|sect4|sect5
|
||||
|refsect1|refsect2|refsect3
|
||||
|simplesect"
|
||||
mode="titleabbrev.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
|
||||
<xsl:variable name="titleabbrev" select="(info/titleabbrev
|
||||
|sectioninfo/titleabbrev
|
||||
|sect1info/titleabbrev
|
||||
|sect2info/titleabbrev
|
||||
|sect3info/titleabbrev
|
||||
|sect4info/titleabbrev
|
||||
|sect5info/titleabbrev
|
||||
|refsect1info/titleabbrev
|
||||
|refsect2info/titleabbrev
|
||||
|refsect3info/titleabbrev
|
||||
|titleabbrev)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$titleabbrev">
|
||||
<xsl:apply-templates select="$titleabbrev" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
<xsl:with-param name="verbose" select="$verbose"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="titleabbrev" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$allow-anchors != 0">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates mode="no.anchor.mode"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="no.anchor.mode">
|
||||
<xsl:apply-templates mode="no.anchor.mode"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="footnote" mode="no.anchor.mode">
|
||||
<!-- nop, suppressed -->
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="anchor" mode="no.anchor.mode">
|
||||
<!-- nop, suppressed -->
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="ulink" mode="no.anchor.mode">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="link" mode="no.anchor.mode">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="olink" mode="no.anchor.mode">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="indexterm" mode="no.anchor.mode">
|
||||
<!-- nop, suppressed -->
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="xref" mode="no.anchor.mode">
|
||||
<!-- FIXME: this should generate the text without the link... -->
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
</xsl:stylesheet>
|
||||
|
|
@ -1,590 +0,0 @@
|
|||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="tr" english-language-name="Turkish">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<l:gentext key="Abstract" text="Özet"/>
|
||||
<l:gentext key="abstract" text="Özet"/>
|
||||
<l:gentext key="Answer" text="Cevap:"/>
|
||||
<l:gentext key="answer" text="Cevap:"/>
|
||||
<l:gentext key="Appendix" text="Ek"/>
|
||||
<l:gentext key="appendix" text="ek"/>
|
||||
<l:gentext key="Article" text="Makale"/>
|
||||
<l:gentext key="article" text="Makale"/>
|
||||
<l:gentext key="Bibliography" text="Kaynakça"/>
|
||||
<l:gentext key="bibliography" text="Kaynakça"/>
|
||||
<l:gentext key="Book" text="Kitap"/>
|
||||
<l:gentext key="book" text="Kitap"/>
|
||||
<l:gentext key="CAUTION" text="DİKKAT"/>
|
||||
<l:gentext key="Caution" text="Dikkat"/>
|
||||
<l:gentext key="caution" text="Dikkat"/>
|
||||
<l:gentext key="Chapter" text="Bölüm"/>
|
||||
<l:gentext key="chapter" text="bölüm"/>
|
||||
<l:gentext key="Colophon" text="Kitap hakkında"/>
|
||||
<l:gentext key="colophon" text="Kitap hakkında"/>
|
||||
<l:gentext key="Copyright" text="Telif Hakkı"/>
|
||||
<l:gentext key="copyright" text="Telif Hakkı"/>
|
||||
<l:gentext key="Dedication" text="İthaf"/>
|
||||
<l:gentext key="dedication" text="İthaf"/>
|
||||
<l:gentext key="Edition" text="Baskı"/>
|
||||
<l:gentext key="edition" text="Baskı"/>
|
||||
<l:gentext key="Equation" text="Denklem"/>
|
||||
<l:gentext key="equation" text="Denklem"/>
|
||||
<l:gentext key="Example" text="Örnek"/>
|
||||
<l:gentext key="example" text="Örnek"/>
|
||||
<l:gentext key="Figure" text="Şekil"/>
|
||||
<l:gentext key="figure" text="Şekil"/>
|
||||
<l:gentext key="Glossary" text="Sözlük"/>
|
||||
<l:gentext key="glossary" text="Sözlük"/>
|
||||
<l:gentext key="GlossSee" text="Bkz."/>
|
||||
<l:gentext key="glosssee" text="Bkz."/>
|
||||
<l:gentext key="GlossSeeAlso" text="Bkz."/>
|
||||
<l:gentext key="glossseealso" text="Bkz."/>
|
||||
<l:gentext key="IMPORTANT" text="ÖNEMLİ"/>
|
||||
<l:gentext key="important" text="Önemli"/>
|
||||
<l:gentext key="Important" text="Önemli"/>
|
||||
<l:gentext key="Index" text="Dizin"/>
|
||||
<l:gentext key="index" text="Dizin"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Yasal Uyarı"/>
|
||||
<l:gentext key="legalnotice" text="Yasal Uyarı"/>
|
||||
<l:gentext key="MsgAud" text="Hedef Okuyucu"/>
|
||||
<l:gentext key="msgaud" text="Hedef Okuyucu"/>
|
||||
<l:gentext key="MsgLevel" text="Level"/>
|
||||
<l:gentext key="msglevel" text="Düzey"/>
|
||||
<l:gentext key="MsgOrig" text="Düzey"/>
|
||||
<l:gentext key="msgorig" text="Kaynak"/>
|
||||
<l:gentext key="NOTE" text="NOT"/>
|
||||
<l:gentext key="Note" text="Not"/>
|
||||
<l:gentext key="note" text="Not"/>
|
||||
<l:gentext key="Part" text="Kısım"/>
|
||||
<l:gentext key="part" text="Kısım"/>
|
||||
<l:gentext key="Preface" text="Önsöz"/>
|
||||
<l:gentext key="preface" text="Önsöz"/>
|
||||
<l:gentext key="Procedure" text="Yönerge"/>
|
||||
<l:gentext key="procedure" text="Yönerge"/>
|
||||
<l:gentext key="ProductionSet" text="Prodüksiyon"/>
|
||||
<l:gentext key="PubDate" text="Yayımlanma Tarihi"/>
|
||||
<l:gentext key="pubdate" text="Yayımlanma Tarihi"/>
|
||||
<l:gentext key="Published" text="Yayımlanma"/>
|
||||
<l:gentext key="published" text="Yayımlanma"/>
|
||||
<l:gentext key="Qandadiv" text="S ve C"/>
|
||||
<l:gentext key="qandadiv" text="S ve C"/>
|
||||
<l:gentext key="Question" text="Soru:"/>
|
||||
<l:gentext key="question" text="Soru:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Referans"/>
|
||||
<l:gentext key="reference" text="Referans"/>
|
||||
<l:gentext key="RefName" text="Referans Adı"/>
|
||||
<l:gentext key="refname" text="Referans Adı"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Synopsis"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Synopsis"/>
|
||||
<l:gentext key="RevHistory" text="Baskı Tarihçesi"/>
|
||||
<l:gentext key="revhistory" text="Baskı Tarihçesi"/>
|
||||
<l:gentext key="revision" text="Baskı"/>
|
||||
<l:gentext key="Revision" text="Baskı"/>
|
||||
<l:gentext key="sect1" text="Kısım"/>
|
||||
<l:gentext key="sect2" text="Kısım"/>
|
||||
<l:gentext key="sect3" text="Kısım"/>
|
||||
<l:gentext key="sect4" text="Kısım"/>
|
||||
<l:gentext key="sect5" text="Kısım"/>
|
||||
<l:gentext key="section" text="Kısım"/>
|
||||
<l:gentext key="Section" text="Kısım"/>
|
||||
<l:gentext key="see" text="Bkz."/>
|
||||
<l:gentext key="See" text="Bkz."/>
|
||||
<l:gentext key="seealso" text="Bkz."/>
|
||||
<l:gentext key="Seealso" text="Bakınız"/>
|
||||
<l:gentext key="SeeAlso" text="Bakınız"/>
|
||||
<l:gentext key="set" text="Takım"/>
|
||||
<l:gentext key="Set" text="Takım"/>
|
||||
<l:gentext key="setindex" text="Takım Dizini"/>
|
||||
<l:gentext key="SetIndex" text="Takım Dizini"/>
|
||||
<l:gentext key="Sidebar" text=""/>
|
||||
<l:gentext key="sidebar" text="sidebar"/>
|
||||
<l:gentext key="step" text="adım"/>
|
||||
<l:gentext key="Step" text="Adım"/>
|
||||
<l:gentext key="Table" text="Tablo"/>
|
||||
<l:gentext key="table" text="Tablo"/>
|
||||
<l:gentext key="tip" text="İpucu"/>
|
||||
<l:gentext key="TIP" text="İPUCU"/>
|
||||
<l:gentext key="Tip" text="İpucu"/>
|
||||
<l:gentext key="Warning" text="Uyarı"/>
|
||||
<l:gentext key="warning" text="Uyarı"/>
|
||||
<l:gentext key="WARNING" text="UYARI"/>
|
||||
<l:gentext key="and" text="ve"/>
|
||||
<l:gentext key="by" text="by"/>
|
||||
<l:gentext key="called" text="called"/>
|
||||
<l:gentext key="Edited" text="Yayına hazırlayan"/>
|
||||
<l:gentext key="edited" text="yayına hazırlayan"/>
|
||||
<l:gentext key="Editedby" text="Yayına hazırlayan"/>
|
||||
<l:gentext key="editedby" text="yayına hazırlayan"/>
|
||||
<l:gentext key="in" text="in"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="varolmayan eleman"/>
|
||||
<l:gentext key="notes" text="Notlar"/>
|
||||
<l:gentext key="Notes" text="Notlar"/>
|
||||
<l:gentext key="Pgs" text="Sayfa"/>
|
||||
<l:gentext key="pgs" text="Sayfa"/>
|
||||
<l:gentext key="Revisedby" text="Düzeltmeler: "/>
|
||||
<l:gentext key="revisedby" text="Düzeltmeler: "/>
|
||||
<l:gentext key="TableNotes" text="Notlar"/>
|
||||
<l:gentext key="tablenotes" text="Notlar"/>
|
||||
<l:gentext key="TableofContents" text="İçindekiler"/>
|
||||
<l:gentext key="tableofcontents" text="İçindekiler"/>
|
||||
<l:gentext key="the" text=""/>
|
||||
<l:gentext key="unexpectedelementname" text="Beklenmeyen eleman adı"/>
|
||||
<l:gentext key="unsupported" text="desteklenmiyor"/>
|
||||
<l:gentext key="xrefto" text="xref to"/>
|
||||
<l:gentext key="listofequations" text="Denklemler"/>
|
||||
<l:gentext key="ListofEquations" text="Denklemler"/>
|
||||
<l:gentext key="ListofExamples" text="Örnekler"/>
|
||||
<l:gentext key="listofexamples" text="Örnekler"/>
|
||||
<l:gentext key="ListofFigures" text="Şekiller"/>
|
||||
<l:gentext key="listoffigures" text="Şekiller"/>
|
||||
<l:gentext key="ListofProcedures" text="Yönergeler"/>
|
||||
<l:gentext key="listofprocedures" text="Yönergeler"/>
|
||||
<l:gentext key="listoftables" text="Tablolar"/>
|
||||
<l:gentext key="ListofTables" text="Tablolar"/>
|
||||
<l:gentext key="ListofUnknown" text="Bilinmeyenler"/>
|
||||
<l:gentext key="listofunknown" text="Bilinmeyenler"/>
|
||||
<l:gentext key="nav-home" text="Başlangıç"/>
|
||||
<l:gentext key="nav-next" text="Sonraki"/>
|
||||
<l:gentext key="nav-next-sibling" text="Sonraki Bölüm"/>
|
||||
<l:gentext key="nav-prev" text="Önceki"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Önceki Bölüm"/>
|
||||
<l:gentext key="nav-up" text="Yukarı"/>
|
||||
<l:gentext key="nav-toc" text="İçindekiler"/>
|
||||
<l:gentext key="Draft" text="Taslak"/>
|
||||
<l:gentext key="above" text="üstünde"/>
|
||||
<l:gentext key="below" text="altında"/>
|
||||
<l:gentext key="sectioncalled" text="the section called"/>
|
||||
<l:gentext key="index symbols" text="Semboller"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcçdefgğhıijklmnoöprsştuüvyz"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCÇDEFGĞHIİJKLMNOÖPRSŞTUÜVYZ"/>
|
||||
<l:dingbat key="startquote" text="“"/>
|
||||
<l:dingbat key="endquote" text="”"/>
|
||||
<l:dingbat key="nestedstartquote" text="‘"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘"/>
|
||||
<l:dingbat key="singleendquote" text="’"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="3"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2"/>
|
||||
|
||||
<l:context name="styles">
|
||||
<l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Ek %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Bölüm %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Denklem %n. %t"/>
|
||||
<l:template name="example" text="Örnek %n. %t"/>
|
||||
<l:template name="figure" text="Şekil %n. %t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Kısım %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Yönerge %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Prodüksiyon %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tablo %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-unnumbered">
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-numbered">
|
||||
<l:template name="appendix" text="Ek %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Bölüm %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="subtitle">
|
||||
<l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="Cevap: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="Soru: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="Soru: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(sayfa %p)"/>
|
||||
<l:template name="pageabbrev" text="(shf. %p)"/>
|
||||
<l:template name="Page" text="Sayfa %p"/>
|
||||
<l:template name="bridgehead" text=" “%t”"/>
|
||||
<l:template name="refsection" text=" “%t”"/>
|
||||
<l:template name="refsect1" text=" “%t”"/>
|
||||
<l:template name="refsect2" text=" “%t”"/>
|
||||
<l:template name="refsect3" text=" “%t”"/>
|
||||
<l:template name="sect1" text=" “%t”"/>
|
||||
<l:template name="sect2" text=" “%t”"/>
|
||||
<l:template name="sect3" text=" “%t”"/>
|
||||
<l:template name="sect4" text=" “%t”"/>
|
||||
<l:template name="sect5" text=" “%t”"/>
|
||||
<l:template name="section" text=" “%t”"/>
|
||||
<l:template name="simplesect" text=" “%t”"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number">
|
||||
<l:template name="answer" text="Cevap: %n"/>
|
||||
<l:template name="appendix" text="Ek %n"/>
|
||||
<l:template name="bridgehead" text="Kısım %n"/>
|
||||
<l:template name="chapter" text="Bölüm %n"/>
|
||||
<l:template name="equation" text="Denklem %n"/>
|
||||
<l:template name="example" text="Örnek %n"/>
|
||||
<l:template name="figure" text="Şekil %n"/>
|
||||
<l:template name="part" text="Kısım %n"/>
|
||||
<l:template name="procedure" text="Yönerge %n"/>
|
||||
<l:template name="productionset" text="Prodüksiyon %n"/>
|
||||
<l:template name="qandadiv" text="S ve C %n"/>
|
||||
<l:template name="qandaentry" text="Soru: %n"/>
|
||||
<l:template name="question" text="Soru: %n"/>
|
||||
<l:template name="sect1" text="Kısım %n"/>
|
||||
<l:template name="sect2" text="Kısım %n"/>
|
||||
<l:template name="sect3" text="Kısım %n"/>
|
||||
<l:template name="sect4" text="Kısım %n"/>
|
||||
<l:template name="sect5" text="Kısım %n"/>
|
||||
<l:template name="section" text="Kısım %n"/>
|
||||
<l:template name="table" text="Tablo %n"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number-and-title">
|
||||
<l:template name="appendix" text="Ek %n, %t"/>
|
||||
<l:template name="bridgehead" text="Kısım %n, “%t”"/>
|
||||
<l:template name="chapter" text="Bölüm %n, %t"/>
|
||||
<l:template name="equation" text="Denklem %n, “%t”"/>
|
||||
<l:template name="example" text="Örnek %n, “%t”"/>
|
||||
<l:template name="figure" text="Şekil %n, “%t”"/>
|
||||
<l:template name="part" text="Kısım %n, “%t”"/>
|
||||
<l:template name="procedure" text="Yönerge %n, “%t”"/>
|
||||
<l:template name="productionset" text="Prodüksiyon %n, “%t”"/>
|
||||
<l:template name="qandadiv" text="S ve C %n, “%t”"/>
|
||||
<l:template name="refsect1" text=" “%t”"/>
|
||||
<l:template name="refsect2" text=" “%t”"/>
|
||||
<l:template name="refsect3" text=" “%t”"/>
|
||||
<l:template name="refsection" text=" “%t”"/>
|
||||
<l:template name="sect1" text="Kısım %n, “%t”"/>
|
||||
<l:template name="sect2" text="Kısım %n, “%t”"/>
|
||||
<l:template name="sect3" text="Kısım %n, “%t”"/>
|
||||
<l:template name="sect4" text="Kısım %n, “%t”"/>
|
||||
<l:template name="sect5" text="Kısım %n, “%t”"/>
|
||||
<l:template name="section" text="Kısım %n, “%t”"/>
|
||||
<l:template name="simplesect" text=" “%t”"/>
|
||||
<l:template name="table" text="Tablo %n, “%t”"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="authorgroup">
|
||||
<l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" ve "/>
|
||||
<l:template name="seplast" text=", ve "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="glossary">
|
||||
<l:template name="see" text="Bkz. "/>
|
||||
<l:template name="seealso" text="Bkz. "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="msgset">
|
||||
<l:template name="MsgAud" text="Hedef Okuyucu: "/>
|
||||
<l:template name="MsgLevel" text="Level: "/>
|
||||
<l:template name="MsgOrig" text="Düzey: "/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime">
|
||||
<l:template name="format" text="d/m/Y"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-full">
|
||||
<l:template name="January" text="Ocak"/>
|
||||
<l:template name="February" text="Şubat"/>
|
||||
<l:template name="March" text="Mart"/>
|
||||
<l:template name="April" text="Nisan"/>
|
||||
<l:template name="May" text="Mayıs"/>
|
||||
<l:template name="June" text="Haziran"/>
|
||||
<l:template name="July" text="Temmuz"/>
|
||||
<l:template name="August" text="Ağustos"/>
|
||||
<l:template name="September" text="Eylül"/>
|
||||
<l:template name="October" text="Ekim"/>
|
||||
<l:template name="November" text="Kasım"/>
|
||||
<l:template name="December" text="Aralık"/>
|
||||
<l:template name="Monday" text="Pazartesi"/>
|
||||
<l:template name="Tuesday" text="Salı"/>
|
||||
<l:template name="Wednesday" text="Çarşamba"/>
|
||||
<l:template name="Thursday" text="Perşembe"/>
|
||||
<l:template name="Friday" text="Cuma"/>
|
||||
<l:template name="Saturday" text="Cumartesi"/>
|
||||
<l:template name="Sunday" text="Pazar"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-abbrev">
|
||||
<l:template name="Jan" text="Oca"/>
|
||||
<l:template name="Feb" text="Şub"/>
|
||||
<l:template name="Mar" text="Mar"/>
|
||||
<l:template name="Apr" text="Nis"/>
|
||||
<l:template name="May" text="May"/>
|
||||
<l:template name="Jun" text="Haz"/>
|
||||
<l:template name="Jul" text="Tem"/>
|
||||
<l:template name="Aug" text="Ağu"/>
|
||||
<l:template name="Sep" text="Eyl"/>
|
||||
<l:template name="Oct" text="Eki"/>
|
||||
<l:template name="Nov" text="Kas"/>
|
||||
<l:template name="Dec" text="Ara"/>
|
||||
<l:template name="Mon" text="Pzt"/>
|
||||
<l:template name="Tue" text="Sal"/>
|
||||
<l:template name="Wed" text="Çar"/>
|
||||
<l:template name="Thu" text="Per"/>
|
||||
<l:template name="Fri" text="Cum"/>
|
||||
<l:template name="Sat" text="Cts"/>
|
||||
<l:template name="Sun" text="Paz"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="htmlhelp">
|
||||
<l:template name="langcode" text="0x041f Turkish"/>
|
||||
</l:context>
|
||||
|
||||
<l:letters>
|
||||
<l:l i="-1"/>
|
||||
<l:l i="0">Semboller</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">Ç</l:l>
|
||||
<l:l i="4">ç</l:l>
|
||||
<l:l i="5">D</l:l>
|
||||
<l:l i="5">d</l:l>
|
||||
<l:l i="6">E</l:l>
|
||||
<l:l i="6">e</l:l>
|
||||
<l:l i="7">F</l:l>
|
||||
<l:l i="7">f</l:l>
|
||||
<l:l i="8">G</l:l>
|
||||
<l:l i="8">g</l:l>
|
||||
<l:l i="9">Ğ</l:l>
|
||||
<l:l i="9">ğ</l:l>
|
||||
<l:l i="10">H</l:l>
|
||||
<l:l i="10">h</l:l>
|
||||
<l:l i="11">I</l:l>
|
||||
<l:l i="11">ı</l:l>
|
||||
<l:l i="12">İ</l:l>
|
||||
<l:l i="12">i</l:l>
|
||||
<l:l i="13">J</l:l>
|
||||
<l:l i="13">j</l:l>
|
||||
<l:l i="14">K</l:l>
|
||||
<l:l i="14">k</l:l>
|
||||
<l:l i="15">L</l:l>
|
||||
<l:l i="15">l</l:l>
|
||||
<l:l i="16">M</l:l>
|
||||
<l:l i="16">m</l:l>
|
||||
<l:l i="17">N</l:l>
|
||||
<l:l i="17">n</l:l>
|
||||
<l:l i="18">O</l:l>
|
||||
<l:l i="18">o</l:l>
|
||||
<l:l i="19">Ö</l:l>
|
||||
<l:l i="19">ö</l:l>
|
||||
<l:l i="20">P</l:l>
|
||||
<l:l i="20">p</l:l>
|
||||
<l:l i="21">R</l:l>
|
||||
<l:l i="21">r</l:l>
|
||||
<l:l i="22">S</l:l>
|
||||
<l:l i="22">s</l:l>
|
||||
<l:l i="23">Ş</l:l>
|
||||
<l:l i="23">ş</l:l>
|
||||
<l:l i="24">T</l:l>
|
||||
<l:l i="24">t</l:l>
|
||||
<l:l i="25">U</l:l>
|
||||
<l:l i="25">u</l:l>
|
||||
<l:l i="26">Ü</l:l>
|
||||
<l:l i="26">ü</l:l>
|
||||
<l:l i="27">V</l:l>
|
||||
<l:l i="27">v</l:l>
|
||||
<l:l i="28">Y</l:l>
|
||||
<l:l i="28">y</l:l>
|
||||
<l:l i="29">Z</l:l>
|
||||
<l:l i="29">z</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,584 +0,0 @@
|
|||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="zh_cn" english-language-name="Chinese Simplified">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<l:gentext key="Abstract" text="摘要"/>
|
||||
<l:gentext key="abstract" text="摘要"/>
|
||||
<l:gentext key="Answer" text="答:"/>
|
||||
<l:gentext key="answer" text="答:"/>
|
||||
<l:gentext key="Appendix" text="附录"/>
|
||||
<l:gentext key="appendix" text="附录"/>
|
||||
<l:gentext key="Article" text="文章"/>
|
||||
<l:gentext key="article" text="文章"/>
|
||||
<l:gentext key="Bibliography" text="参考书目"/>
|
||||
<l:gentext key="bibliography" text="参考书目"/>
|
||||
<l:gentext key="Book" text="书"/>
|
||||
<l:gentext key="book" text="书"/>
|
||||
<l:gentext key="CAUTION" text="小心"/>
|
||||
<l:gentext key="Caution" text="小心"/>
|
||||
<l:gentext key="caution" text="小心"/>
|
||||
<l:gentext key="Chapter" text="章"/>
|
||||
<l:gentext key="chapter" text="章"/>
|
||||
<l:gentext key="Colophon" text="Colophon"/>
|
||||
<l:gentext key="colophon" text="Colophon"/>
|
||||
<l:gentext key="Copyright" text="版权"/>
|
||||
<l:gentext key="copyright" text="版权"/>
|
||||
<l:gentext key="Dedication" text="题词"/>
|
||||
<l:gentext key="dedication" text="题词"/>
|
||||
<l:gentext key="Edition" text="版"/>
|
||||
<l:gentext key="edition" text="版"/>
|
||||
<l:gentext key="Equation" text="公式"/>
|
||||
<l:gentext key="equation" text="公式"/>
|
||||
<l:gentext key="Example" text="例"/>
|
||||
<l:gentext key="example" text="例"/>
|
||||
<l:gentext key="Figure" text="图"/>
|
||||
<l:gentext key="figure" text="图"/>
|
||||
<l:gentext key="Glossary" text="术语表"/>
|
||||
<l:gentext key="glossary" text="术语表"/>
|
||||
<l:gentext key="GlossSee" text="见"/>
|
||||
<l:gentext key="glosssee" text="见"/>
|
||||
<l:gentext key="GlossSeeAlso" text="参见"/>
|
||||
<l:gentext key="glossseealso" text="参见"/>
|
||||
<l:gentext key="IMPORTANT" text="重要"/>
|
||||
<l:gentext key="important" text="重要"/>
|
||||
<l:gentext key="Important" text="重要"/>
|
||||
<l:gentext key="Index" text="索引"/>
|
||||
<l:gentext key="index" text="索引"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="法律通告"/>
|
||||
<l:gentext key="legalnotice" text="法律通告"/>
|
||||
<l:gentext key="MsgAud" text="受众"/>
|
||||
<l:gentext key="msgaud" text="受众"/>
|
||||
<l:gentext key="MsgLevel" text="级别"/>
|
||||
<l:gentext key="msglevel" text="级别"/>
|
||||
<l:gentext key="MsgOrig" text="出处"/>
|
||||
<l:gentext key="msgorig" text="出处"/>
|
||||
<l:gentext key="NOTE" text="注意"/>
|
||||
<l:gentext key="Note" text="注意"/>
|
||||
<l:gentext key="note" text="注意"/>
|
||||
<l:gentext key="Part" text="部分"/>
|
||||
<l:gentext key="part" text="部分"/>
|
||||
<l:gentext key="Preface" text="前言"/>
|
||||
<l:gentext key="preface" text="前言"/>
|
||||
<l:gentext key="Procedure" text="过程"/>
|
||||
<l:gentext key="procedure" text="过程"/>
|
||||
<l:gentext key="ProductionSet" text="Production"/>
|
||||
<l:gentext key="PubDate" text="出版日期"/>
|
||||
<l:gentext key="pubdate" text="出版日期"/>
|
||||
<l:gentext key="Published" text="出版方"/>
|
||||
<l:gentext key="published" text="出版方"/>
|
||||
<l:gentext key="Qandadiv" text="质保"/>
|
||||
<l:gentext key="qandadiv" text="质保"/>
|
||||
<l:gentext key="Question" text="问:"/>
|
||||
<l:gentext key="question" text="问:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="参考"/>
|
||||
<l:gentext key="reference" text="参考"/>
|
||||
<l:gentext key="RefName" text="名称"/>
|
||||
<l:gentext key="refname" text="名称"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="大纲"/>
|
||||
<l:gentext key="refsynopsisdiv" text="大纲"/>
|
||||
<l:gentext key="RevHistory" text="修订历史"/>
|
||||
<l:gentext key="revhistory" text="修订历史"/>
|
||||
<l:gentext key="revision" text="修订"/>
|
||||
<l:gentext key="Revision" text="修订"/>
|
||||
<l:gentext key="sect1" text="节"/>
|
||||
<l:gentext key="sect2" text="节"/>
|
||||
<l:gentext key="sect3" text="节"/>
|
||||
<l:gentext key="sect4" text="节"/>
|
||||
<l:gentext key="sect5" text="节"/>
|
||||
<l:gentext key="section" text="节"/>
|
||||
<l:gentext key="Section" text="节"/>
|
||||
<l:gentext key="see" text="见"/>
|
||||
<l:gentext key="See" text="见"/>
|
||||
<l:gentext key="seealso" text="参见"/>
|
||||
<l:gentext key="Seealso" text="参见"/>
|
||||
<l:gentext key="SeeAlso" text="参见"/>
|
||||
<l:gentext key="set" text="Set"/>
|
||||
<l:gentext key="Set" text="Set"/>
|
||||
<l:gentext key="setindex" text="Set Index"/>
|
||||
<l:gentext key="SetIndex" text="Set Index"/>
|
||||
<l:gentext key="Sidebar" text=""/>
|
||||
<l:gentext key="sidebar" text="sidebar"/>
|
||||
<l:gentext key="step" text="步骤"/>
|
||||
<l:gentext key="Step" text="步骤"/>
|
||||
<l:gentext key="Table" text="表"/>
|
||||
<l:gentext key="table" text="表"/>
|
||||
<l:gentext key="tip" text="提示"/>
|
||||
<l:gentext key="TIP" text="提示"/>
|
||||
<l:gentext key="Tip" text="提示"/>
|
||||
<l:gentext key="Warning" text="警告"/>
|
||||
<l:gentext key="warning" text="警告"/>
|
||||
<l:gentext key="WARNING" text="警告"/>
|
||||
<l:gentext key="and" text="和"/>
|
||||
<l:gentext key="by" text="由"/>
|
||||
<l:gentext key="called" text="称为"/>
|
||||
<l:gentext key="Edited" text="编辑时间"/>
|
||||
<l:gentext key="edited" text="编辑时间"/>
|
||||
<l:gentext key="Editedby" text="编辑者"/>
|
||||
<l:gentext key="editedby" text="编辑者"/>
|
||||
<l:gentext key="in" text="于"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text="、"/>
|
||||
<l:gentext key="nonexistantelement" text="不存在的元素"/>
|
||||
<l:gentext key="notes" text="备注"/>
|
||||
<l:gentext key="Notes" text="备注"/>
|
||||
<l:gentext key="Pgs" text="页"/>
|
||||
<l:gentext key="pgs" text="页"/>
|
||||
<l:gentext key="Revisedby" text="修订者:"/>
|
||||
<l:gentext key="revisedby" text="修订者:"/>
|
||||
<l:gentext key="TableNotes" text="表注"/>
|
||||
<l:gentext key="tablenotes" text="表注"/>
|
||||
<l:gentext key="TableofContents" text="目录"/>
|
||||
<l:gentext key="tableofcontents" text="目录"/>
|
||||
<l:gentext key="the" text=""/>
|
||||
<l:gentext key="unexpectedelementname" text="未预期的名称"/>
|
||||
<l:gentext key="unsupported" text="不支持"/>
|
||||
<l:gentext key="xrefto" text="xref to"/>
|
||||
<l:gentext key="listofequations" text="公式清单"/>
|
||||
<l:gentext key="ListofEquations" text="公式清单"/>
|
||||
<l:gentext key="ListofExamples" text="范例清单"/>
|
||||
<l:gentext key="listofexamples" text="范例清单"/>
|
||||
<l:gentext key="ListofFigures" text="插图清单"/>
|
||||
<l:gentext key="listoffigures" text="插图清单"/>
|
||||
<l:gentext key="ListofProcedures" text="过程清单"/>
|
||||
<l:gentext key="listofprocedures" text="过程清单"/>
|
||||
<l:gentext key="listoftables" text="表格清单"/>
|
||||
<l:gentext key="ListofTables" text="表格清单"/>
|
||||
<l:gentext key="ListofUnknown" text="未知清单"/>
|
||||
<l:gentext key="listofunknown" text="未知清单"/>
|
||||
<l:gentext key="nav-home" text="起始页"/>
|
||||
<l:gentext key="nav-next" text="下一页"/>
|
||||
<l:gentext key="nav-next-sibling" text="快进"/>
|
||||
<l:gentext key="nav-prev" text="上一页"/>
|
||||
<l:gentext key="nav-prev-sibling" text="快退"/>
|
||||
<l:gentext key="nav-up" text="上一级"/>
|
||||
<l:gentext key="nav-toc" text="目录"/>
|
||||
<l:gentext key="Draft" text="草稿"/>
|
||||
<l:gentext key="above" text="above"/>
|
||||
<l:gentext key="below" text="below"/>
|
||||
<l:gentext key="sectioncalled" text="一节"/>
|
||||
<l:gentext key="index symbols" text="符号"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcdefghijklmnopqrstuvwxyz"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCDEFGHIJKLMNOPQRSTUVWXYZ"/>
|
||||
<l:dingbat key="startquote" text="“"/>
|
||||
<l:dingbat key="endquote" text="”"/>
|
||||
<l:dingbat key="nestedstartquote" text="‘"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘"/>
|
||||
<l:dingbat key="singleendquote" text="’"/>
|
||||
<l:dingbat key="bullet" text="·"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2"/>
|
||||
|
||||
<l:context name="styles">
|
||||
<l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="附录 %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="第 %n 章 %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="公式 %n. %t"/>
|
||||
<l:template name="example" text="例 %n. %t"/>
|
||||
<l:template name="figure" text="图 %n. %t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="第 %n 部分 %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="过程 %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Production %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="表 %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-unnumbered">
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="title-numbered">
|
||||
<l:template name="appendix" text="附录 %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="第 %n 章 %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="subtitle">
|
||||
<l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref">
|
||||
<l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="答: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="问: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="问: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(第 %p 页)"/>
|
||||
<l:template name="pageabbrev" text="(第 %p 页)"/>
|
||||
<l:template name="Page" text="第 %p 页"/>
|
||||
<l:template name="bridgehead" text="“%t”一节"/>
|
||||
<l:template name="refsection" text="“%t”一节"/>
|
||||
<l:template name="refsect1" text="“%t”一节"/>
|
||||
<l:template name="refsect2" text="“%t”一节"/>
|
||||
<l:template name="refsect3" text="“%t”一节"/>
|
||||
<l:template name="sect1" text="“%t”一节"/>
|
||||
<l:template name="sect2" text="“%t”一节"/>
|
||||
<l:template name="sect3" text="“%t”一节"/>
|
||||
<l:template name="sect4" text="“%t”一节"/>
|
||||
<l:template name="sect5" text="“%t”一节"/>
|
||||
<l:template name="section" text="“%t”一节"/>
|
||||
<l:template name="simplesect" text="“%t”一节"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number">
|
||||
<l:template name="answer" text="答: %n"/>
|
||||
<l:template name="appendix" text="附录 %n"/>
|
||||
<l:template name="bridgehead" text="第 %n 节"/>
|
||||
<l:template name="chapter" text="第 %n 章"/>
|
||||
<l:template name="equation" text="公式 %n"/>
|
||||
<l:template name="example" text="例 %n"/>
|
||||
<l:template name="figure" text="图 %n"/>
|
||||
<l:template name="part" text="第 %n 部分"/>
|
||||
<l:template name="procedure" text="过程 %n"/>
|
||||
<l:template name="productionset" text="Production %n"/>
|
||||
<l:template name="qandadiv" text="质保 %n"/>
|
||||
<l:template name="qandaentry" text="问: %n"/>
|
||||
<l:template name="question" text="问: %n"/>
|
||||
<l:template name="sect1" text="第 %n 节"/>
|
||||
<l:template name="sect2" text="第 %n 节"/>
|
||||
<l:template name="sect3" text="第 %n 节"/>
|
||||
<l:template name="sect4" text="第 %n 节"/>
|
||||
<l:template name="sect5" text="第 %n 节"/>
|
||||
<l:template name="section" text="第 %n 节"/>
|
||||
<l:template name="table" text="表 %n"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="xref-number-and-title">
|
||||
<l:template name="appendix" text="附录 %n, %t"/>
|
||||
<l:template name="bridgehead" text="第 %n 节 “%t”"/>
|
||||
<l:template name="chapter" text="第 %n 章 %t"/>
|
||||
<l:template name="equation" text="公式 %n “%t”"/>
|
||||
<l:template name="example" text="例 %n “%t”"/>
|
||||
<l:template name="figure" text="图 %n “%t”"/>
|
||||
<l:template name="part" text="第 %n 部分 “%t”"/>
|
||||
<l:template name="procedure" text="过程 %n, “%t”"/>
|
||||
<l:template name="productionset" text="Production %n, “%t”"/>
|
||||
<l:template name="qandadiv" text="质保 %n, “%t”"/>
|
||||
<l:template name="refsect1" text="“%t”一节"/>
|
||||
<l:template name="refsect2" text="“%t”一节"/>
|
||||
<l:template name="refsect3" text="“%t”一节"/>
|
||||
<l:template name="refsection" text="“%t”一节"/>
|
||||
<l:template name="sect1" text="第 %n 节 “%t”"/>
|
||||
<l:template name="sect2" text="第 %n 节 “%t”"/>
|
||||
<l:template name="sect3" text="第 %n 节 “%t”"/>
|
||||
<l:template name="sect4" text="第 %n 节 “%t”"/>
|
||||
<l:template name="sect5" text="第 %n 节 “%t”"/>
|
||||
<l:template name="section" text="第 %n 节 “%t”"/>
|
||||
<l:template name="simplesect" text="“%t”一节"/>
|
||||
<l:template name="table" text="表 %n “%t”"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="authorgroup">
|
||||
<l:template name="sep" text="、"/>
|
||||
<l:template name="sep2" text="和"/>
|
||||
<l:template name="seplast" text="和"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="glossary">
|
||||
<l:template name="see" text="见"/>
|
||||
<l:template name="seealso" text="参见"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="msgset">
|
||||
<l:template name="MsgAud" text="受众:"/>
|
||||
<l:template name="MsgLevel" text="级别:"/>
|
||||
<l:template name="MsgOrig" text="出处:"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime">
|
||||
<l:template name="format" text="Y-m-d"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-full">
|
||||
<l:template name="January" text="一月"/>
|
||||
<l:template name="February" text="二月"/>
|
||||
<l:template name="March" text="三月"/>
|
||||
<l:template name="April" text="四月"/>
|
||||
<l:template name="May" text="五月"/>
|
||||
<l:template name="June" text="六月"/>
|
||||
<l:template name="July" text="七月"/>
|
||||
<l:template name="August" text="八月"/>
|
||||
<l:template name="September" text="九月"/>
|
||||
<l:template name="October" text="十月"/>
|
||||
<l:template name="November" text="十一月"/>
|
||||
<l:template name="December" text="十二月"/>
|
||||
<l:template name="Monday" text="星期一"/>
|
||||
<l:template name="Tuesday" text="星期二"/>
|
||||
<l:template name="Wednesday" text="星期三"/>
|
||||
<l:template name="Thursday" text="星期四"/>
|
||||
<l:template name="Friday" text="星期五"/>
|
||||
<l:template name="Saturday" text="星期六"/>
|
||||
<l:template name="Sunday" text="星期日"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="datetime-abbrev">
|
||||
<l:template name="Jan" text="一月"/>
|
||||
<l:template name="Feb" text="二月"/>
|
||||
<l:template name="Mar" text="三月"/>
|
||||
<l:template name="Apr" text="四月"/>
|
||||
<l:template name="May" text="五月"/>
|
||||
<l:template name="Jun" text="六月"/>
|
||||
<l:template name="Jul" text="七月"/>
|
||||
<l:template name="Aug" text="八月"/>
|
||||
<l:template name="Sep" text="九月"/>
|
||||
<l:template name="Oct" text="十月"/>
|
||||
<l:template name="Nov" text="十一月"/>
|
||||
<l:template name="Dec" text="十二月"/>
|
||||
<l:template name="Mon" text="周一"/>
|
||||
<l:template name="Tue" text="周二"/>
|
||||
<l:template name="Wed" text="周三"/>
|
||||
<l:template name="Thu" text="周四"/>
|
||||
<l:template name="Fri" text="周五"/>
|
||||
<l:template name="Sat" text="周六"/>
|
||||
<l:template name="Sun" text="周日"/>
|
||||
</l:context>
|
||||
|
||||
<l:context name="htmlhelp">
|
||||
<l:template name="langcode" text="0x0804 Chinese (CHINA)"/>
|
||||
</l:context>
|
||||
|
||||
<l:letters>
|
||||
<l:l i="-1"/>
|
||||
<l:l i="0">其它</l:l>
|
||||
<l:l i="10">A</l:l>
|
||||
<l:l i="10">a</l:l>
|
||||
<l:l i="20">B</l:l>
|
||||
<l:l i="20">b</l:l>
|
||||
<l:l i="30">C</l:l>
|
||||
<l:l i="30">c</l:l>
|
||||
<l:l i="40">D</l:l>
|
||||
<l:l i="40">d</l:l>
|
||||
<l:l i="50">E</l:l>
|
||||
<l:l i="50">e</l:l>
|
||||
<l:l i="60">F</l:l>
|
||||
<l:l i="60">f</l:l>
|
||||
<l:l i="70">G</l:l>
|
||||
<l:l i="70">g</l:l>
|
||||
<l:l i="80">H</l:l>
|
||||
<l:l i="80">h</l:l>
|
||||
<l:l i="90">I</l:l>
|
||||
<l:l i="90">i</l:l>
|
||||
<l:l i="100">J</l:l>
|
||||
<l:l i="100">j</l:l>
|
||||
<l:l i="110">K</l:l>
|
||||
<l:l i="110">k</l:l>
|
||||
<l:l i="120">L</l:l>
|
||||
<l:l i="120">l</l:l>
|
||||
<l:l i="130">M</l:l>
|
||||
<l:l i="130">m</l:l>
|
||||
<l:l i="140">N</l:l>
|
||||
<l:l i="140">n</l:l>
|
||||
<l:l i="150">O</l:l>
|
||||
<l:l i="150">o</l:l>
|
||||
<l:l i="160">P</l:l>
|
||||
<l:l i="160">p</l:l>
|
||||
<l:l i="170">Q</l:l>
|
||||
<l:l i="170">q</l:l>
|
||||
<l:l i="180">R</l:l>
|
||||
<l:l i="180">r</l:l>
|
||||
<l:l i="190">S</l:l>
|
||||
<l:l i="190">s</l:l>
|
||||
<l:l i="200">T</l:l>
|
||||
<l:l i="200">t</l:l>
|
||||
<l:l i="210">U</l:l>
|
||||
<l:l i="210">u</l:l>
|
||||
<l:l i="220">V</l:l>
|
||||
<l:l i="220">v</l:l>
|
||||
<l:l i="230">W</l:l>
|
||||
<l:l i="230">w</l:l>
|
||||
<l:l i="240">X</l:l>
|
||||
<l:l i="240">x</l:l>
|
||||
<l:l i="250">Y</l:l>
|
||||
<l:l i="250">y</l:l>
|
||||
<l:l i="260">Z</l:l>
|
||||
<l:l i="260">z</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,130 +0,0 @@
|
|||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: admon.xsl 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<xsl:template match="note|important|warning|caution|tip">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$admon.graphics != 0">
|
||||
<xsl:call-template name="graphical.admonition"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="nongraphical.admonition"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="admon.graphic.width">
|
||||
<xsl:param name="node" select="."/>
|
||||
<xsl:text>36pt</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="admon.graphic">
|
||||
<xsl:param name="node" select="."/>
|
||||
|
||||
<xsl:variable name="filename">
|
||||
<xsl:value-of select="$admon.graphics.path"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="name($node)='note'">note</xsl:when>
|
||||
<xsl:when test="name($node)='warning'">warning</xsl:when>
|
||||
<xsl:when test="name($node)='caution'">caution</xsl:when>
|
||||
<xsl:when test="name($node)='tip'">tip</xsl:when>
|
||||
<xsl:when test="name($node)='important'">important</xsl:when>
|
||||
<xsl:otherwise>note</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<xsl:value-of select="$admon.graphics.extension"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$passivetex.extensions != 0
|
||||
or $fop.extensions != 0
|
||||
or $arbortext.extensions != 0">
|
||||
<xsl:value-of select="$filename"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:text>url(</xsl:text>
|
||||
<xsl:value-of select="$filename"/>
|
||||
<xsl:text>)</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="graphical.admonition">
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="graphic.width">
|
||||
<xsl:call-template name="admon.graphic.width"/>
|
||||
</xsl:variable>
|
||||
|
||||
<fo:block id="{$id}">
|
||||
<fo:list-block provisional-distance-between-starts="{$graphic.width} + 18pt"
|
||||
provisional-label-separation="18pt"
|
||||
xsl:use-attribute-sets="list.block.spacing">
|
||||
<fo:list-item>
|
||||
<fo:list-item-label end-indent="label-end()">
|
||||
<fo:block>
|
||||
<fo:external-graphic width="auto" height="auto"
|
||||
content-width="{$graphic.width}" >
|
||||
<xsl:attribute name="src">
|
||||
<xsl:call-template name="admon.graphic"/>
|
||||
</xsl:attribute>
|
||||
</fo:external-graphic>
|
||||
</fo:block>
|
||||
</fo:list-item-label>
|
||||
<fo:list-item-body start-indent="body-start()">
|
||||
<xsl:if test="$admon.textlabel != 0 or title">
|
||||
<fo:block xsl:use-attribute-sets="admonition.title.properties">
|
||||
<xsl:apply-templates select="." mode="object.title.markup"/>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
<fo:block xsl:use-attribute-sets="admonition.properties">
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</fo:list-item-body>
|
||||
</fo:list-item>
|
||||
</fo:list-block>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="nongraphical.admonition">
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<fo:block space-before.minimum="0.8em"
|
||||
space-before.optimum="1em"
|
||||
space-before.maximum="1.2em"
|
||||
start-indent="0.25in"
|
||||
end-indent="0.25in"
|
||||
id="{$id}">
|
||||
<xsl:if test="$admon.textlabel != 0 or title">
|
||||
<fo:block keep-with-next='always'
|
||||
xsl:use-attribute-sets="admonition.title.properties">
|
||||
<xsl:apply-templates select="." mode="object.title.markup"/>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
|
||||
<fo:block xsl:use-attribute-sets="admonition.properties">
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="note/title"></xsl:template>
|
||||
<xsl:template match="important/title"></xsl:template>
|
||||
<xsl:template match="warning/title"></xsl:template>
|
||||
<xsl:template match="caution/title"></xsl:template>
|
||||
<xsl:template match="tip/title"></xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
|
@ -1,75 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet [
|
||||
|
||||
<!ENTITY lowercase "'abcdefghijklmnopqrstuvwxyz'">
|
||||
<!ENTITY uppercase "'ABCDEFGHIJKLMNOPQRSTUVWXYZ'">
|
||||
|
||||
<!ENTITY primary 'normalize-space(concat(primary/@sortas, primary[not(@sortas)]))'>
|
||||
<!ENTITY secondary 'normalize-space(concat(secondary/@sortas, secondary[not(@sortas)]))'>
|
||||
<!ENTITY tertiary 'normalize-space(concat(tertiary/@sortas, tertiary[not(@sortas)]))'>
|
||||
|
||||
<!ENTITY sep '" "'>
|
||||
<!ENTITY scope 'count(ancestor::node()|$scope) = count(ancestor::node())'>
|
||||
]>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||
version="1.0"
|
||||
xmlns:func="http://exslt.org/functions"
|
||||
exclude-result-prefixes="i"
|
||||
xmlns:i="urn:cz-kosek:functions:index">
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: autoidx-ng.xsl 3890 2004-06-03 16:31:32Z steveebersole $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the DocBook XSL Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<xsl:include href="../common/autoidx-ng.xsl"/>
|
||||
|
||||
<!-- Modified original code is using index group codes instead of just first letter
|
||||
to gain better grouping -->
|
||||
<xsl:template name="generate-index">
|
||||
<xsl:param name="scope" select="(ancestor::book|/)[last()]"/>
|
||||
|
||||
<xsl:variable name="terms"
|
||||
select="//indexterm[count(.|key('group-code',
|
||||
i:group-index(&primary;))[&scope;][1]) = 1
|
||||
and not(@class = 'endofrange')]"/>
|
||||
|
||||
<xsl:apply-templates select="$terms" mode="index-div">
|
||||
<xsl:with-param name="scope" select="$scope"/>
|
||||
<xsl:sort select="i:group-index(&primary;)" data-type="number"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="indexterm" mode="index-div">
|
||||
<xsl:param name="scope" select="."/>
|
||||
|
||||
<xsl:variable name="key"
|
||||
select="i:group-index(&primary;)"/>
|
||||
|
||||
<xsl:if test="key('group-code', $key)[&scope;]
|
||||
[count(.|key('primary', &primary;)[&scope;][1]) = 1]">
|
||||
<fo:block>
|
||||
<xsl:call-template name="indexdiv.title">
|
||||
<xsl:with-param name="titlecontent">
|
||||
<xsl:value-of select="i:group-letter($key)"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
<fo:block>
|
||||
<xsl:apply-templates select="key('group-code', $key)[&scope;]
|
||||
[count(.|key('primary', &primary;)[&scope;][1])=1]"
|
||||
mode="index-primary">
|
||||
<xsl:sort select="translate(&primary;, &lowercase;, &uppercase;)"/>
|
||||
<xsl:with-param name="scope" select="$scope"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue