aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/luaexpat
Commit message (Collapse)AuthorAgeFilesLines
* Update to 1.2.0 and take maintainership.lx2011-06-093-7/+7
| | | | | PR: ports/157692 Submitted by: Andrew Lewis <freeghb@gmail.com> (current maintainer)
* - Fix on amd64amdmi32009-07-162-6/+16
| | | | | | | | - Respect CC - Check for lua version correctly PR: 136786, 136789 Submitted by: Andrew Lewis <freeghb@gmail.com> (maintainer)
* - Update maintainer e-mail addresspgollucci2009-07-141-2/+2
| | | | Requested by: private e-mail
* LuaExpat is a SAX XML parser based on the Expat library. SAX is the Simple APIpgollucci2009-07-146-0/+105
for XML and allows programs to: * process a XML document incrementally, thus being able to handle huge documents without memory penalties; * register handler functions which are called by the parser during the processing of the document, handling the document elements or text. With an event-based API like SAX the XML document can be fed to the parser in chunks, and the parsing begins as soon as the parser receives the first document chunk. LuaExpat reports parsing events (such as the start and end of elements) directly to the application through callbacks. The parsing of huge documents can benefit from this piecemeal operation. WWW: http://www.keplerproject.org/luaexpat PR: ports/136265 Submitted by: Andrew Lewis <dru at silenceisdefeat.net>