161 lines
5.6 KiB
HTML
161 lines
5.6 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE> [C++ Toolkit ANNOUNCE] XmlWrapp (C++ API to handle XML data) - now with XPath support
|
|
</TITLE>
|
|
<LINK REL="Index" HREF="index.html" >
|
|
<LINK REL="made" HREF="mailto:cpp-announce%40ncbi.nlm.nih.gov?Subject=Re%3A%20%5BC%2B%2B%20Toolkit%20ANNOUNCE%5D%20XmlWrapp%20%28C%2B%2B%20API%20to%20handle%20XML%20data%29%20-%20now%0A%09with%20XPath%20support&In-Reply-To=%3C6F230E9769AA8D4EB4BC401DF133EDB7034C0267%40NIHCESMLBX15.nih.gov%3E">
|
|
<META NAME="robots" CONTENT="index,nofollow">
|
|
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
|
<LINK REL="Previous" HREF="000127.html">
|
|
<LINK REL="Next" HREF="000129.html">
|
|
</HEAD>
|
|
<BODY BGCOLOR="#ffffff">
|
|
<H1>[C++ Toolkit ANNOUNCE] XmlWrapp (C++ API to handle XML data) - now with XPath support</H1>
|
|
<!--htdig_noindex-->
|
|
<B>Satsky, Sergey (NIH/NLM/NCBI) [C]</B>
|
|
<A HREF="mailto:cpp-announce%40ncbi.nlm.nih.gov?Subject=Re%3A%20%5BC%2B%2B%20Toolkit%20ANNOUNCE%5D%20XmlWrapp%20%28C%2B%2B%20API%20to%20handle%20XML%20data%29%20-%20now%0A%09with%20XPath%20support&In-Reply-To=%3C6F230E9769AA8D4EB4BC401DF133EDB7034C0267%40NIHCESMLBX15.nih.gov%3E"
|
|
TITLE="[C++ Toolkit ANNOUNCE] XmlWrapp (C++ API to handle XML data) - now with XPath support">satskyse at ncbi.nlm.nih.gov
|
|
</A><BR>
|
|
<I>Mon Aug 17 12:20:19 EDT 2009</I>
|
|
<P><UL>
|
|
<LI>Previous message: <A HREF="000127.html">[C++ Toolkit ANNOUNCE] New NCBI C++ Toolkit Release -- May 2009
|
|
</A></li>
|
|
<LI>Next message: <A HREF="000129.html">[C++ Toolkit ANNOUNCE] Deleting the supposedly unused DBAPI drivers -- SQLite, MySQL and MSDBLIB
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#128">[ date ]</a>
|
|
<a href="thread.html#128">[ thread ]</a>
|
|
<a href="subject.html#128">[ subject ]</a>
|
|
<a href="author.html#128">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
<HR>
|
|
<!--/htdig_noindex-->
|
|
<!--beginarticle-->
|
|
<PRE>Dear C++ developers,
|
|
|
|
|
|
|
|
|
|
|
|
The NCBI clone of XmlWrapp library has been extended to also support
|
|
XPath queries (much as it is supported by the underlying libxml2).
|
|
|
|
|
|
|
|
The added XPath-related APIs:
|
|
|
|
class xpath_expression:
|
|
|
|
|
|
<A HREF="http://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/doxyhtml/classxml_1_1xpa">http://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/doxyhtml/classxml_1_1xpa</A>
|
|
th__expression.html
|
|
|
|
node_set node::run_xpath_query (const xpath_expression& expr):
|
|
|
|
|
|
<A HREF="http://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/doxyhtml/classxml_1_1nod">http://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/doxyhtml/classxml_1_1nod</A>
|
|
e.html#b8ed0be468b2866183d491021bb07f34
|
|
|
|
|
|
|
|
|
|
|
|
--------------
|
|
|
|
The whole XmlWrapp API can be seen in Doxygen:
|
|
|
|
XML:
|
|
<A HREF="http://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/doxyhtml/namespacexml.ht">http://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/doxyhtml/namespacexml.ht</A>
|
|
ml
|
|
|
|
XSLT:
|
|
<A HREF="http://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/doxyhtml/namespacexslt.h">http://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/doxyhtml/namespacexslt.h</A>
|
|
tml
|
|
|
|
|
|
|
|
The library code is accompanied by a few demo projects (visible only
|
|
in-house):
|
|
|
|
|
|
<A HREF="https://svn.ncbi.nlm.nih.gov/viewvc/toolkit/trunk/internal/c++/src/inter">https://svn.ncbi.nlm.nih.gov/viewvc/toolkit/trunk/internal/c++/src/inter</A>
|
|
nal/demo/misc/xmlwrapp/
|
|
|
|
and by (improved and extended) test suite:
|
|
|
|
|
|
<A HREF="https://svn.ncbi.nlm.nih.gov/viewvc/toolkit/trunk/internal/c++/src/inter">https://svn.ncbi.nlm.nih.gov/viewvc/toolkit/trunk/internal/c++/src/inter</A>
|
|
nal/test/misc/xmlwrapp/
|
|
|
|
|
|
|
|
The C++ Toolkit makefile tune-ups required to use the library:
|
|
|
|
LIB = xmlwrapp
|
|
|
|
LIBS = $(LIBXML_LIBS) $(LIBXSLT_LIBS) $(ORIG_LIBS)
|
|
|
|
CPPFLAGS= $(LIBXML_INCLUDE) $(LIBXSLT_INCLUDE) $(ORIG_CPPFLAGS)
|
|
|
|
|
|
|
|
|
|
|
|
For the NCBI internal users the library is available at
|
|
$NCBI/c++.metastable.
|
|
|
|
Outside users can download it from FTP:
|
|
<A HREF="ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools++/MISC/">ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools++/MISC/</A> (UNIX only)
|
|
|
|
Link to the original libxmlwrapp 0.6.0:
|
|
<A HREF="http://sourceforge.net/projects/xmlwrapp/">http://sourceforge.net/projects/xmlwrapp/</A>
|
|
|
|
|
|
|
|
----------------
|
|
|
|
JIRA: <A HREF="http://jira.ncbi.nlm.nih.gov/browse/CXX-893,">http://jira.ncbi.nlm.nih.gov/browse/CXX-893,</A>
|
|
<A HREF="http://jira.ncbi.nlm.nih.gov/browse/CXX-1256">http://jira.ncbi.nlm.nih.gov/browse/CXX-1256</A>
|
|
|
|
The clone is maintained and developed by: Sergei Satskiy
|
|
|
|
|
|
|
|
|
|
|
|
Best regards,
|
|
|
|
- C++ Toolkit Group
|
|
|
|
|
|
|
|
-------------- next part --------------
|
|
An HTML attachment was scrubbed...
|
|
URL: <<A HREF="http://www.ncbi.nlm.nih.gov/mailman/pipermail/cpp-announce/attachments/20090817/e331bf17/attachment.html">http://www.ncbi.nlm.nih.gov/mailman/pipermail/cpp-announce/attachments/20090817/e331bf17/attachment.html</A>>
|
|
</PRE>
|
|
|
|
|
|
<!--endarticle-->
|
|
<!--htdig_noindex-->
|
|
<HR>
|
|
<P><UL>
|
|
<!--threads-->
|
|
<LI>Previous message: <A HREF="000127.html">[C++ Toolkit ANNOUNCE] New NCBI C++ Toolkit Release -- May 2009
|
|
</A></li>
|
|
<LI>Next message: <A HREF="000129.html">[C++ Toolkit ANNOUNCE] Deleting the supposedly unused DBAPI drivers -- SQLite, MySQL and MSDBLIB
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#128">[ date ]</a>
|
|
<a href="thread.html#128">[ thread ]</a>
|
|
<a href="subject.html#128">[ subject ]</a>
|
|
<a href="author.html#128">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
|
|
<hr>
|
|
<a href="http://www.ncbi.nlm.nih.gov/mailman/listinfo/cpp-announce">More information about the cpp-announce
|
|
mailing list</a><br>
|
|
<!--/htdig_noindex-->
|
|
</body></html>
|