Modify ↓
Opened 14 years ago
Last modified 14 years ago
#8566 new enhancement
Port under Trac v.0.12.x and MasterTicket v.3.x ?
Reported by: | Owned by: | Felix Tiede | |
---|---|---|---|
Priority: | normal | Component: | TracTicketDepgraphPlugin |
Severity: | normal | Keywords: | Port Trac 0.12 |
Cc: | Trac Release: | 0.12 |
Description (last modified by )
Please make port to new stable versions of Trac and MasterTicket. Current version 0.11 have a problem like:
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 70: ordinal not in range(128) 2011-03-03 20:57:03,322 Trac[main] WARNING: HTTPInternalError: 500 Error Trac (Error Genshi UnicodeDecodeError ...
Attachments (0)
Change History (4)
comment:1 Changed 14 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 14 years ago by
Trac Release: | 0.11 → 0.12 |
---|
comment:3 Changed 14 years ago by
comment:4 Changed 14 years ago by
After solving that, there is still another problem: the default setting for the dpi-value (=96) is too large. Adjust it in the trac.ini
[graphviz] default_graph_dpi = 70
Note: See
TracTickets for help on using
tickets.
Just for the record... This is a well known problem when upgrading to newer python versions: you really need to care for encoding Unicode properly (here likely to UTF-8). Without specifying an encoding, python won't accept any character above 128.
The following patch will solve this problem for the titles generated into the dependency graph. Note: the problem is actually in the GraphvizPlugin