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 724949 - Server side (PHP) search broke in 1.8.3
Server side (PHP) search broke in 1.8.3
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.3
Other All
: Normal major
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2014-02-22 12:06 UTC by Lars Munch
Modified: 2014-03-19 21:52 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
bug example (351 bytes, application/x-compressed-tar)
2014-02-22 12:06 UTC, Lars Munch
Details

Description Lars Munch 2014-02-22 12:06:38 UTC
Created attachment 269989 [details]
bug example

The following works in 1.8.2 but broke in 1.8.3:

Configuration (doxygen.cfg):

SERVER_BASED_SEARCH    = YES
OPTIMIZE_OUTPUT_FOR_C  = YES
FILE_PATTERNS          = *.h
EXTRACT_ALL            = YES

Header file dummy.h:
/** @def DUMMY_MACRO
 *  @brief Some dummy macro
 */
#define DUMMY_MACRO 1234

/**
 * @brief Some dummy function
 *
 * @param[in] dummy Dummy arg
 */
void dummy_function(int dummy);

Now search for DUMMY_MACRO or dummy_function and they are not found in 1.8.3 and above (tried latest git but that was the same).

It appears that the search.idx does not contain the members any more, because if I copy search.idx generated with 1.8.2 into a project generated with 1.8.3 it works.
Comment 1 Dimitri van Heesch 2014-03-01 15:20:38 UTC
Confirmed. Should be fixed in the next GIT update.
Comment 2 Lars Munch 2014-03-19 21:52:54 UTC
Just tested from git. Works great now. Thanks a lot!