Changeset 274 for trunk


Ignore:
Timestamp:
08/17/09 14:25:19 (15 years ago)
Author:
bas
Message:

See Changelog for details

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r272 r274  
    66
    77    All Fixes by: Bas van der Vlies
     8
     9  * if alternate notify template is set then also set ticket id. It will show
     10    up as ticket change, closes #142
     11    Reported by: hju att jochenkuhl dot de
     12    Fixed by: Bas van der Vlies
    813
    914  * Error in urllib.quote(filename) could not handle unicode
     
    1116    Reported by: debacle at debian dot org
    1217    Applied  by: Bas van der Vlies
     18
     19  * Fixed an error when debug is on and the body message contains unicode
     20    strings, closes #144
     21    Reported by: trumbitta at gmail dot com
     22    Applied by: Bas van der Vlies
    1323
    14242009-04-09
  • trunk/debian/changelog

    r272 r274  
    1 email2trac (0.82-1) stable; urgency=low
     1email2trac (0.82-2) stable; urgency=low
    22
    33  * updated aclocal.m4 to support python versions 2.5 and 2.6, closes #137
     
    66
    77    All Fixes by: Bas van der Vlies
     8
     9  * if alternate notify template is set then also set ticket id. It will show
     10    up as ticket change, closes #142
     11    Reported by: hju att jochenkuhl dot de
     12    Fixed by: Bas van der Vlies
    813
    914  * Error in urllib.quote(filename) could not handle unicode
     
    1318    Applied  by: Bas van der Vlies
    1419
    15  -- root <root@subtrac2.rc.sara.nl>  Thu, 04 Jun 2009 14:48:11 +0200
     20 
     21  * Fixed an error when debug is on and the body message contains unicode
     22    strings, closes #144
     23    Reported by: trumbitta at gmail dot com
     24    Applied by: Bas van der Vlies
     25
     26 -- Bas van der Vlies <basv@sara.nl>  Thu, 04 Jun 2009 14:48:11 +0200
    1627
    1728email2trac (0.80-1) stable; urgency=low
  • trunk/email2trac.py.in

    r273 r274  
    391391                if not message_body:
    392392                        message_body = '(None)'
     393
     394                message_body = message_body.encode('utf-8')
     395                #message_body = unicode(message_body, 'iso-8859-15')
     396
    393397                fx.write(message_body)
    394398                fx.close()
     
    831835                #
    832836                if self.notify_template:
    833                         tkt['id'] = ticket_id
     837                        tkt['id'] = self.id
    834838                        changed = True
    835839
Note: See TracChangeset for help on using the changeset viewer.