Lines Matching +full:- +full:- +full:disable +full:- +full:dtd +full:- +full:validation
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xht…
3 …s="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset…
4 TD {font-family: Verdana,Arial,Helvetica}
5 BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em}
6 H1 {font-family: Verdana,Arial,Helvetica}
7 H2 {font-family: Verdana,Arial,Helvetica}
8 H3 {font-family: Verdana,Arial,Helvetica}
9 A:link, A:visited, A:active { text-decoration: underline }
10 …-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%"…
17 … <p>libxml2 is released under the <a href="http://www.opensource.org/licenses/mit-license.html">MIT
23 made to libxml, but it would be graceful to send-back bug fixes and
28 <li><strong><span style="background-color: #FF0000">Do Not Use
34 safer way for end-users to use libxml.</p>
47 …xml and libxml2, and also <a href="http://rpmfind.net/linux/RPM/libxml-devel.html">libxml-devel</a>
48 and <a href="http://rpmfind.net/linux/RPM/libxml2-devel.html">libxml2-devel</a>
51 libxml2(-devel)</li>
62 <p>The most generic solution is to re-fetch the latest src.rpm , and
64 <p><code>rpm --rebuild libxml(2)-xxx.src.rpm</code>.</p>
66 providing the shared libs and xmllint, and the other one, the -devel
73 <p><code>gunzip -c xxx.tar.gz | tar xvf -</code></p>
74 <p><code>cd libxml-xxxx</code></p>
75 <p><code>./configure --help</code></p>
90 <li><a href="http://www.info-zip.org/pub/infozip/zlib/">libz</a> : a
106 in make. Try using GNU-make instead.</p>
112 <p><code>./autogen.sh --prefix=/usr --disable-shared</code></p>
114 <li><em>I have troubles when running make tests with gcc-3.0</em>
115 <p>It seems the initial release of gcc-3.0 has a problem with the
123 <code>xml2-config</code> which is installed as part of libxml2 usual
125 <p><code>xml2-config --cflags</code></p>
127 <p><code>xml2-config --libs</code></p>
130 <p><code>CFLAGS=`xml2-config --cflags`</code></p>
131 <p><code>LIBS=`xml2-config --libs`</code></p>
143 <li>configure the library using the "<code>--prefix</code>" switch,
146 <p><code>./configure --prefix /home/user/myxml/xmlinst</code> {other
166 <p><code>gcc `xml2-config --cflags --libs` -o test test.c</code></p>
168 /home/user/myxml/xmlinst/bin</code> at the beginning, the xml2-config
187 …of the content of your document. See <a href="http://xmlsoft.org/html/libxml-parser.html#xmlKeepBl…
188 … ()</a> and <a href="http://xmlsoft.org/html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile
206 pnode=pxmlDoc->children->children;</pre>
208 <pre>pnode=pxmlDoc->children->children->next;</pre>
215 …to forget. There is a function <a href="http://xmlsoft.org/html/libxml-parser.html">xmlKeepBlanksD…
218 mixed-content in the document.</p>
231 libxml(-devel) >= 1.8.8 or libxml2(-devel) >= 2.1.0</p>
250 <li>check more deeply the <a href="html/libxml-lib.html">existing
279 …using the API. Use the <a href="http://xmlsoft.org/html/libxml-valid.html#xmlValidateDtd">xmlValid…
280 function. It is also possible to simply add a DTD to an existing
283 xmlDtdPtr dtd = xmlParseDTD(NULL, filename_of_dtd); /* parse the DTD */
285 dtd->name = xmlStrDup((xmlChar*)"root_name"); /* use the given root */
287 doc->intSubset = dtd;
288 if (doc->children == NULL) xmlAddChild((xmlNodePtr)doc, (xmlNodePtr)dtd);
289 else xmlAddPrevSibling(doc->children, (xmlNodePtr)dtd);
293 <p>It is a null terminated sequence of utf-8 characters. And only utf-8!
294 You need to convert strings encoded in different ways to utf-8 before