Improved quickref and man.
This commit is contained in:
parent
30b67f7362
commit
7c7330343e
|
@ -1,7 +1,8 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!--
|
<!--
|
||||||
For generating the `quickref.html` web page from output of
|
For generating the `quickref.html` web page from output of
|
||||||
`tidy -xml-config`
|
`tidy -xml-config`, which is used on our websites and can
|
||||||
|
be generated by end users.
|
||||||
|
|
||||||
(c) 2005 (W3C) MIT, ERCIM, Keio University
|
(c) 2005 (W3C) MIT, ERCIM, Keio University
|
||||||
See tidy.h for the copyright notice.
|
See tidy.h for the copyright notice.
|
||||||
|
@ -15,7 +16,7 @@
|
||||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||||
|
|
||||||
<xsl:output method="xml" indent="yes"
|
<xsl:output method="xml" indent="yes"
|
||||||
encoding="us-ascii"
|
encoding="UTF-8"
|
||||||
omit-xml-declaration="yes"
|
omit-xml-declaration="yes"
|
||||||
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
|
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||||
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" />
|
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" />
|
||||||
|
@ -23,25 +24,26 @@
|
||||||
<xsl:template match="/">
|
<xsl:template match="/">
|
||||||
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<title>HTML Tidy Configuration Options Quick Reference</title>
|
<title>HTML Tidy <xsl:value-of select="config/@version" /> Options Quick Reference</title>
|
||||||
<xsl:call-template name="Stylesheet" />
|
<xsl:call-template name="Stylesheet" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1 id="top">Quick Reference</h1>
|
<h1 id="top">HTML Tidy <xsl:value-of select="config/@version" /> Options Quick Reference</h1>
|
||||||
|
|
||||||
<h2>HTML Tidy Configuration Options</h2>
|
<h2 id="top">Option Groups</h2>
|
||||||
|
<ul class="option_groups">
|
||||||
<p>Version: <xsl:value-of select="config/@version" /></p>
|
<li><a href="#MarkupHeader">HTML, XHTML, XML</a></li>
|
||||||
|
<li><a href="#DiagnosticsHeader">Diagnostics</a></li>
|
||||||
<p><a class="h3" href="#MarkupHeader">HTML, XHTML, XML</a><br />
|
<li><a href="#PrettyPrintHeader">Pretty Print</a></li>
|
||||||
<a class="h3" href="#DiagnosticsHeader">Diagnostics</a><br />
|
<li><a href="#EncodingHeader">Character Encoding</a></li>
|
||||||
<a class="h3" href="#PrettyPrintHeader">Pretty Print</a><br />
|
<li><a href="#MiscellaneousHeader">Miscellaneous</a></li>
|
||||||
<a class="h3" href="#EncodingHeader">Character Encoding</a><br />
|
</ul>
|
||||||
<a class="h3" href="#MiscellaneousHeader">Miscellaneous</a></p>
|
|
||||||
|
|
||||||
|
<h2 id="top">Option Index</h2>
|
||||||
<xsl:call-template name="link-section" />
|
<xsl:call-template name="link-section" />
|
||||||
|
|
||||||
|
<h2 id="top">Option Details</h2>
|
||||||
<xsl:call-template name="detail-section" />
|
<xsl:call-template name="detail-section" />
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
@ -52,13 +54,7 @@
|
||||||
<!-- Named Templates: -->
|
<!-- Named Templates: -->
|
||||||
|
|
||||||
<xsl:template name="link-section">
|
<xsl:template name="link-section">
|
||||||
<table summary="Tidy Options Quick Reference Header Section" border="0"
|
<table summary="Options Quick Reference Index Section" class="index_table">
|
||||||
cellpadding="3" cellspacing="0">
|
|
||||||
<colgroup>
|
|
||||||
<col width="33%" />
|
|
||||||
<col width="33%" />
|
|
||||||
<col width="33%" />
|
|
||||||
</colgroup>
|
|
||||||
<xsl:call-template name="links">
|
<xsl:call-template name="links">
|
||||||
<xsl:with-param name="class">markup</xsl:with-param>
|
<xsl:with-param name="class">markup</xsl:with-param>
|
||||||
<xsl:with-param name="header">HTML, XHTML, XML</xsl:with-param>
|
<xsl:with-param name="header">HTML, XHTML, XML</xsl:with-param>
|
||||||
|
@ -89,8 +85,7 @@
|
||||||
|
|
||||||
|
|
||||||
<xsl:template name="detail-section">
|
<xsl:template name="detail-section">
|
||||||
<table summary="Tidy Options Quick Reference Detail Section" border="0"
|
<table summary="Options Quick Reference Detail Section" class="detail_table">
|
||||||
cellpadding="3" cellspacing="0">
|
|
||||||
<xsl:call-template name="reference">
|
<xsl:call-template name="reference">
|
||||||
<xsl:with-param name="class">markup</xsl:with-param>
|
<xsl:with-param name="class">markup</xsl:with-param>
|
||||||
<xsl:with-param name="header">HTML, XHTML, XML</xsl:with-param>
|
<xsl:with-param name="header">HTML, XHTML, XML</xsl:with-param>
|
||||||
|
@ -124,12 +119,15 @@
|
||||||
<xsl:param name="class"/>
|
<xsl:param name="class"/>
|
||||||
<xsl:param name="header"/>
|
<xsl:param name="header"/>
|
||||||
<xsl:param name="headerID"/>
|
<xsl:param name="headerID"/>
|
||||||
<tr valign="bottom">
|
<thead>
|
||||||
<td class="h3" colspan="2" id="{$headerID}">
|
<tr class="header_category">
|
||||||
<xsl:value-of select="$header"/> Options</td>
|
<td colspan="3" id="{$headerID}">
|
||||||
<td valign="top"><a href="#top">Top</a></td>
|
<xsl:value-of select="$header"/> Options
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<xsl:call-template name="ClassHeaders" />
|
<xsl:call-template name="ClassHeaders" />
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
<xsl:for-each select="/config/option[@class=$class]">
|
<xsl:for-each select="/config/option[@class=$class]">
|
||||||
<xsl:sort select="name" order="ascending" />
|
<xsl:sort select="name" order="ascending" />
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -146,9 +144,7 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
<tr valign="bottom">
|
</tbody>
|
||||||
<td colspan="3"> </td>
|
|
||||||
</tr>
|
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
|
|
||||||
|
@ -157,266 +153,116 @@
|
||||||
<xsl:param name="header"/>
|
<xsl:param name="header"/>
|
||||||
<xsl:param name="headerID"/>
|
<xsl:param name="headerID"/>
|
||||||
|
|
||||||
<tr>
|
<thead>
|
||||||
<td> </td>
|
<tr class="header_category">
|
||||||
</tr>
|
<td colspan="2" id="{$headerID}">
|
||||||
<tr valign="bottom">
|
|
||||||
<td valign="top" colspan="2" class="h2" id="{$headerID}">
|
|
||||||
<xsl:value-of select="$header"/> Options Reference
|
<xsl:value-of select="$header"/> Options Reference
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
</thead>
|
||||||
<td> </td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<xsl:for-each select="/config/option[@class=$class]">
|
<xsl:for-each select="/config/option[@class=$class]">
|
||||||
<xsl:sort select="name" order="ascending" />
|
<xsl:sort select="name" order="ascending" />
|
||||||
<tr>
|
<thead>
|
||||||
<td class="tabletitle" valign="top" id="{name}">
|
<tr class="header_option_name">
|
||||||
|
<td colspan="2" id="{name}">
|
||||||
<xsl:value-of select="name"/>
|
<xsl:value-of select="name"/>
|
||||||
</td>
|
</td>
|
||||||
<td class="tabletitlelink" valign="top" align="right">
|
</tr>
|
||||||
<a href="#top">Top</a></td>
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>Type:</td>
|
||||||
|
<td><xsl:value-of select="type"/></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top">Type: <strong><xsl:value-of
|
<td>Default:</td>
|
||||||
select="type"/></strong><br />
|
<td>
|
||||||
|
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="string-length(default) > 0">
|
<xsl:when test="string-length(default) > 0">
|
||||||
Default: <strong><xsl:apply-templates select="default" /></strong>
|
<xsl:apply-templates select="default" />
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
Default: <strong>-</strong>
|
-
|
||||||
</xsl:otherwise>
|
|
||||||
</xsl:choose>
|
|
||||||
|
|
||||||
<xsl:choose>
|
|
||||||
<xsl:when test="string-length(example) > 0">
|
|
||||||
<br />Example: <strong><xsl:apply-templates
|
|
||||||
select="example"/></strong>
|
|
||||||
</xsl:when>
|
|
||||||
<xsl:otherwise>
|
|
||||||
<br />Example: <strong>-</strong>
|
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</td>
|
</td>
|
||||||
<td align="right" valign="top">
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Example</td>
|
||||||
|
<td>
|
||||||
|
<xsl:choose>
|
||||||
|
<xsl:when test="string-length(example) > 0">
|
||||||
|
<xsl:apply-templates select="example"/>
|
||||||
|
</xsl:when>
|
||||||
|
<xsl:otherwise>
|
||||||
|
-
|
||||||
|
</xsl:otherwise>
|
||||||
|
</xsl:choose>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>See also:</td>
|
||||||
|
<td>
|
||||||
<xsl:for-each select="seealso">
|
<xsl:for-each select="seealso">
|
||||||
<a href="#{.}"><xsl:apply-templates select="." /></a>
|
<a href="#{.}"><xsl:apply-templates select="." /></a>
|
||||||
<xsl:if test="position() != last()">
|
<xsl:if test="position() != last()">
|
||||||
<br />
|
<xsl:text>, </xsl:text>
|
||||||
</xsl:if>
|
</xsl:if>
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" class="qdescription"><xsl:apply-templates select="description"/></td>
|
<td></td>
|
||||||
</tr>
|
<td class="qdescription"><xsl:apply-templates select="description"/></td>
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td> </td>
|
|
||||||
</tr>
|
</tr>
|
||||||
|
</tbody>
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
<xsl:template name="ClassHeaders">
|
<xsl:template name="ClassHeaders">
|
||||||
<tr>
|
<tr class="header_column_labels" >
|
||||||
<td class="tabletitle">Option</td>
|
<td>Option</td>
|
||||||
<td class="tabletitle">Type</td>
|
<td>Type</td>
|
||||||
<td class="tabletitle">Default</td>
|
<td>Default</td>
|
||||||
</tr>
|
</tr>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
<xsl:template name="Stylesheet">
|
<xsl:template name="Stylesheet">
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* 1st Style ignored by Netscape */
|
|
||||||
td.dummy, font.dummy, .dummy, a:link.dummy, a:visited.dummy, a:active.dummy
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 16pt;
|
|
||||||
color: #336699;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: normal
|
|
||||||
}
|
|
||||||
|
|
||||||
|
/**************************************
|
||||||
|
BASIC STYLES
|
||||||
|
**************************************/
|
||||||
body
|
body
|
||||||
{
|
{
|
||||||
margin-left: 10%;
|
margin: 3em;
|
||||||
margin-right: 10%;
|
padding: 0;
|
||||||
font-family: sans-serif;
|
font-family: Helvetica, sans-serif;
|
||||||
background-color: #FFFFFF
|
font-size: 100%;
|
||||||
|
color: black;
|
||||||
|
background-color: cornsilk
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Blue TITLE */
|
a
|
||||||
td.title, font.title, .title, a:link.title, a:visited.title, a:active.title
|
|
||||||
{
|
{
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 16pt;
|
|
||||||
color: #336699;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: normal
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* BODY TEXT */
|
a:hover
|
||||||
td.text, font.text, .text, a:link.text, a:visited.text, a:active.text
|
|
||||||
{
|
{
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
text-decoration: underline;
|
||||||
font-size: 9pt;
|
|
||||||
color: #000000;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: normal
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* BOLD BODY TEXT */
|
a,
|
||||||
td.textbold, font.textbold, .textbold, a:link.textbold, a:visited.textbold, a:active.textbold
|
a:visited
|
||||||
{
|
{
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
color: blue;
|
||||||
font-size: 9pt;
|
|
||||||
color: #000000;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: bold
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* BOLD BODY TEXT LINK WITH UNDERLINE*/
|
/**************************************
|
||||||
td.textboldlink, font.textboldlink, .textboldlink, a:link.textboldlink, a:visited.textboldlink, a:active.textboldlink
|
MAKE BR FORMAT LIKE P
|
||||||
{
|
**************************************/
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 9pt;
|
|
||||||
color: #000000;
|
|
||||||
font-weight: bold
|
|
||||||
}
|
|
||||||
|
|
||||||
/* SMALL BODY TEXT */
|
|
||||||
td.smtext, font.smtext, .smtext, a:link.smtext, a:visited.smtext, a:active.smtext
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 8pt;
|
|
||||||
color: #000000;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: normal
|
|
||||||
}
|
|
||||||
|
|
||||||
/* SMALL BOLD BODY TEXT */
|
|
||||||
td.smtextbold, font.smtextbold, .smtextbold, a:link.smtextbold, a:visited.smtextbold, a:active.smtextbold
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 8pt;
|
|
||||||
color: #000000;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: bold
|
|
||||||
}
|
|
||||||
|
|
||||||
/* TITLES
|
|
||||||
td.title, font.title, .title, a:link.title, a:visited.title, a:active.title
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 12pt;
|
|
||||||
color: #CC3300;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: bold
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* SUBTITLES */
|
|
||||||
td.subtitle, font.subtitle, .subtitle, a:link.subtitle, a:visited.subtitle, a:active.subtitle
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 11pt;
|
|
||||||
color: #000000;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: bold
|
|
||||||
}
|
|
||||||
|
|
||||||
/* LEGAL TEXT */
|
|
||||||
td.legal, font.legal, .legal, a:link.legal, a:visited.legal, a:active.legal
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 8pt;
|
|
||||||
color: #000000;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: normal
|
|
||||||
}
|
|
||||||
|
|
||||||
td.legallink, font.legallink, .legallink, a:link.legallink, a:visited.legallink, a:active.legallink
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 8pt;
|
|
||||||
color: #CC3300;
|
|
||||||
font-weight: normal
|
|
||||||
}
|
|
||||||
|
|
||||||
/* RED TEXT */
|
|
||||||
td.textred, font.textred, .textred, a:link.textred, a:visited.textred, a:active.textred
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 10pt;
|
|
||||||
color: #CC3300;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: normal
|
|
||||||
}
|
|
||||||
|
|
||||||
/* RED TEXT BOLD*/
|
|
||||||
td.textredbold, font.textredbold, .textredbold, a:link.textredbold, a:visited.textredbold, a:active.textredbold
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 10pt;
|
|
||||||
color: #CC3300;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: bold
|
|
||||||
}
|
|
||||||
|
|
||||||
/* LINKS */
|
|
||||||
td.link, font.link, .link, a:link.link, a:visited.link, a:active.link
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 10pt;
|
|
||||||
color: #3366CC;
|
|
||||||
font-weight: normal
|
|
||||||
}
|
|
||||||
|
|
||||||
td.tabletitlelink, font.tabletitlelink, .tabletitlelink, a:link.tabletitlelink, a:visited.tabletitlelink, a:active.tabletitlelink
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 10pt;
|
|
||||||
background-color: #e9e9d3;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* TABLE TITLES */
|
|
||||||
td.tabletitle, font.tabletitle, .tabletitle, a:link.tabletitle, a:visited.tabletitle, a:active.tabletitle
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 10pt;
|
|
||||||
color: #336699;
|
|
||||||
background-color: #e9e9d3;
|
|
||||||
/* text-decoration: none; */
|
|
||||||
font-weight: bold
|
|
||||||
}
|
|
||||||
|
|
||||||
/* TABLE CELL */
|
|
||||||
td.cell, tr.cell, font.cell, .cell, a:link.cell, a:visited.cell, a:active.cell
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 12pt;
|
|
||||||
color: #000000;
|
|
||||||
font-weight: normal;
|
|
||||||
/* background-color: #e9e9d3 */
|
|
||||||
background-color: #f5f5f5
|
|
||||||
}
|
|
||||||
|
|
||||||
/* SHADED TABLE CELL */
|
|
||||||
td.shaded, tr.shaded, font.shaded, .shaded, a:link.shaded, a:visited.shaded, a:active.shaded
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 12pt;
|
|
||||||
color: #000000;
|
|
||||||
font-weight: normal;
|
|
||||||
background-color: #f5f5f5
|
|
||||||
}
|
|
||||||
|
|
||||||
/* BR IN TABLE DATA DESCRIPTION */
|
|
||||||
td.qdescription br
|
td.qdescription br
|
||||||
{
|
{
|
||||||
content: " ";
|
content: " ";
|
||||||
|
@ -424,150 +270,96 @@
|
||||||
margin: 10px 0;
|
margin: 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* GLOSSARY TERM */
|
/**************************************
|
||||||
td.term, font.term, .term, a:link.term, a:visited.term, a:active.term
|
OPTION GROUP INDEX
|
||||||
|
**************************************/
|
||||||
|
ul.option_groups
|
||||||
{
|
{
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
list-style-type: square;
|
||||||
font-size: 10pt;
|
|
||||||
font-style: normal;
|
|
||||||
color: #000000;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: normal
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ELEMENT TAGS */
|
ul.option_groups li
|
||||||
ul
|
|
||||||
{
|
{
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
line-height: 150%;
|
||||||
font-size: 10pt;
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: normal
|
|
||||||
}
|
|
||||||
li
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
|
||||||
font-size: 10pt;
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: normal
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a:link.h1, a:visited.h1, .h1
|
/**************************************
|
||||||
|
TABLES
|
||||||
|
**************************************/
|
||||||
|
table
|
||||||
{
|
{
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
border-collapse: collapse;
|
||||||
font-size: 12pt;
|
|
||||||
color: #0066CC
|
|
||||||
}
|
|
||||||
a:active.h1
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 12pt;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #0066CC
|
|
||||||
}
|
|
||||||
h1
|
|
||||||
{
|
|
||||||
margin-left: -8%;
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 12pt;
|
|
||||||
color: #0066CC
|
|
||||||
}
|
|
||||||
|
|
||||||
.h2
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 11pt;
|
|
||||||
/* font-weight: bold; */
|
|
||||||
color: #000000
|
|
||||||
}
|
|
||||||
|
|
||||||
h2
|
|
||||||
{
|
|
||||||
margin-left: -4%;
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 11pt;
|
|
||||||
/* font-weight: bold; */
|
|
||||||
color: #000000
|
|
||||||
}
|
|
||||||
|
|
||||||
A:link.h3, A:visited.h3, .h3
|
|
||||||
{ font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 10pt;
|
|
||||||
color: #000000;
|
|
||||||
font-weight: bold
|
|
||||||
}
|
|
||||||
|
|
||||||
A:active.h3
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 10pt;
|
|
||||||
color: #000000;
|
|
||||||
font-weight: bold
|
|
||||||
}
|
|
||||||
|
|
||||||
h3
|
|
||||||
{
|
|
||||||
margin-left: -4%;
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 10pt;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #000000
|
|
||||||
}
|
|
||||||
|
|
||||||
h4
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 9pt;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #000000
|
|
||||||
}
|
|
||||||
|
|
||||||
.code, A:active.code, A:link.code, A:visited.code
|
|
||||||
{
|
|
||||||
font-family: "Courier New", Courier, monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
.abstract
|
|
||||||
{
|
|
||||||
font-style : italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
p
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 10pt;
|
|
||||||
font-style: normal
|
|
||||||
}
|
}
|
||||||
|
|
||||||
td
|
td
|
||||||
{
|
{
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
padding: 5px;
|
||||||
font-size: 10pt;
|
|
||||||
font-style: normal
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* LINKS */
|
|
||||||
a:link, a:active
|
/* CATEGORY ROWS */
|
||||||
|
tr.header_category
|
||||||
{
|
{
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
background-color: burlywood;
|
||||||
font-size: 10pt;
|
line-height: 3.0em;
|
||||||
color: #3366CC;
|
font-size: 1.2em;
|
||||||
font-weight: normal
|
|
||||||
}
|
|
||||||
|
|
||||||
a:visited
|
|
||||||
{
|
|
||||||
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
|
||||||
font-size: 10pt;
|
|
||||||
color: #333366;
|
|
||||||
font-weight: normal
|
|
||||||
}
|
|
||||||
|
|
||||||
code {
|
|
||||||
/* use browser/user default for `font-family` */
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: brown;
|
|
||||||
background: transparent;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tr.header_category td,
|
||||||
|
table.detail_table .section_thead tr td
|
||||||
|
{
|
||||||
|
padding-left: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* INDEX HEADER ROW and DETAIL OPTION NAME */
|
||||||
|
tr.header_column_labels,
|
||||||
|
tr.header_option_name
|
||||||
|
{
|
||||||
|
background-color: antiquewhite;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.header_column_labels td
|
||||||
|
{
|
||||||
|
font-weight: bold;
|
||||||
|
padding-left: 1.0em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
tr.header_option_name td
|
||||||
|
{
|
||||||
|
font-size: 1.1em;
|
||||||
|
font-weight: bold;
|
||||||
|
padding-left: 1.0em;
|
||||||
|
line-height: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* INDEX TABLE APPEARANCE */
|
||||||
|
table.index_table tbody tr
|
||||||
|
{
|
||||||
|
line-height: 2em;
|
||||||
|
border-bottom: 1px solid burlywood;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.index_table tbody tr td:first-child
|
||||||
|
{
|
||||||
|
padding-left: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* DETAILS TABLE DETAILS */
|
||||||
|
table.detail_table tbody td:first-child
|
||||||
|
{
|
||||||
|
text-align: right;
|
||||||
|
font-weight: bold;
|
||||||
|
min-width: 6.0em;
|
||||||
|
}
|
||||||
|
|
||||||
|
code
|
||||||
|
{
|
||||||
|
color: darkgreen;
|
||||||
|
font-size: 1.3em;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
|
|
|
@ -258,7 +258,7 @@ For each option in one of the 5 categories/classes, provide its
|
||||||
.TP
|
.TP
|
||||||
\fB<xsl:apply-templates select="name" />\fR
|
\fB<xsl:apply-templates select="name" />\fR
|
||||||
|
|
||||||
Type: \fI<xsl:apply-templates select="type" />\fR
|
Type: <xsl:apply-templates select="type" />
|
||||||
.br
|
.br
|
||||||
<xsl:call-template name="provide-default" />
|
<xsl:call-template name="provide-default" />
|
||||||
.br
|
.br
|
||||||
|
@ -298,11 +298,11 @@ doesn't exist, or it's empty, a single '-' is provided.
|
||||||
-->
|
-->
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="string-length(default) > 0 ">
|
<xsl:when test="string-length(default) > 0 ">
|
||||||
<xsl:text />Default: \fI<xsl:apply-templates
|
<xsl:text />Default: <xsl:apply-templates
|
||||||
select="default" />\fR<xsl:text />
|
select="default" /><xsl:text />
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<xsl:text />Default: \fI-\fR<xsl:text />
|
<xsl:text />Default: -<xsl:text />
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
@ -318,11 +318,11 @@ stylesheet-provided one. (Useful e.g. for `repeated-attributes`).
|
||||||
-->
|
-->
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="string-length(example) > 0">
|
<xsl:when test="string-length(example) > 0">
|
||||||
<xsl:text />Example: \fI<xsl:apply-templates
|
<xsl:text />Example: <xsl:apply-templates
|
||||||
select="example" />\fR<xsl:text />
|
select="example" /><xsl:text />
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<xsl:text />Default: \fI-\fR<xsl:text />
|
<xsl:text />Default: -<xsl:text />
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
Loading…
Reference in a new issue