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 678102 - Tree View doesn't display on IE7
Tree View doesn't display on IE7
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.1.1
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2012-06-14 14:14 UTC by Bryan Kitts
Modified: 2012-07-13 07:59 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Original output (13.01 KB, text/plain)
2012-06-15 08:29 UTC, Bryan Kitts
Details
Patched version (13.01 KB, text/plain)
2012-06-15 08:33 UTC, Bryan Kitts
Details

Description Bryan Kitts 2012-06-14 14:14:54 UTC
Tree view doesn't display at all in IE7 (sadly standard browser at work)

Seems due to trailing comma in object literal in navtreeindexNN.js files, meaning the script doesn't load. If I manually delete it from one of them, that script loads and the tree is displayed.
Comment 1 Dimitri van Heesch 2012-06-14 18:19:26 UTC
Since I have no IE7 installed anywhere anymore, can you attach an output file with and without the manual edit (or a diff of both), so I know exactly what to change?
Comment 2 Bryan Kitts 2012-06-15 08:29:30 UTC
Created attachment 216495 [details]
Original output
Comment 3 Bryan Kitts 2012-06-15 08:33:49 UTC
Created attachment 216496 [details]
Patched version

The change is the last character on the penultimate line.


Original:

var NAVTREEINDEX42 =
{
"group__Sandbox.html#gaeea2c0ba997e7ed1c57fad013783da46":[8,1,0,99],
...
"nr3_8h.html#abb324d10407ebaabd5e0b393245c7f5b":[11,0,5,241,37],
"nr3_8h.html#abbefda5aee8e26da41ae345b190cc557":[11,0,5,241,50],
};


Works on IE7:

var NAVTREEINDEX42 =
{
"group__Sandbox.html#gaeea2c0ba997e7ed1c57fad013783da46":[8,1,0,99],
...
"nr3_8h.html#abb324d10407ebaabd5e0b393245c7f5b":[11,0,5,241,37],
"nr3_8h.html#abbefda5aee8e26da41ae345b190cc557":[11,0,5,241,50]
};
Comment 4 Dimitri van Heesch 2012-06-16 15:23:38 UTC
Confirmed. Should be fixed in the next subversion update.
Comment 5 Dimitri van Heesch 2012-07-12 15:42:02 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.1.2. 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.
Comment 6 Bryan Kitts 2012-07-13 07:59:17 UTC
Confirmed fixed in 1.8.1.2. Thanks very much!