|
| |
| | The Expat XML Parser |
 | | LuaExpat is a wrapper around Expat for the Lua programming language. |  | | SAX2 Wrapper for using Expat in Delphi, based on |  | | The Simple C Expat Wrapper is a wrapper around Expat that provides a light-weight object model somewhat like a DOM. |
|
http://expat.sourceforge.net
|
|
| |
| | PHPBuilder.com, the best resource for PHP tutorials, templates, PHP manuals, content management systems, scripts, ... |
 | | XML is a subset of SGML and is not a markup language in itself but allows the author to define their own markup language where it is best suited for representing hierachical data. |  | | XML is a W3C standard that is open, language neutral, API-neutral, streamable, textual, human-readable and is a way of bringing structured data to the web. |  | | The XML parsing functions are really wrappers around the expat parser which is a SAX parser, which means Simple API for XML. |
|
http://www.phpbuilder.com/columns/justin20000428.php3
|
|
| |
| | XML::Parser::Expat - phpMan |
 | | This function is automaticly called by expat when it encounters an encoding it doesn't know about. |  | | The value of ErrorContext should be the number of lines to show on either side of the line in which the error occurred. |  | | Other encodings may be used if they have encoding maps in one of the directories in the @Encoding_Path list. |
|
http://www.chedong.com/phpMan.php/man/XML::Parser::Expat
|
|
| |
| | WEX : An example on using the expat XML-parser |
 | | Add the directory (the subfolder Source\lib where expat is installed) you find the expat.h header in the Include directories. |  | | You register callback functions with the parser and then you feed the parser with input. |  | | Add an #include "expat.h" statement to the sourcefile where you want to use the expat parser. |
|
http://users.skynet.be/saw/WTL_Expat.htm
|
|
| |
| | XMLPPM: XML-Conscious PPM Compression |
 | | XMLPPM is based on the expat XML parser library for C and Bill Teahan's C implementation of the PPMD+ algorithms. |  | | XML is an "up-and-coming", possibly somewhat over-hyped standard for structured data files. |  | | XML is not a specific markup language like HTML, but instead is a meta-language for defining languages like HTML. |
|
http://www.cs.cornell.edu/People/jcheney/xmlppm/xmlppm.html
|
|
| |
| | Expat XML Parser |
 | | One pitfall that novice Expat users are likely to fall into is that although Expat may accept input in various encodings, the strings that it passes to the handlers are always encoded in UTF-8 or UTF-16 (depending on how Expat was compiled). |  | | As we saw in the example in the overview, the first step in parsing an XML document with Expat is to create a parser object. |  | | of NULL, identifying the feature-test macros Expat was compiled with. |
|
http://guinness.cs.stevens-tech.edu/packages/expat/reference.html
|
|
| |
| | SSAX vs. Expat |
 | | Some XML performance benchmarks [ Parser-benchmark ] show that even the fastest Java XML parser (XP) is slower than Expat by an order of magnitude; Perl and Python parsers that are based on Expat [sic!] are slower than Expat by a factor of 20-25 (for large files). |  | | The reason is the cost of invoking of Perl/Python callbacks from the Expat code and the related cost of translating strings and other data across the language barrier. |  | | The parser is specifically optimized for such a scenario, because Expat uses shared substrings as much as possible. |
|
http://okmij.org/ftp/Scheme/SSAX-benchmark-1.html
|
|
| |
| | [XML-SIG] Proposed Expat API changes |
 | | This change allows us to extend the number of possible return values in the future; the documented API in Expat 1.95 through 1.95.4 really only defines a boolean interpretation of these return values, but only the two specific values, now named by XML_Status enum names, were actually used. |  | | Parsing the input which has already been passed into Expat should be continued using XML_ResumeParser(). |  | | This would be a programming error in the revised API, but not the old API. |
|
http://mail.python.org/pipermail/xml-sig/2002-August/008223.html
|
|
| |
| | Perl-XML Frequently Asked Questions |
 | | Programmers new to XML may find it easier to get started with a tree based parser - with one method call your document is parsed and available to your code. |  | | There are dozens of other examples of existing Perl modules which work with XML data in domain-specific formats and allow you to get on with the job of using that data. |  | | After all, XML is text and Perl is a great language for working with text. |
|
http://perl-xml.sourceforge.net/faq
|
|
| |
| | Mixp (Guile interface to Expat) manual |
 | | For more information about the Expat interface and handlers, See section 2 Expat interface. |  | | Mixp is a Scheme interface to James Clark's expat library. |  | | The following function is a part of the expat interface, but it was not implemented. |
