Changeset 3398

Show
Ignore:
Timestamp:
03/19/08 10:06:28 (10 months ago)
Author:
bobbysmith007
Message:

closes #2334

Added that t.summary to the group by clause as that did not change my results with SQLite and was preventing someone from using it with a different database

What database are you using?

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • timingandestimationplugin/branches/trac0.10/setup.py

    r3362 r3398  
    88      description='Plugin to make Trac support time estimation and tracking', 
    99      keywords='trac plugin estimation timetracking', 
    10       version='0.5.4', 
     10      version='0.5.5', 
    1111      url='http://www.trac-hacks.org/wiki/TimingAndEstimationPlugin', 
    1212      license='http://www.opensource.org/licenses/mit-license.php', 
  • timingandestimationplugin/branches/trac0.10/timingandestimationplugin/api.py

    r3362 r3398  
    5151        dbhelper.env = self.env 
    5252        self.db_version_key = 'TimingAndEstimationPlugin_Db_Version' 
    53         self.db_version = 6 
     53        self.db_version = 7 
    5454        self.db_installed_version = None 
    5555 
     
    126126            dbhelper.execute_non_query( sql) 
    127127         
     128        # 6 & 7 are report upgrades 
    128129         
    129130        # This statement block always goes at the end this method 
  • timingandestimationplugin/branches/trac0.10/timingandestimationplugin/reports.py

    r3350 r3398  
    99    "uuid":"b24f08c0-d41f-4c63-93a5-25e18a8513c2", 
    1010    "title":"Ticket Work Summary", 
    11     "version":16
     11    "version":17
    1212    "sql":""" 
    1313SELECT __ticket__ as __group__, __style__, ticket, 
     
    4848      AND ticket_change.time >= $STARTDATE 
    4949      AND ticket_change.time < $ENDDATE 
    50   GROUP By t.id 
     50  GROUP By t.id, t.summary 
    5151)  as tbl 
    5252ORDER BY __ticket__, _ord ASC, time ASC 
  • timingandestimationplugin/branches/trac0.11/setup.py

    r3362 r3398  
    88      description='Plugin to make Trac support time estimation and tracking', 
    99      keywords='trac plugin estimation timetracking', 
    10       version='0.6.3', 
     10      version='0.6.4', 
    1111      url='http://www.trac-hacks.org/wiki/TimingAndEstimationPlugin', 
    1212      license='http://www.opensource.org/licenses/mit-license.php', 
  • timingandestimationplugin/branches/trac0.11/timingandestimationplugin/reports.py

    r3350 r3398  
    99    "uuid":"b24f08c0-d41f-4c63-93a5-25e18a8513c2", 
    1010    "title":"Ticket Work Summary", 
    11     "version":18
     11    "version":19
    1212    "sql":""" 
    1313SELECT __ticket__ as __group__, __style__, ticket, 
     
    4848      AND ticket_change.time >= $STARTDATE 
    4949      AND ticket_change.time < $ENDDATE 
    50   GROUP By t.id 
     50  GROUP By t.id, t.summary 
    5151)  as tbl 
    5252ORDER BY __ticket__, _ord ASC, time ASC