• Home
  • Raw
  • Download

Lines Matching refs:XML

5 TinyXml is a simple, small, C++ XML parser that can be easily 
10 In brief, TinyXml parses an XML document, and builds from that a
13 XML stands for "eXtensible Markup Language." It allows you to create
15 documents for browsers, XML allows you to define any kind of document
17 organizer application. XML is a very structured and convenient format.
19 all be replaced with XML. One parser for everything.
23 http://www.w3.org/TR/2004/REC-xml-20040204/</a>. An intro to XML
27 There are different ways to access and interact with XML data.
28 TinyXml uses a Document Object Model (DOM), meaning the XML data is parsed
30 written to disk or another output stream. You can also construct an XML document from
43 compliant XML output. TinyXml should compile on any reasonably C++
53 (check out www.sourceforge.org, search for XML) that are much more fully
57 complete XML needs, TinyXml is not the parser for you.
116 TinyXml supports UTF-8 allowing to manipulate XML files in any language. TinyXml
148 For English users, using English XML, UTF-8 is the same as low-ASCII. You
158 handle all languages, at the same time, as long as the XML is encoded
171 The test file "utf8test.xml" is an XML containing English, Spanish, Russian,
173 "utf8test.gif" is a screen capture of the XML file, rendered in IE. Note that
194 These are recognized when the XML document is read, and translated to there
195 UTF-8 equivalents. For instance, text with the XML of:
202 and will be written back to the XML stream/file as an ampersand. Older versions
221 XML documents. For example, an XML document that contains 2 root elements
236 these may be somewhat slower. (Or may not.) Not tolerant of ill formed XML:
244 Reads XML from a stream, making it useful for network transmission. The tricky
245 part is knowing when the XML document is complete, since there will almost
246 certainly be other data in the stream. TinyXml will assume the XML data is
255 at least some XML parsers, will interpret this as "Hello_world". They condense white
256 space. Some XML parsers do not, and will leave it as "Hello____world". (Remember
265 before making any calls to Parse XML data, and I don't recommend changing it after
271 Where browsing an XML document in a robust way, it is important to check
473 XML, and there web pages contain huge amounts of information.
478 I also recommend "XML Pocket Reference" by Robert Eckstein and published by