summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoopercc <coopercc>2000-09-29 15:47:38 +0000
committercoopercc <coopercc>2000-09-29 15:47:38 +0000
commit4799f765fc8f15d435deaedd016d664012b783a0 (patch)
treee4edd198018e6d0da7fa215d9b462932a8458e09
parent7db0dd50a4d2dc2dc177344623eebdcdfe09859b (diff)
downloadlibexpat-4799f765fc8f15d435deaedd016d664012b783a0.tar.gz
Add MANIFEST and remove expatfaq.htmlR_1_95_0
-rw-r--r--MANIFEST56
-rwxr-xr-xexpatfaq.html103
2 files changed, 56 insertions, 103 deletions
diff --git a/MANIFEST b/MANIFEST
new file mode 100644
index 0000000..8215f5c
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,56 @@
+Changes
+COPYING
+MANIFEST
+Makefile.in
+README
+aclocal.m4
+config.hin
+configure
+configure.in
+conftools/config.guess
+conftools/config.sub
+conftools/install-sh
+conftools/ltconfig
+conftools/ltmain.sh
+conftools/missing
+conftools/mkinstalldirs
+doc/reference.html
+doc/style.css
+examples/Makefile.in
+examples/outline.c
+lib/Makefile.in
+lib/ascii.h
+lib/asciitab.h
+lib/expat.h
+lib/iasciitab.h
+lib/latin1tab.h
+lib/nametab.h
+lib/utf8tab.h
+lib/xmlparse.c
+lib/xmlrole.c
+lib/xmlrole.h
+lib/xmltok.c
+lib/xmltok.h
+lib/xmltok_impl.c
+lib/xmltok_impl.h
+lib/xmltok_ns.c
+xmlwf/Makefile.in
+xmlwf/codepage.c
+xmlwf/codepage.h
+xmlwf/ct.c
+xmlwf/filemap.h
+xmlwf/readfilemap.c
+xmlwf/unixfilemap.c
+xmlwf/wfcheck.c
+xmlwf/wfcheck.h
+xmlwf/wfcheckmessage.c
+xmlwf/win32filemap.c
+xmlwf/xmlfile.c
+xmlwf/xmlfile.h
+xmlwf/xmlmime.c
+xmlwf/xmlmime.h
+xmlwf/xmltchar.h
+xmlwf/xmlurl.h
+xmlwf/xmlwf.c
+xmlwf/xmlwf.dsp
+xmlwf/xmlwin32url.cxx
diff --git a/expatfaq.html b/expatfaq.html
deleted file mode 100755
index 279ac49..0000000
--- a/expatfaq.html
+++ /dev/null
@@ -1,103 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
-"http://www.w3.org/TR/REC-html40/loose.dtd">
-
-<HTML>
-
-<TITLE>expat FAQ</TITLE>
-
-<BODY>
-
-<H1>Frequently Asked Questions about Expat</H1>
-
-<H4>Where can I get the latest version of expat?</H4>
-
-<p>The latest production version is always available from <a
-href="http://www.ThaiOpenSource.com/dist/expat"
->http://www.ThaiOpenSource.com/dist/expat</a>. If there is a test
-version, then it will be available from <a
-href="http://www.ThaiOpenSource.com/dist/expat/test"
->http://www.ThaiOpenSource.com/dist/expat/test</a>.</p>
-
-<H4>Where can I get help in using expat?</H4>
-
-<p>Try the xml-dev mailing list (subscribe by mailing to <a
-href="mailto:majordomo@xml.org&BODY=subscribe%20xml-dev">majordomo@xml.org</a>
-with the message <code>subscribe xml-dev</code>). Alternatively try
-the <a href="news:comp.text.xml">comp.text.xml</a> USENET
-newsgroup.</p>
-
-<H4>Where is expat's API documented?</H4>
-
-<p>In <code>xmlparse/xmlparse.h</code>. There's also an advanced,
-low-level API you can use which is documented in
-<code>xmltok/xmltok.h</code>.</p>
-
-<p>There's also an excellent <a
-href="http://www.xml.com/pub/1999/09/expat/index.html">article</a>
-about expat on XML.com by Clark Cooper.</p>
-
-<H4>Is there a simple example of using expat's API?</H4>
-
-<p>See <code>sample/elements.c</code></p>
-
-<H4>How can I get expat to deal with non-ASCII characters?</H4>
-
-<P>By default, expat assumes that documents are encoded in UTF-8. In
-UTF-8, ASCII characters are represented by a single byte as they would
-be in ASCII, but non-ASCII characters are represented by a sequence of
-two or more bytes all with the 8th bit set. The encoding most widely
-used for European languages is ISO 8859-1 which is not compatible with
-UTF-8. To use this encoding, expat must be told either by supplying
-an argument of <code>"iso-8859-1"</code> to
-<code>XML_ParserCreate</code>, or by starting the document with
-<code>&lt;?xml version="1.0" encoding="iso-8859-1"?&gt;</code>.</P>
-
-<H4>What encodings does expat support?</H4>
-
-<P>expat has built in support for the following encodings:</P>
-
-<ul>
-<li><code>utf-8</code></li>
-<li><code>utf-16</code></li>
-<li><code>iso-8859-1</code></li>
-<li><code>us-ascii</code></li>
-</ul>
-
-<P>Additional encodings can be supported by using
-<code>XML_SetUnknownEncodingHandler</code>.</P>
-
-<H4>How can I get expat to validate my XML documents?</H4>
-
-<p>You can't. expat is not a validating parser.</p>
-
-<H4>How can I get expat to read my DTD?</H4>
-
-<p>Compile with <code>-DXML_DTD</code> and call
-<code>XML_SetParamEntityParsing</code>.</p>
-
-<H4>How can I get expat to recover from errors?</H4>
-
-<p>You can't. All well-formedness errors stop processing. Note that
-the XML Recommendation does not permit conforming XML processors to
-continue normal processing after a fatal error.</p>
-
-<H4>How do I get at the characters between tags?</H4>
-
-<p>Use <code>XML_SetCharacterDataHandler</code>.</p>
-
-<H4>How can I minimize the size of expat?</H4>
-
-<p>Compile with <code>-DXML_MIN_SIZE</code>. With Visual C++, use the
-<code>Win32 MinSize</code> configuration: this creates an
-<code>xmlparse.dll</code> that does not require
-<code>xmltok.dll</code>.</p>
-
-<ADDRESS>
-
-<A HREF="mailto:jjc@ThaiOpenSource.com">James Clark</A>
-
-</ADDRESS>
-
-</BODY>
-
-</HTML>