padding-top: 0px;
margin-top: 0px;
}
+
+.screen, .programlisting { background-color: silver; padding: 4px; }
+.menuchoice, .guimenu, .guisubmenu, .guimenuitem { font-weight: bold; }
+.guibutton { background-color: silver; padding: 2px; }
<title>Schema jungle</title>
<para>Schemas for DocBook V5.0 are available in several formats at
-<link xl:href="FIXME: add link"/>. Only the RELAX NG schema is normative
+<link xl:href="http://www.oasis-open.org/docbook/xml/5.0b1/"/> (or the
+mirror at <link xl:href="http://docbook.org/xml/5.0b1/"/>).
+Only the RELAX NG schema is normative
and it is preferred over the other schema languages. However, for your
convenience there are also DTD and W3C XML Schema versions provided for DocBook
V5.0. But please note that neither DTDs nor XML schemas are able to
<variablelist>
<varlistentry>
<term>RELAX NG schema</term>
-<listitem><para><link xl:href="FIXME:"/></para></listitem>
+<listitem><para><link xl:href="http://www.oasis-open.org/docbook/xml/5.0b1/rng/docbook.rng"/></para></listitem>
</varlistentry>
<varlistentry>
<term>RELAX NG schema in compact syntax</term>
-<listitem><para><link xl:href="FIXME:"/></para></listitem>
+<listitem><para><link xl:href="http://www.oasis-open.org/docbook/xml/5.0b1/rng/docbook.rnc"/></para></listitem>
</varlistentry>
<varlistentry>
<term>DTD</term>
-<listitem><para><link xl:href="FIXME:"/></para></listitem>
+<listitem><para><link xl:href="http://www.oasis-open.org/docbook/xml/5.0b1/dtd/docbook.dtd"/></para></listitem>
</varlistentry>
<varlistentry>
<term>W3C XML Schema</term>
-<listitem><para><link xl:href="FIXME:"/></para></listitem>
+<listitem><para><link xl:href="http://www.oasis-open.org/docbook/xml/5.0b1/xsd/docbook.xsd"/></para></listitem>
</varlistentry>
</variablelist>
+<para>These schemas are also available from the mirror at
+<link xlink:href="http://docbook.org/xml/5.0b1/"/>.</para>
+
</section>
<section>
<xsl:template match="authorgroup" mode="howto-titlepage">
<h4>
- <xsl:text>Editor</xsl:text>
+ <xsl:text>Author</xsl:text>
<xsl:if test="count(author) > 1">s</xsl:if>
<xsl:text>:</xsl:text>
</h4>
- <dl class="editorlist">
+ <dl class="authorlist">
<xsl:apply-templates select="author" mode="howto-titlepage"/>
</dl>
</xsl:template>
</dt>
</xsl:template>
+<xsl:template match="tag[not(@class) or (@class='element')]
+ [not(@condition = 'nolink')]">
+ <xsl:variable name="baseUri">
+ <xsl:choose>
+ <xsl:when test="@condition = 'v4'">
+ <xsl:text>http://docbook.org/tdg/en/html/</xsl:text>
+ </xsl:when>
+ <xsl:otherwise>http://docbook.org/tdg5/en/html/</xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+
+ <a href="{$baseUri}{.}.html">
+ <xsl:apply-imports/>
+ </a>
+</xsl:template>
+
</xsl:stylesheet>