Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (133 - 135 of 332)

Ticket Resolution Summary Owner Reporter
#302 fixed Genshi 0.6 Compatibility bas anonymous
Description

Would it be possible to add 0.6 compatibility to email2trac? Using Genshi 0.5.1 I've had success receiving emails and turning them into tickets. However trac is then unable to render inside a web browser due to the fact that our local trac environment requires Genshi 0.6. If I move over to using 0.6, email2trac then dies with the following import (using the svn version of email2trac):

>>> from trac import config as trac_config
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.6/site-packages/trac/config.py", line 19, in <module>
    from trac.admin import IAdminCommandProvider
  File "/usr/lib/python2.6/site-packages/trac/admin/__init__.py", line 14, in <module>
    from trac.admin.api import *
  File "/usr/lib/python2.6/site-packages/trac/admin/api.py", line 19, in <module>
    from trac.util.translation import _
  File "/usr/lib/python2.6/site-packages/trac/util/__init__.py", line 35, in <module>
    from trac.util.text import to_unicode
  File "/usr/lib/python2.6/site-packages/trac/util/text.py", line 28, in <module>
    from trac.util.translation import _
  File "/usr/lib/python2.6/site-packages/trac/util/translation.py", line 19, in <module>
    from genshi.builder import tag
ImportError: No module named genshi.builder
>>> exit()

-Garrett

#103 fixed get_param of Format/DelSp returns None bas debacle@…
Description

The following two lines in email2trac fail:

format = email.Utils.collapse_rfc2231_value(part.get_param('Format')).lower()
delsp = email.Utils.collapse_rfc2231_value(part.get_param('DelSp')).lower()

This workaround helps, but I'm not sure, whether it is correct:

format = email.Utils.collapse_rfc2231_value(part.get_param('Format') or "").lower()
delsp = email.Utils.collapse_rfc2231_value(part.get_param('DelSp') or "").lower()
#135 wontfix Great Product, Please help me install it! bas gary@…
Description

untitled-part.html

Note: See TracQuery for help on using queries.