RE: [Doxygen-develop] \page and \group
Brought to you by:
dimitri
From: <ca...@cr...> - 2004-01-15 14:28:00
|
Hi! a) Has \page command generate separate file or all pages text combine = to a group text? At XML, at HTML? b) "\ref page" generate reference to a page or to owner group? At XML, = at HTML? +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ = Example 1. page.doc /*! \defgroup G1 group1 * \{ */ /*! \page page1 page1 page1 \ref page2 */ /*! \page page2 page2 page2 \ref page1 */ /*! \} */ HTML: Documentation for page1 and page2 generates in ++++GROUP+++ file = group___g1.html. Why? I can write text to group file at \group command. = I'd like to write separate page. XML: Documentation for page1 and page2 generates ++++2+++ files + group = file: group___g1_page1.xml, group___g1_page2.xml, group___g1.xml. Ok. HTML: \ref looks like reference to ++++GROUP++++ ( <a class=3D"el" = href=3D"group___g1.html">page1</a>. See comment before, but it works. XML: \ref looks like reference to ++++GROUP++++ (<ref refid=3D"page2" = kindref=3D"compound">page2</ref>). Fail(?) 3 files. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++=09 Example 2. page.doc: /*! \page page1 page1 page1 \ref page2 */ /*! \page page2 page2 page2 \ref page1 */ HTML: Documentation for page1 and page2 generates in +++2+++ files: = page1.html page2.html. Ok. XML: Documentation for page1 and page2 generates in +++2+++ files:=20 page1.xml page2.xml. Ok. HTML: \ref looks like <a class=3D"anchor" name=3D"page2">page2</a>. Ok. XML: <ref refid=3D"page2" kindref=3D"compound">page2</ref>. Ok. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ I don't use HTML output :), I try html to understand what output is = valid, but not understand a thing. |