2021-05-01 17:52:13 -04:00
|
|
|
/*
|
|
|
|
__ __ _
|
|
|
|
___\ \/ /_ __ __ _| |_
|
|
|
|
/ _ \\ /| '_ \ / _` | __|
|
|
|
|
| __// \| |_) | (_| | |_
|
|
|
|
\___/_/\_\ .__/ \__,_|\__|
|
|
|
|
|_| XML parser
|
|
|
|
|
|
|
|
Copyright (c) 2000 Clark Cooper <coopercc@users.sourceforge.net>
|
|
|
|
Copyright (c) 2000-2004 Fred L. Drake, Jr. <fdrake@users.sourceforge.net>
|
|
|
|
Licensed under the MIT license:
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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 THE AUTHORS OR COPYRIGHT HOLDERS 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.
|
|
|
|
*/
|
|
|
|
|
2000-09-18 12:26:23 -04:00
|
|
|
body {
|
2003-10-20 10:40:44 -04:00
|
|
|
background-color: white;
|
|
|
|
border: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.corner {
|
|
|
|
width: 200px;
|
|
|
|
height: 80px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner {
|
|
|
|
background-color: rgb(110,139,61);
|
|
|
|
color: rgb(255,236,176);
|
|
|
|
padding-left: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner h1 {
|
|
|
|
font-size: 200%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
padding: 0em 2em 1em 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.releaseno {
|
|
|
|
background-color: rgb(110,139,61);
|
|
|
|
color: rgb(255,236,176);
|
|
|
|
padding-bottom: 0.3em;
|
|
|
|
padding-top: 0.5em;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
2000-09-18 12:26:23 -04:00
|
|
|
}
|
|
|
|
|
2002-08-26 13:27:29 -04:00
|
|
|
.noborder {
|
|
|
|
border-width: 0px;
|
|
|
|
}
|
|
|
|
|
2000-09-18 12:26:23 -04:00
|
|
|
.eg {
|
|
|
|
padding-left: 1em;
|
|
|
|
padding-top: .5em;
|
2002-08-08 16:37:11 -04:00
|
|
|
padding-bottom: .5em;
|
2000-09-18 12:26:23 -04:00
|
|
|
border: solid thin;
|
|
|
|
margin: 1em 0;
|
|
|
|
background-color: tan;
|
2002-08-08 16:37:11 -04:00
|
|
|
margin-left: 2em;
|
2000-09-18 12:26:23 -04:00
|
|
|
margin-right: 10%;
|
|
|
|
}
|
|
|
|
|
2004-07-22 23:28:09 -04:00
|
|
|
.pseudocode {
|
|
|
|
padding-left: 1em;
|
|
|
|
padding-top: .5em;
|
|
|
|
padding-bottom: .5em;
|
|
|
|
border: solid thin;
|
|
|
|
margin: 1em 0;
|
|
|
|
background-color: rgb(250,220,180);
|
|
|
|
margin-left: 2em;
|
|
|
|
margin-right: 10%;
|
|
|
|
}
|
|
|
|
|
2000-09-18 12:26:23 -04:00
|
|
|
.handler {
|
|
|
|
width: 100%;
|
|
|
|
border-top-width: thin;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.handler p {
|
2002-08-08 16:37:11 -04:00
|
|
|
margin-left: 2em;
|
2000-09-18 12:26:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.setter {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.signature {
|
|
|
|
color: navy;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fcndec {
|
|
|
|
width: 100%;
|
|
|
|
border-top-width: thin;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fcndef {
|
2002-08-08 16:37:11 -04:00
|
|
|
margin-left: 2em;
|
2000-09-18 12:26:23 -04:00
|
|
|
margin-bottom: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
dd {
|
2000-12-20 17:30:54 -05:00
|
|
|
margin-bottom: 2em;
|
|
|
|
}
|
2003-10-07 23:32:25 -04:00
|
|
|
|
|
|
|
.cpp-symbols dt {
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
.cpp-symbols dd {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|