Changes between Initial Version and Version 8 of Ticket #15649


Ignore:
Timestamp:
Oct 23, 2011, 4:45:44 PM (13 years ago)
Author:
Ramiro Morales
Comment:

Please don't report different errors is the same ticket.

There are two issues reported in this ticket:

Fist, the

Exception occurred:
  File ".../sphinx/writers/html.py", line 522, in visit_row
    self._table_row_index += 1

error. It's triggered by a change between Sphinx 1.0.x and 1.1. We fixed (or rather worked around) it for our trunk docs in r16223 but we didn't backport it to the 1.3.x branch and now it's too late for us to change our custom HTML builder code in the 1.3.1 release tarball.

Second, the

Exception occurred:
  File ".../sphinx/writers/html.py", line 120, in visit_desc_parameter
    self.body.append(self.param_separator)

error. This is a similar case: It also originates in a change introduced during the Sphinx 1.1 development cycle and in 1.0.8. We also had to workaround it (r16231) and didn't backport it to 1.3.x either. AFAICT is is a badly implemented change will try to open a ticket in Sphinx issue tracker so it is fixed for 1.1.x.

In short: If you want to build the 1.3 or 1.3.1 Django docs use Sphinx 1.0.7 or older.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #15649

    • Property Resolutionwontfix
    • Property Status newclosed
    • Property Easy pickings unset
    • Property SeverityNormal
    • Property TypeBug
    • Property UI/UX unset
    • Property Cc lists@… added
    • Property Version SVN1.3
  • Ticket #15649 – Description

    initial v8  
    88}}}
    99
    10 # Sphinx version: 1.1pre/ce4bb37a1409
    11 # Python version: 2.6.6
    12 # Docutils version: 0.7 release
    13 # Jinja2 version: 2.5
     10
     11 * Sphinx version: 1.1pre/ce4bb37a1409
     12 * Python version: 2.6.6
     13 * Docutils version: 0.7 release
     14 * Jinja2 version: 2.5
Back to Top