XML Parse Lib 0.60 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News XML Parse Lib 0.60 (Default branch)
# 1  
Old 11-21-2008
XML Parse Lib 0.60 (Default branch)

XML Parse Lib is a lightweight set of re-usablefunctions for generalpurpose parsing, checking, and creation of XMLfiles. It supportsstream-oriented, SAX, or DOM parsing styles, andincludes an optionalxsd schema validator and a graphical schemagenerator. It supportsall valid XML, and includes checking for validity.It has minimaldependencies, and is totally self-contained. It isboth speed- andmemory-efficient, and is simple to use.License: MIT/X Consortium LicenseChanges:
The ability to handle escaped numeric symbols inXML files was added. Such values begin with anampersand and a pound-sign, followed by ahexidecimal or base-10 value, and then asemi-colon.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Parse an XML task list to create each task.xml file

I have an task definition listing xml file that contains a list of tasks such as <TASKLIST <TASK definition="Completion date" id="Taskname1" Some other <CODE name="Code12" <Parameter pname="Dog" input="5.6" units="feet" etc /Parameter> <Parameter... (3 Replies)
Discussion started by: MissI
3 Replies

2. Shell Programming and Scripting

How to parse a XML file using PERL and XML::DOm

I need to know the way. I have got parsing down some nodes. But I was unable to get the child node perfectly. If you have code please send it. It will be very useful for me. (0 Replies)
Discussion started by: girigopal
0 Replies
Login or Register to Ask a Question
xmerl_eventp(3erl)					     Erlang Module Definition						xmerl_eventp(3erl)

NAME
xmerl_eventp - Simple event-based front-ends to xmerl_scan for processing of XML documents in streams and for parsing in SAX style. DESCRIPTION
Simple event-based front-ends to xmerl_scan for processing of XML documents in streams and for parsing in SAX style. Each contain more elaborate settings of xmerl_scan that makes usage of the customization functions. EXPORTS
file_sax(Fname::string(), CallBackModule::atom(), UserState, Options::option_list()) -> NewUserState Parse file containing an XML document, SAX style. Wrapper for a call to the XML parser xmerl_scan with a hook_fun for using xmerl export functionality directly after an entity is parsed. stream(Fname::string(), Options::option_list()) -> xmlElement() Parse file containing an XML document as a stream, DOM style. Wrapper for a call to the XML parser xmerl_scan with a continua- tion_fun for handling streams of XML data. Note that the continuation_fun , acc_fun , fetch_fun , rules and close_fun options cannot be user defined using this parser. stream_sax(Fname, CallBack::CallBackModule, UserState, Options) -> xmlElement() Types Fname = string() CallBackModule = atom() Options = option_list() Parse file containing an XML document as a stream, SAX style. Wrapper for a call to the XML parser xmerl_scan with a continua- tion_fun for handling streams of XML data. Note that the continuation_fun , acc_fun , fetch_fun , rules , hook_fun , close_fun and user_state options cannot be user defined using this parser. string_sax(String::list(), CallBackModule::atom(), UserState, Options::option_list()) -> xmlElement() Parse file containing an XML document, SAX style. Wrapper for a call to the XML parser xmerl_scan with a hook_fun for using xmerl export functionality directly after an entity is parsed. AUTHORS
<> xmerl 1.2.8 xmerl_eventp(3erl)