|
http://www.thbz.org/mixp/mixp.html
|
|
| |
| | expat XML parser |
 | | In the meantime, I am in the process of documenting the expat API -- it's slow going and I have a lot to do, so it's not done yet. |  | | There is sketchy usage information in the header files, and there is a sample program which prints an indented tag structure. |  | | Under Windows, the parser and tokenizer are wrapped up in two DLLs; under Unix, you could probably make a.so or something, but it's just as quick to link statically. |
|
http://www.vivtek.com/expat.html
|
|
| |
| | SXP |
 | | XML files are easy to view and easy to edit with a simple text editor - anything from Notepad to emacs will do. |  | | XML files are open - anyone can read your XML files, process them, convert them with a XML parser or a few lines of Perl code. |  | | Disk space is ultra-cheap today, so the overhead of XML compared to binary files can be safely ignored in most cases. |
|
http://sxp.sourceforge.net
|
|
| |
| | XML Tools 2 Scripting Addition |
 | | XML Tools's parsing can generate a complete DOM-like structure or it can operate in a SAX-like event handling mode. |  | | This means that you no longer have to read the XML data that you want to parse yourself. |  | | Fixed a bug when parsing MacRoman XML files where the Apple and Euro symbols are not properly handled. |
|
http://www.latenightsw.com/freeware/XMLTools2
|
|
| |
| | PHP: XML Parser Functions - Manual |
 | |
If the XML parser encounters characters outside the range that its source encoding is capable of representing, it will return an error. |  | |
XML (eXtensible Markup Language) is a data format for structured document interchange on the Web. |  | | It illustrates how to use an external entity reference handler to include and parse other documents, as well as how PIs can be processed, and a way of determining "trust" for PIs containing code. |
|
http://www.php.net/manual/en/ref.xml.php
|
|
| |
| | XML -- How to use the expat XML parser |
 | | XMLParse takes the data plus the state saved from the last call, and calls a handler for each "XML event." I use that terminology because the basic structure of these programs is so much like the Windows "event-driven programming" paradigm. |  | | In the case of xmltools, the handlers do the work, so that parsing is done on the fly. |  | | [ XML index ] [ expat index ] [ xmltools example code ] |
|
http://www.vivtek.com/xml/using_expat.html
|
|
| |
| | Zend Technologies - Articles - Parsing XML with PHP |
 | | One way of understanding Expat's functionality is by example. |  | | This kind of parser analyzes a document in full, and provides it with an API to access the elements of the generated tree. |  | | I will be the first to admit that I love computing standards. |
|
http://www.zend.com/zend/art/parsing.php
|
|
| |
| | Welcome to XMLSoftware |
 | | XML for wxWindows is an open source, static C++ library that allows for XML integration into your software. |  | | This parser includes: a validating XML engine, XSL support (based on latest working draft) for display, transformations, and pattern matching, and support for XML Schemas. |  | | It is designed for space-efficiency, taking advantage of lazy evaluation to reduce memory requirements. |
|
http://www.xmlsoftware.com/parsers.html
|
|
| |
| | XML: New expat Release |
 | | The idea is that Perl can either expose this directly, or the glue code can always call it and make the markup available along with the structural information. |  | | The zip file includes both sources and Win32 binaries. |  | | I don't plan to add new features before the production release; I plan that any future beta releases will just fix bugs. |
|
http://www.oasis-open.org/cover/expat19980621.html
|
|
| |
| | RPM resource Expat.so |
 | | XML-Parser is a Perl extension interface to James Clark's XML parser, expat. |
|
http://rpm.rutgers.edu/rpm-html/Expat.so.html
|
|
| |
| | Expat XML Processor |
 | | The structure of this document is printed on standard output. |  | | In order to build this package you first also need an installation of James Clark's expat library that provides header file |  | | If no url is given, standard input is used. |
|
http://www.mozart-oz.org/mogul/doc/duchier-sav/expat
|
|
| |
| | 13.5 xml.parsers.expat -- Fast XML parsing using Expat |
 | | See section 13.5.2, ``ExpatError Exceptions,'' for more information on interpreting Expat errors. |  | | , if specified, must be a string naming the encoding used by the XML data. |  | | Returns an explanatory string for a given error number |
|
http://www.python.org/doc/current/lib/module-xml.parsers.expat.html
|
|
| |
| | expat |
 | | C++ Wrappers for the Expat XML Parser, an article by Tim Smith providing object-oriented wrappers for Expat. |  | | Project: Expat XML Parser: Summary Summary   Admin   Home Page   Tracker   Bugs   Patches   News   CVS   Files   This is James Clark's Expat XML parser... |  | | expat,parser Clark Cooper offers a detailed explanation of Expat, the C language library for XML parsing, and provides a directory of Expat functions. |
