Changeset 117


Ignore:
Timestamp:
10/05/06 20:41:00 (18 years ago)
Author:
bas
Message:

EmailtoTracScript?:

email2trac.py.in:

  • Added author and description field for attachments
Location:
emailtotracscript/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • emailtotracscript/trunk/ChangeLog

    r113 r117  
     12006-
     2        * Fixed race conditions in delete_spam.py and added some
     3          debug code.
     4          Fixed by   : Bas van der Vlies
     5        * Added author and description field when attachment is
     6          added to ticket. This is for trac version greater than
     7          0.8.
     8          Fixed by   : Bas van der Vlies
     9          Thanks to Matthew Good for the hint
     10
    1112006-10-02
    212        * Fixes possible segmentation faults in run_email2trac.c
  • emailtotracscript/trunk/debian/changelog

    r113 r117  
     1email2trac (0.8.1-1) stable; urgency=low
     2
     3  * Fixed some errors in delete_spam.py
     4  * Add Author to Trac:attachment.py else we have no authors ;-(
     5
     6 -- root <root@rc.sara.nl>  Thu,  5 Oct 2006 15:03:23 +0200
     7
    18email2trac (0.8.0-2) stable; urgency=low
    29
  • emailtotracscript/trunk/email2trac.py.in

    r112 r117  
    690690                                fd = open(path)
    691691                                att = attachment.Attachment(self.env, 'ticket', ticket['id'])
     692                                att.author = self.author
     693                                att.description = 'email2trac'
    692694                                att.insert(url_filename, fd, filesize)
    693695                                fd.close()
  • emailtotracscript/trunk/email2trac.spec

    r111 r117  
    11Summary: Utilities for converting emails to trac tickets
    22Name: email2trac
    3 Version: 0.8.0
     3Version: 0.8.1
    44Release: 1
    55License: GPL
Note: See TracChangeset for help on using the changeset viewer.