Changeset 546


Ignore:
Timestamp:
08/10/11 12:39:18 (13 years ago)
Author:
bas
Message:

renamed email2trac_workflow to mail_workflow and preparing for 2.4.0 release

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r542 r546  
    1 2.X.X
     12.4.0
    22  * Fixed an error in ticket_update_fields. Always check if given ticket
    33    field is a valid ticket field for trac. The error could be triggered
     
    4747    Applied by: Bas van der Vlies
    4848
    49   * Process all workflows not only the default trac workflow,
    50     eg: AdvancedTicketWorkflowPlugin, closes #226
     49  * Process all workflows not only the default trac workflow. Workflow is now
     50    enabled for new tickets and ticket updates.
     51    eg: AdvancedTicketWorkflowPlugin, closes #226,#252
    5152    Reported by: Frédéric DUARTE <f dot duarte add akka dot eu>
     53                 kofal002 att umn dot edu
    5254    Fixed by: Bas van der Vlies
    5355
  • trunk/debian/changelog

    r544 r546  
     1email2trac (2.4.0-1) stable; urgency=low
     2
     3  * See Changelog
     4
     5 -- Bas van der Vlies <basv@sara.nl>  Wed, 10 Aug 2011 12:34:38 +0200
     6
    17email2trac (2.1.8-1) stable; urgency=low
    28
  • trunk/email2trac.py.in

    r545 r546  
    645645########## TRAC ticket functions  ###########################################################
    646646
    647     def email2trac_workflow(self, tkt):
    648         """
    649         """
    650         self.logger.debug('function email2trac_workflow: ')
     647    def mail_workflow(self, tkt):
     648        """
     649        """
     650        self.logger.debug('function mail_workflow: ')
    651651       
    652652        req = Mock(authname=self.author, perm=MockPerm(), args={})
     
    910910        if self.parameters.email_triggers_workflow and (self.VERSION >= 0.11):
    911911
    912             if not self.email2trac_workflow(tkt):
     912            if not self.mail_workflow(tkt):
    913913
    914914                if tkt['status'] in ['closed']:
     
    11971197
    11981198        if self.parameters.email_triggers_workflow and (self.VERSION >= 0.11):
    1199             if self.email2trac_workflow(tkt):
     1199            if self.mail_workflow(tkt):
    12001200                changed = True
    12011201
  • trunk/email2trac.spec

    r524 r546  
    11Summary: Utilities for converting emails to trac tickets
    22Name: email2trac
    3 Version: 2.1.1
     3Version: 2.4.0
    44Release: 1
    55License: GPL
Note: See TracChangeset for help on using the changeset viewer.