|
http://www.talkmix.de/expat-58214.html
|
|
| |
| | XML Resources |
 | | TREX, a new, simple schema language for XML |  | | A Java program XMLTest which generates canonical XML. |  | | Expat (XML Parser Toolkit), a library for XML parsing in C. This is the parser being used to add XML support to Netscape 5 and Perl. |
|
http://jclark.com/xml
|
|
| |
| | Expat |
 | | Return the Expat library version as a string (e.g. |  | | If encoding is not empty, it specifies a character encoding to use for the document. |  | | Expat is a library, written C, for parsing XML documents. |
|
http://www.xs4all.nl/~mmzeeman/ocaml/expat-doc/Expat.html
|
|
| |
| | Compiling Expat XML parser under Series 60... |
 | | did the expat port, and used the dll within another porgram to parse an xml file, ad it works fine under the emulator, but doesn't compile for the ARMI build as the parser uses static variables... |  | | I have been trying to do sao and am getting a load of errors.. |  | | I am a Software Architect with many years of experience in desiging the Symbian platforms. |
|
http://forum.newlc.com/viewtopic.php?p=1983
|
|
| |
| | OCaml Software |
 | | An ocaml wrapper for the Expat XML parsing library. |  | | OUnit is a unit test framework for OCaml. |  | | An XML document is parsed on the fly without needing to load the entire XML-Tree into memory. |
|
http://www.xs4all.nl/~mmzeeman/ocaml
|
|
| |
| | Expat |
 | | Expat Singapore The Information Resource For Expats In SingaporeExpat Singapore aims to provide you, the expatriate, with an updated and easy-to-use on-line reference with all the information you'll need on both relocating... |  | | Expat is freely available with source under a very liberal license (the MIT license). |  | | Expat (XML Parser Toolkit), a library for XML parsing in C. This is the parser being used to add XML support to Netscape 5 and Perl. |
|
http://www.cougarsearch.com/words/expat.html
|
|
| |
| | [No title] |
 | | The values may be one of several types, as defined by XMLRPC_VALUE_TYPE. |  | | xmlrpc-epi is an implementation of the xmlrpc protocol in C. It provides an easy to use API for developers to serialize RPC requests to and from XML. |  | | The user of this library will typically be implementing either an XMLRPC server, an XMLRPC client, or both. |
|
http://xmlrpc-epi.sourceforge.net
|
|
| |
| | Ruby |
 | | taint outputs when a input XML is tainted. |  | | Stream (any object have the 'gets' method) parsing |  | | This is a pure Ruby library for XML parsing. |
|
http://www.yoshidam.net/Ruby.html
|
|
| |
| | XML: New expat versions |
 | | From owner-xml-dev@ic.ac.uk Sat Nov 21 22:22:53 1998 Date: Sun, 22 Nov 1998 11:07:16 +0700 From: James Clark Subject: New expat versions To: "XML Developers' List" |  | | The only changes from 1.0 are bug fixes. |  | | [Note: See related information in the database entry, 'expat - XML parser in C'.] |
|
http://www.oasis-open.org/cover/expat19981122.html
|
|
| |
| | W3C Sample Code Library libwww Expat XML Parser Wrapper |
 | | W3C Sample Code Library libwww Expat XML Parser Wrapper |  | | As the code doesn't come as a separate library, I included it in the libwww CVS code base where I compile is as two libraries: |  | | We use James Clark's expat XML parser which is very neat indeed. |
|
http://www.w3.org/Library/src/HTXML.html
|
|
| |
| | expat |
 | | expat is also designed to support multi-language error messages. |  | | Applications are also given access to the raw markup of the document, for the applications that need lexical information. |  | | expat supports Unicode, and through a callback the application can extend the number of encodings supported. |
|
http://www.garshol.priv.no/download/xmltools/prod/expat.html
|
|
| |
| | CTDATA:James Clark Hands Off Expat XML Parser to New Management |
 | | Expat is a C language XML parser that is used as a component by a number of other products that interface with Mozilla, Perl, Python, and PHP. |  | | So much code depends upon Expat that some in the developer community feel that a commitment to produce a commercial quality shareable library needs to be made. |  | | XMLhack is reporting that James Clark, author of the XML parser called Expat, is handing off management of the project to a team of developers lead by Clark Cooper. |
|
http://www.ctdata.com/cm/2000/08/31/2331232.shtml
|
|
| |
| | expat |
 | | Relative to expat 1.1, it adds support for parsing external DTDs and parameter entities. |  | | The current production version of expat 1.X can be downloaded from |  | | option will make documents that are not standalone cause an error (a document is considered standalone if either it is intrinsically standalone because it has no external subset and no references to parameter entities in the internal subset or it is declared as standalone in the XML declaration). |
|
http://www.jclark.com/xml/expat.html
|
|
| |
| | [No title] |
 | | And you need the source code of expat. |  | | Extract the archive of expat under this package. |  | | - History Aug 14, 1998 version 0.3.3 support expat 1.0 Aug 12, 1998 version 0.3.2 Aug 4, 1998 version 0.3.1 Jul 17, 1998 version 0.3 Jul 3, 1998 version 0.2 Jul 1, 1998 version 0.1 |
|
http://xml.coverpages.org/Rubyxmlparser-en9808.txt
|
|
| |
| | XML in Mozilla |
 | | Some of the technologies we are using (such as XML Link and RDF) are still going through the standards process. |  | | We are working on separating out the XML parser, Netlib, glue code and RDF module from the rest of Mozilla so that it can be used anywhere (e.g., in a server). |  | | This document provides an overview of the plans for XML in Mozilla. |
|
http://www.mozilla.org/rdf/doc/xml.html
|
|
| |
| | XML.org |
 | | Cocoon 1 (Java based content publishing system using XML, DOM, SAX) |  | | XML Processing with TRaX (Transformation API for XML) |  | | PHP developers: Fill your XML toolbox (essential tools and libraries for using XML with PHP) |
|
http://www.xml.org/xml/resources_focus_programming.shtml
|
|
| |
| | SourceForge.net: Project Info - Expat XML Parser |
 | | This is James Clark's Expat XML parser library in C. It is a stream oriented parser that requires setting handlers to deal with the structure that the parser discovers in the document. |  | | Operating System: OS Independent (Written in an interpreted language) |
|
http://sourceforge.net/projects/expat
|
|
| |
| | use Perl XML::SAX::Expat Released |
 | | The advantages of SAX over, say, a raw parser interface such as that of XML::Parser is that you get standard events no matter which parser you use, even if that parser isn't parsing XML. |  | | Part of the ongoing PerlSAX2 effort, it provides a SAX2 interface over Expat and can thus replace XML::Parser and XML::Parser::PerlSAX. |
|
http://use.perl.org/articles/01/11/19/1249213.shtml
|
|
| |
| | [Expat-discuss] xpat problem: Can not Install XML::Parser |
 | | Running install for module XML::Parser Running make for M/MS/MSERGEANT/XML-Parser-2.34.tar.gz Note (probably harmless): No library found for -lexpat Expat must be installed prior to building XML::Parser and I can't find it in the standard library directories. |  | | # locate expat /usr/local/include/expat.h /usr/local/lib/libexpat.a /usr/local/lib/libexpat.la /usr/local/lib/libexpat.so /usr/local/lib/libexpat.so.0 /usr/local/lib/libexpat.so.0.4.0 # cd /home/skidmore/.cpan/build/XML-Parser-2.34 # perl Makefile.PL EXPATLIBPATH=/usr/local/lib EXPATINCPATH=/usr/local/include Checking if your kit is complete... |  | | Below is a transcript of what I have done, but there is obviously something else necessary. |
|
http://mail.libexpat.org/pipermail/expat-discuss/2004-September/001553.html
|
|
| |
| | [No title] |
 | | expat-dev.lha dev/c 86K 150 Shared library to parse XML expat-ppc.lha dev/c 380K 48 Expat C library for parsing XML expat-1.95.2.lha dev/gg 171K 149 Expat, C library for parsing XML expat-src.lha dev/src 172K 150 Shared library to parse XML expat-usr.lha util/libs 39K 150 Shared library to parse XML |  | | Click archive name to download, description to view readme, or enter another search string. |
|
http://ftp.uni-paderborn.de/aminetbin/find?expat
|
|
| |
| | parsing xml using php/expat |
 | | I am able to parse the entire xml using expat and print using php. |  | | However, i am not able to maniplate the data inside the tags with variables. |
|
http://www.webmasterworld.com/forum88/1450.htm
|
|
| |
| | RPM resource libexpat.so.0 |
 | | Expat is an XML 1.0 parser written in C. SourceForge |
|
http://rpmfind.net/linux/rpm2html/search.php?query=libexpat.so.0&system=&arch=
|
|
|