Modify

Opened 8 years ago

Closed 8 years ago

Last modified 8 years ago

#12872 closed defect (fixed)

HTML bug in main page when using wiki

Reported by: ntmlod Owned by: ntmlod
Priority: normal Component: DoxygenPlugin
Severity: normal Keywords:
Cc: Trac Release: 1.0

Description

Hello,

Just a rendering problem, the main content of the web page is overload by 2 classes. Here is an extract of HTML source code:

    <div id="main">
    ...
    <div id="content" class="doxygen">
      <div id="content" class="wiki">
      ...

Just removing the node with "wiki" class solved it but perhaps it is the opposite to do when wiki_index is activated.

Up to you.

Attachments (1)

doxygen.html (1.2 KB) - added by ntmlod 8 years ago.

Download all attachments as: .zip

Change History (4)

Changed 8 years ago by ntmlod

Attachment: doxygen.html added

comment:1 Changed 8 years ago by ntmlod

Well simply renaming the <div py:if="doxygen_text" in the HTML template solve the issue without collateral damages apparently.

  • doxygenplugin/trunk/doxygentrac/templates/doxygen.html

     
    1515
    1616  <body>
    1717    <div id="content" class="doxygen">
    18       <div py:if="doxygen_text" id="content" class="wiki">
     18      <div py:if="doxygen_text" id="doxygen_text" class="wiki">
    1919         <div class="wikipage">
    2020           <div id="searchable" py:content="doxygen_text" />
    2121        </div>
Last edited 8 years ago by Ryan J Ollos (previous) (diff)

comment:2 Changed 8 years ago by Ryan J Ollos

Resolution: fixed
Status: newclosed

In 15902:

0.7.4: Fix duplicate id attribute values

Patch by ntmlod.

Fixes #12872.

comment:3 Changed 8 years ago by Ryan J Ollos

Owner: changed from Committo-Ergo-Sum to ntmlod

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain ntmlod.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.