Edgewall Software

Ticket #6388: empty-ctxtnav-list.patch

File empty-ctxtnav-list.patch, 492 bytes (added by Remy Blank <remy.blank@…>, 6 months ago)

Another occurrence of invalid XHTML (empty <ul> list when ctxtnav is empty)

  • trac/templates/theme.html

    diff --git a/trac/templates/theme.html b/trac/templates/theme.html
    a b  
    3535    <div id="main"> 
    3636      <div id="ctxtnav" class="nav"> 
    3737        <h2>Context Navigation</h2> 
    38           <ul> 
     38          <ul py:if="chrome.ctxtnav"> 
    3939            <li py:for="i, elm in enumerate(chrome.ctxtnav)" class="${i == 0 and 'first ' or None}${i+1 == len(chrome.ctxtnav) and 'last' or None}">$elm</li> 
    4040          </ul> 
    4141        <hr />