$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: dmoore_at_[hidden]
Date: 2001-09-25 11:26:24
Bill Kempf wrote:
> No matter how ugly you think the interface is, any successful 
parser 
> is going to have to include the interfaces for the two current 
> standard interfaces: DOM and SAX.  Including a third interface 
that's 
> easier to deal with for simple chores may be a great idea, but we 
> really do need the standards.
A SAX2-like implementation (both interfaces and the parser drivers) 
in "plain" C++ would be very nice....
BUT/AND/WHATEVER:
In all of the talk of doing a library(ies), I think the original 
poster's point was somewhat lost - if the regression tests produced 
their data as a fairly straightforward XML document, then the HTML 
table on the website could be automatically generated via XSLT, while 
the results would be in a format amenable for further analysis.
The only "tools" needed for this are std::ostream<< for creating the 
XML results doc, the XSLT transform for creating the HTML exactly as 
it currently appears on http://www.boost.org/status/cs-win32.html 
(for example), and an off-the-shelf XSLT processor like SAXON to run 
the transform....
Dave