[Doxygen-develop] addon\doxmlparser bugs?
Brought to you by:
dimitri
From: <ca...@Cr...> - 2002-04-07 15:58:34
|
Is some one interested in errors of addon\doxmlparser\test code? I try to parse doxygen xml output format and use doxmlparser. The = code below is NOT a comment to real program it is tests my parser. =20 1. IDocProgramListing interface can contain some text but = <linenumber>..</linenumber>. The sample below illustrate inaccessible = text "Simple text" throw IDocProgramListing. /*! \file * <pre>Simple text</pre> */ =20 2. Is the code bellow incorrect? /*! \page mypage mypage * * The text * * <H1>Title</H1> */ and why the code=20 =20 /*! \page mypage mypage * <H1>Title</H1> */ &=20 /*! \page mypage mypage * * The text * * <H2>Title</H2> */ correct? =20 3. Doxygen generate invalid xml output for <caption> tag /*! * \page mypage mypage * <table><tr><td>Column</td></tr> * <caption>Caption</caption></table> */ Html output is valid. =20 4. addon\doxmlparser\test dosn't parse anchors. /*! \page mypage mypage * <A name=3D"name">text</A> */ Doxygen generate valid xml, but there is no <anchor> handler. =20 - Alexandr - |