After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 692985 - Notes in xml output are not correctly separated
Notes in xml output are not correctly separated
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.3.1
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2013-02-01 09:08 UTC by Alfonso
Modified: 2014-04-21 10:09 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Alfonso 2013-02-01 09:08:19 UTC
I have the code 

\note Note 1

\note Note 2

In the xml output they get merged:

<simplesect kind="note">
   <para>Note 1 </para>
   <simplesectsep/>
   <para>Note 2</para>
</simplesect>

The <simplesectsep/> is not suitable to be processed by xsl transform. Therefore, as far as I am concerned they should be output like this:


<simplesect kind="note">
   <para>Note 1 </para>
</simplesect>
<simplesect kind="note">
   <para>Note 2</para>
</simplesect>
Comment 1 albert 2014-04-19 17:39:26 UTC
I pushed a patch to github, pull request 155
Comment 2 Dimitri van Heesch 2014-04-19 18:13:33 UTC
Confirmed. Should be fixed in the next GIT update.
Comment 3 Dimitri van Heesch 2014-04-21 10:09:41 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.7. Please verify if this is indeed the case. Reopen the
bug if you think it is not fixed and please include any additional information 
that you think can be relevant (preferrably in the form of a self-contained example).