Changeset 4495

Show
Ignore:
Timestamp:
10/14/08 15:27:42 (3 months ago)
Author:
coling
Message:

When renaming clients, make sure the event options are renamed too.
Bump the API to 0.3 to reflect the volume of recent changes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • clientsplugin/0.11/clients/model.py

    r4486 r4495  
    106106                           "WHERE name=%s AND value=%s", 
    107107                           (self.name, 'client', self._old_name)) 
     108            # Update event options 
     109            cursor.execute("UPDATE client_event_summary_options SET client=%s " 
     110                           "WHERE client=%s", 
     111                           (self.name, self._old_name)) 
     112            cursor.execute("UPDATE client_event_action_options SET client=%s " 
     113                           "WHERE client=%s", 
     114                           (self.name, self._old_name)) 
    108115            self._old_name = self.name 
    109116 
  • clientsplugin/0.11/setup.py

    r4492 r4495  
    88    description='Plugin to allow management of which ticket belong to which client', 
    99    keywords='trac plugin ticket client', 
    10     version='0.2', 
     10    version='0.3', 
    1111    url='http://www.trac-hacks.org/wiki/ClientsPlugin', 
    1212    license='http://www.opensource.org/licenses/mit-license.php',