MicroNova YUZU 20080616 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News MicroNova YUZU 20080616 (Default branch)
# 1  
Old 06-17-2008
MicroNova YUZU 20080616 (Default branch)

MicroNova YUZU is an EL-based JSP tag library designed to augment JSTL and transform JSP into a powerful XML-style "scripting language" (compatible with both JSP 1.2 and 2.0). Features include: stackable (nestable beyond tagfile boundaries) tags, nestable/encodable map with XML/JSON support, "codec" functions, structured param with file upload/select/radio support, "subroutine" call returning non-string Object, dynamic embedded EL pattern evaluation for regular text and SQL queries, HTTP client and response control, an HTML-to-DOM parser, multipart email and mailbox, dynamic method invocation/iterator/map/resource message map, and more. All YUZU tags follow a single behavioral pattern (prepare, import, default, process, assign, export) for ease of learning and extension. License: BSD License (revised) Changes:
Support for INOUT store procedure parameters, support for EL configuration parameters, support for the "log" property in m:log and _JSP:log, and support for the "com.micronova.jsp.tag.PostDataTag.defaultEncoding" configuration variable.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
libxml(3)						     Library Functions Manual							 libxml(3)

NAME
libxml - library used to parse XML files DESCRIPTION
The libxml library is used to parse XML files. Its internal document repesentation is as close as possible to the DOM (Document Object Model) interface, an API for accessing XML or HTML structured documents. The libxml library also has a SAX-like interface, which is designed to be compatible with that of another XML parser library called expat. NOTE: SAX, the Simple API for XML, is a standard interface for event-based XML parsing, developed collaboratively by the members of the XML-DEV mailing list, currently hosted by OASIS. The expat library is a XML 1.0 parser written in C, which aims to be fully conforming. It is currently not a validating XML processor. The libxml library now includes a nearly complete XPath implementation. The XPath (XML Path Language) is a language for addressing parts of an XML document, designed to be used by both XSLT and XPointer. The libxml library exports Push and Pull type parser interfaces for both XML and html. FILES
/usr/lib/libxml2.so shareable library /usr/bin/xmlcatalog binary application for parsing and manipulating XML or SGML catalog files /usr/bin/xmllint binary application for parsing XML files /usr/bin/xml2-config binary application for printing library configuration /usr/include/libxml2 header files AUTHORS
Daniel Veillard (daniel@veillard.com). If you download and install this package please send the author email. Manual page by Ziying Sher- win (sherwin@nlm.nih.gov), Lister Hill National Center for Biomedical Communications, U.S. National Library of Medicine. SEE ALSO
xmlcatalog(1), xmllint(1), xml2-config(1). NOTES
Source for libxml is available on http://opensolaris.org. Documentation for libxml is available on-line at http://www.xmlsoft.org/ 23 May 2002 libxml(3)