Commit 5c7f517b authored by Davis King's avatar Davis King

Removed unneeded leading white space characters so that the resulting

HTML pages are a little smaller.
parent bc189464
...@@ -47,238 +47,238 @@ ...@@ -47,238 +47,238 @@
<xsl:template match="/doc"> <xsl:template match="/doc">
<html> <html>
<head> <head>
<!-- Verify with Google --> <!-- Verify with Google -->
<meta name="verify-v1" content="{$google_verify_id}" /> <meta name="verify-v1" content="{$google_verify_id}" />
<meta name="google-site-verification" content="{$google_verify_id2}" /> <meta name="google-site-verification" content="{$google_verify_id2}" />
<title> <title>
<xsl:value-of select="$project_name"/> <xsl:value-of select="$project_name"/>
<xsl:if test="title"> <xsl:if test="title">
- <xsl:value-of select="title" /> - <xsl:value-of select="title" />
</xsl:if> </xsl:if>
</title> </title>
<xsl:if test="$is_chm != 'true'"> <xsl:if test="$is_chm != 'true'">
<!-- Piwik --> <!-- Piwik -->
<script type="text/javascript"> <script type="text/javascript">
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/dclib/" : "http://apps.sourceforge.net/piwik/dclib/"); var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/dclib/" : "http://apps.sourceforge.net/piwik/dclib/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E")); document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
</script><script type="text/javascript"> </script><script type="text/javascript">
piwik_action_name = ''; piwik_action_name = '';
piwik_idsite = 1; piwik_idsite = 1;
piwik_url = pkBaseURL + "piwik.php"; piwik_url = pkBaseURL + "piwik.php";
piwik_log(piwik_action_name, piwik_idsite, piwik_url); piwik_log(piwik_action_name, piwik_idsite, piwik_url);
</script> </script>
<object><noscript><p><img src="http://apps.sourceforge.net/piwik/dclib/piwik.php?idsite=1" alt="piwik"/></p></noscript></object> <object><noscript><p><img src="http://apps.sourceforge.net/piwik/dclib/piwik.php?idsite=1" alt="piwik"/></p></noscript></object>
<!-- End Piwik Tag --> <!-- End Piwik Tag -->
</xsl:if> </xsl:if>
<!-- [client side code for collapsing and unfolding branches] --> <!-- [client side code for collapsing and unfolding branches] -->
<script language="JavaScript"> <script language="JavaScript">
// --------------------------------------------- // ---------------------------------------------
// --- Name: Easy DHTML Treeview -- // --- Name: Easy DHTML Treeview --
// --- Author: D.D. de Kerf -- // --- Author: D.D. de Kerf --
// --- Version: 0.2 Date: 13-6-2001 -- // --- Version: 0.2 Date: 13-6-2001 --
// --------------------------------------------- // ---------------------------------------------
function Toggle(node) function Toggle(node)
{
// Unfold the branch if it isn't visible
var next_node = node.nextSibling;
if (next_node.style.display == 'none')
{
// Change the image (if there is an image)
if (node.childNodes.length > 0)
{
if (node.childNodes.length > 0)
{
if (node.childNodes.item(0).nodeName == "IMG")
{ {
// Unfold the branch if it isn't visible node.childNodes.item(0).src = "minus.gif";
var next_node = node.nextSibling;
if (next_node.style.display == 'none')
{
// Change the image (if there is an image)
if (node.childNodes.length > 0)
{
if (node.childNodes.length > 0)
{
if (node.childNodes.item(0).nodeName == "IMG")
{
node.childNodes.item(0).src = "minus.gif";
}
}
}
next_node.style.display = 'block';
}
// Collapse the branch if it IS visible
else
{
// Change the image (if there is an image)
if (node.childNodes.length > 0)
{
if (node.childNodes.length > 0)
{
if (node.childNodes.item(0).nodeName == "IMG")
{
node.childNodes.item(0).src = "plus.gif";
}
}
}
next_node.style.display = 'none';
}
} }
function BigToggle(node) }
}
next_node.style.display = 'block';
}
// Collapse the branch if it IS visible
else
{
// Change the image (if there is an image)
if (node.childNodes.length > 0)
{
if (node.childNodes.length > 0)
{
if (node.childNodes.item(0).nodeName == "IMG")
{ {
// Unfold the branch if it isn't visible node.childNodes.item(0).src = "plus.gif";
var next_node = node.nextSibling;
if (next_node.style.display == 'none')
{
// Change the image (if there is an image)
if (node.childNodes.length > 0)
{
if (node.childNodes.length > 0)
{
if (node.childNodes.item(0).nodeName == "IMG")
{
node.childNodes.item(0).src = "bigminus.gif";
}
}
}
next_node.style.display = 'block';
}
// Collapse the branch if it IS visible
else
{
// Change the image (if there is an image)
if (node.childNodes.length > 0)
{
if (node.childNodes.length > 0)
{
if (node.childNodes.item(0).nodeName == "IMG")
{
node.childNodes.item(0).src = "bigplus.gif";
}
}
}
next_node.style.display = 'none';
}
} }
</script> }
}
<style type="text/css">
body {margin:0px;} next_node.style.display = 'none';
pre {margin:0px;} }
ul.tree li { list-style: none; margin-left:10px;} }
ul.tree { margin:0px; padding:0px; margin-left:5px; font-size:0.95em; } function BigToggle(node)
ul.tree li ul { margin-left:10px; padding:0px; } {
// Unfold the branch if it isn't visible
div#component { var next_node = node.nextSibling;
background-color:white; if (next_node.style.display == 'none')
border: 2px solid rgb(102,102,102); {
text-align:left; // Change the image (if there is an image)
margin-top: 1.5em; if (node.childNodes.length > 0)
padding: 0.7em; {
} if (node.childNodes.length > 0)
{
div#question { if (node.childNodes.item(0).nodeName == "IMG")
background-color:white; {
border: 2px solid rgb(102,102,102); node.childNodes.item(0).src = "bigminus.gif";
text-align:left; }
margin-top: 1.5em; }
margin-bottom: 90%; }
padding: 0.7em;
} next_node.style.display = 'block';
}
div#function { // Collapse the branch if it IS visible
background-color:white; else
border: 2px solid rgb(102,102,255); {
text-align:left; // Change the image (if there is an image)
margin-top: 0.3em; if (node.childNodes.length > 0)
padding: 0.3em; {
} if (node.childNodes.length > 0)
{
div#class { if (node.childNodes.item(0).nodeName == "IMG")
background-color:white; {
border: 2px solid rgb(255,102,102); node.childNodes.item(0).src = "bigplus.gif";
text-align:left; }
margin-top: 0.3em; }
padding: 0.3em; }
}
next_node.style.display = 'none';
div#extension { }
background-color:#FDFDFD;
border: 1px solid rgb(102,102,102); }
text-align:left; </script>
margin-top: 1.0em;
padding: 0.7em; <style type="text/css">
} body {margin:0px;}
pre {margin:0px;}
div#logb {
text-align:left; ul.tree li { list-style: none; margin-left:10px;}
padding: 0.0em; ul.tree { margin:0px; padding:0px; margin-left:5px; font-size:0.95em; }
float: left; ul.tree li ul { margin-left:10px; padding:0px; }
background-color:#c0c0c0;
border: double ; div#component {
margin: 0.5em; background-color:white;
} border: 2px solid rgb(102,102,102);
text-align:left;
margin-top: 1.5em;
.code_box padding: 0.7em;
{ }
color: black;
margin: 1em 0.25in; div#question {
padding: 0.5em; background-color:white;
background: rgb(240,240,240); border: 2px solid rgb(102,102,102);
border-top: black dotted 1px; text-align:left;
border-left: black dotted 1px; margin-top: 1.5em;
border-right: black solid 2px; margin-bottom: 90%;
border-bottom: black solid 2px; padding: 0.7em;
} }
div#function {
background-color:white;
.bdotted {border-bottom: 1px dotted} border: 2px solid rgb(102,102,255);
.bdashed {border-bottom: 1px dashed} text-align:left;
.bsolid {border-bottom: 1px solid} margin-top: 0.3em;
.bdouble {border-bottom: 1px double} padding: 0.3em;
.bgroove {border-bottom: 1px groove} }
.bridge {border-bottom: 1px ridge}
.binset {border-bottom: 1px inset} div#class {
.boutset {border-bottom: 1px outset} background-color:white;
border: 2px solid rgb(255,102,102);
div#row1 { text-align:left;
background-color:#dfdfdf; margin-top: 0.3em;
} padding: 0.3em;
div#row2 { }
background-color:#f2f2f2;
} div#extension {
background-color:#FDFDFD;
div#typedefs { border: 1px solid rgb(102,102,102);
margin-left: 1.5em; text-align:left;
margin-top: 0.2em; margin-top: 1.0em;
border: 1px dotted; padding: 0.7em;
width: 52em; }
}
div#logb {
div#tdn { text-align:left;
width: 10em; padding: 0.0em;
} float: left;
background-color:#c0c0c0;
.fullhr { border: double ;
clear: both; margin: 0.5em;
} }
body {
text-align: center; .code_box
} {
color: black;
div#entire_page { margin: 1em 0.25in;
width:<xsl:value-of select="$main_width"/>; padding: 0.5em;
text-align: left; background: rgb(240,240,240);
margin-top: 0.4em; border-top: black dotted 1px;
margin-left: auto; border-left: black dotted 1px;
margin-right: auto; border-right: black solid 2px;
} border-bottom: black solid 2px;
</style> }
.bdotted {border-bottom: 1px dotted}
.bdashed {border-bottom: 1px dashed}
.bsolid {border-bottom: 1px solid}
.bdouble {border-bottom: 1px double}
.bgroove {border-bottom: 1px groove}
.bridge {border-bottom: 1px ridge}
.binset {border-bottom: 1px inset}
.boutset {border-bottom: 1px outset}
div#row1 {
background-color:#dfdfdf;
}
div#row2 {
background-color:#f2f2f2;
}
div#typedefs {
margin-left: 1.5em;
margin-top: 0.2em;
border: 1px dotted;
width: 52em;
}
div#tdn {
width: 10em;
}
.fullhr {
clear: both;
}
body {
text-align: center;
}
div#entire_page {
width:<xsl:value-of select="$main_width"/>;
text-align: left;
margin-top: 0.4em;
margin-left: auto;
margin-right: auto;
}
</style>
</head> </head>
<body bgcolor="{$background_color}"> <body bgcolor="{$background_color}">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment