Changeset 210


Ignore:
Timestamp:
05/30/08 12:43:21 (16 years ago)
Author:
bas
Message:

email2trac.py.in:

  • closes tickets #60, #39, #56
  • preparing for new release 0.30
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r208 r210  
    1 2008-XXX
     12008-05-30
    22  * Fixed debian control file. Package can be build on any platform and
    33    not only on i386 platforms:
     
    6161    black_list : basv@sara.nl, walter@sara.nl
    6262
    63     closes #39
     63    closes #39, #56
    6464   
    6565    Author: Bas van der Vlies
     66
     67  * if mailto_link + german umlaut problem is fixed, closes #60
     68    Reported by: alex at pirsig dot net
     69    Fixed by: Bas van der Vlies
    6670   
    6771
  • trunk/debian/changelog

    r204 r210  
     1email2trac (0.30-1) stable; urgency=low
     2
     3  *  a lot improvements and fixes, see Changelog
     4   
     5 -- root <root@rc.sara.nl>  Fri, 30 May 2008 12:40:26 +0200
     6
    17email2trac (0.20-1) stable; urgency=low
    28
  • trunk/email2trac.py.in

    r209 r210  
    617617
    618618                body_text = self.get_body_text(m)
     619
    619620                if self.EMAIL_HEADER:
    620621                        head = self.email_header_txt(m)
    621622                        body_text = u"\r\n%s \r\n%s" %(head, body_text)
    622 
    623                 #if self.MAILTO:
    624                 #       mailto = self.html_mailto_link(tkt['summary'], ticket_id, body_text)
    625                 #       body_text = u"\r\n%s \r\n%s" %(mailto, body_text)
    626623
    627624                tkt.save_changes(self.author, body_text, when)
     
    742739                        changed = True
    743740                        comment = u'\nadded mailto line\n'
    744                         mailto = self.html_mailto_link(tkt['summary'], ticket_id, body_text)
     741                        #mailto = self.html_mailto_link(tkt['summary'], ticket_id, body_text)
     742                        mailto = self.html_mailto_link( m['Subject'], ticket_id, body_text)
    745743                        tkt['description'] = u'\r\n%s\r\n%s%s\r\n' \
    746744                                %(head, mailto, body_text)
  • trunk/email2trac.spec

    r195 r210  
    11Summary: Utilities for converting emails to trac tickets
    22Name: email2trac
    3 Version: 0.13.0
     3Version: 0.30.0
    44Release: 1
    55License: GPL
Note: See TracChangeset for help on using the changeset viewer.