[Expat-checkins] CVS: expat/doc reference.html,NONE,1.1 style.css,NONE,1.1

Clark Cooper coopercc@users.sourceforge.net
Mon, 18 Sep 2000 09:26:24 -0700


Update of /cvsroot/expat/expat/doc
In directory slayer.i.sourceforge.net:/tmp/cvs-serv17754/doc

Added Files:
	reference.html style.css 
Log Message:
These are the first check-ins for the libexpat task: create configuration
files and setup for building a shareable libexpat.


--- NEW FILE ---
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
                "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>

<!-- Copyright 1999,2000 Clark Cooper <coopercc@netheaven.com>
     All rights reserved.
     This is free software. You may distribute or modify according to
     the terms of the MIT/X License -->
  <title>Expat XML Parser</title>
  <meta name="author" content="Clark Cooper, coopercc@netheaven.com">
  <meta http-equiv="Content-Style-Type" content="text/css">
  <link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Expat XML Parser</h1>

<p>Expat is a library, written in C, for parsing XML documents. It's the
underlying XML parser for the open source Mozilla project, perl's
[...1152 lines suppressed...]

<div class="fcndec"><a name="XML_SetParamEntityParsing"><pre>
int
XML_SetParamEntityParsing(XML_Parser p,
                          enum XML_ParamEntityParsing code)
</pre></a></div>
<div class="fcndef">
This enables parsing of parameter entities, including the external
parameter entity that is the external DTD subset, according to
<code>code</code>.
The choices for <code>code</code> are:
<ul>
<li>XML_PARAM_ENTITY_PARSING_NEVER
<li>XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE
<li>XML_PARAM_ENTITY_PARSING_ALWAYS
</ul>
</div>

</body>
</html>

--- NEW FILE ---
body {
background-color: white
}

.eg {
  padding-left: 1em;
  padding-top: .5em;
  border: solid thin;
  margin: 1em 0;
  background-color: tan;
  margin-left: 5%;
  margin-right: 10%;
}

.handler {
  width: 100%;
  border-top-width: thin;  
  margin-left: 5%;
  margin-bottom: 1em;
}

.handler p {
  margin-left: 3%;
}

.setter {
  font-weight: bold;
}

.signature {
  color: navy;
}

.fcndec {
  width: 100%;
  border-top-width: thin;
  font-weight: bold;
}

.fcndef {
  margin-left: 5%;
  margin-bottom: 2em;
}

dd {
margin-bottom: 2em;
}