Changeset 4382
- Timestamp:
- 10/03/08 10:40:57 (2 months ago)
- Files:
-
- timingandestimationplugin/branches/trac0.11-Permissions/setup.py (modified) (1 diff)
- timingandestimationplugin/branches/trac0.11-Permissions/timingandestimationplugin/reports.py (modified) (12 diffs)
- timingandestimationplugin/branches/trac0.11/setup.py (modified) (1 diff)
- timingandestimationplugin/branches/trac0.11/timingandestimationplugin/reports.py (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
timingandestimationplugin/branches/trac0.11-Permissions/setup.py
r4358 r4382 8 8 description='Plugin to make Trac support time estimation and tracking with permissions', 9 9 keywords='trac plugin estimation timetracking permissions', 10 version='0.7. 2',10 version='0.7.3', 11 11 url='http://www.trac-hacks.org/wiki/TimingAndEstimationPlugin', 12 12 license='http://www.opensource.org/licenses/mit-license.php', timingandestimationplugin/branches/trac0.11-Permissions/timingandestimationplugin/reports.py
r3784 r4382 9 9 "uuid":"b24f08c0-d41f-4c63-93a5-25e18a8513c2", 10 10 "title":"Ticket Work Summary", 11 "version":2 0,11 "version":21, 12 12 "sql":""" 13 13 SELECT __ticket__ as __group__, __style__, ticket, … … 57 57 "uuid":"af13564f-0e36-4a17-96c0-632dc68d8d14", 58 58 "title":"Milestone Work Summary", 59 "version":1 7,59 "version":18, 60 60 "sql":""" 61 61 … … 81 81 UNION 82 82 83 SELECT 'background-color:#DFE;' as __style__, NULLas ticket,83 SELECT 'background-color:#DFE;' as __style__, 0 as ticket, 84 84 sum( CASE WHEN newvalue = '' OR newvalue IS NULL THEN 0 85 85 ELSE CAST( newvalue AS DECIMAL ) END) as newvalue, 'Total work done' as summary, … … 106 106 "uuid":"7bd4b0ce-da6d-4b11-8be3-07e65b540d99", 107 107 "title":"Developer Work Summary", 108 "version":1 7,108 "version":18, 109 109 "sql":""" 110 110 SELECT author as __group__,__style__, ticket, summary, … … 128 128 UNION 129 129 130 SELECT 'background-color:#DFE;' as __style__, author, NULLas ticket,130 SELECT 'background-color:#DFE;' as __style__, author, 0 as ticket, 131 131 Null as summary, 132 132 SUM( CASE WHEN newvalue = '' OR newvalue IS NULL THEN 0 … … 149 149 },#END Hours Per Developer 150 150 ] 151 th_version =1 5151 th_version =16 152 152 ticket_hours_reports = [ 153 153 { … … 192 192 SELECT '1' AS __color__, 193 193 'background-color:#DFE;' as __style__, 194 NULLas ticket, 'Total' AS summary,194 0 as ticket, 'Total' AS summary, 195 195 NULL as component,NULL as version, NULL as severity, NULL as milestone, 196 196 'Time Remaining: ' as status, … … 280 280 SELECT '1' AS __color__, 281 281 'background-color:#DFE;' as __style__, 282 NULLas ticket, 'Total' AS summary,282 0 as ticket, 'Total' AS summary, 283 283 NULL as component,NULL as version, NULL as severity, NULL as milestone, 284 284 'Time Remaining: ' as status, … … 367 367 t.component AS __group__, 368 368 'background-color:#DFE;' as __style__, 369 NULLas ticket, 'Total work' AS summary,369 0 as ticket, 'Total work' AS summary, 370 370 t.component as __component__, NULL as version, NULL as severity, 371 371 NULL as milestone, 'Time Remaining: ' as status, … … 454 454 t.component AS __group__, 455 455 'background-color:#DFE;' as __style__, 456 NULLas ticket, 'Total work' AS summary,456 0 as ticket, 'Total work' AS summary, 457 457 t.component as __component__, NULL as version, NULL as severity, 458 458 NULL as milestone, 'Time Remaining: ' as status, … … 540 540 t.milestone AS __group__, 541 541 'background-color:#DFE;' as __style__, 542 NULLas ticket, 'Total work' AS summary,542 0 as ticket, 'Total work' AS summary, 543 543 NULL as component,NULL as version, NULL as severity, 544 544 t.milestone as __milestone__, 'Time Remaining: ' as status, … … 627 627 t.milestone AS __group__, 628 628 'background-color:#DFE;' as __style__, 629 NULLas ticket, 'Total work' AS summary,629 0 as ticket, 'Total work' AS summary, 630 630 NULL as component,NULL as version, NULL as severity, 631 631 t.milestone as __milestone__, timingandestimationplugin/branches/trac0.11/setup.py
r4233 r4382 8 8 description='Plugin to make Trac support time estimation and tracking', 9 9 keywords='trac plugin estimation timetracking', 10 version='0.7. 0',10 version='0.7.3', 11 11 url='http://www.trac-hacks.org/wiki/TimingAndEstimationPlugin', 12 12 license='http://www.opensource.org/licenses/mit-license.php', timingandestimationplugin/branches/trac0.11/timingandestimationplugin/reports.py
r3784 r4382 9 9 "uuid":"b24f08c0-d41f-4c63-93a5-25e18a8513c2", 10 10 "title":"Ticket Work Summary", 11 "version":2 0,11 "version":21, 12 12 "sql":""" 13 13 SELECT __ticket__ as __group__, __style__, ticket, … … 57 57 "uuid":"af13564f-0e36-4a17-96c0-632dc68d8d14", 58 58 "title":"Milestone Work Summary", 59 "version":1 7,59 "version":18, 60 60 "sql":""" 61 61 … … 81 81 UNION 82 82 83 SELECT 'background-color:#DFE;' as __style__, NULLas ticket,83 SELECT 'background-color:#DFE;' as __style__, 0 as ticket, 84 84 sum( CASE WHEN newvalue = '' OR newvalue IS NULL THEN 0 85 85 ELSE CAST( newvalue AS DECIMAL ) END) as newvalue, 'Total work done' as summary, … … 106 106 "uuid":"7bd4b0ce-da6d-4b11-8be3-07e65b540d99", 107 107 "title":"Developer Work Summary", 108 "version":1 7,108 "version":18, 109 109 "sql":""" 110 110 SELECT author as __group__,__style__, ticket, summary, … … 128 128 UNION 129 129 130 SELECT 'background-color:#DFE;' as __style__, author, NULLas ticket,130 SELECT 'background-color:#DFE;' as __style__, author, 0 as ticket, 131 131 Null as summary, 132 132 SUM( CASE WHEN newvalue = '' OR newvalue IS NULL THEN 0 … … 149 149 },#END Hours Per Developer 150 150 ] 151 th_version =1 5151 th_version =16 152 152 ticket_hours_reports = [ 153 153 { … … 192 192 SELECT '1' AS __color__, 193 193 'background-color:#DFE;' as __style__, 194 NULLas ticket, 'Total' AS summary,194 0 as ticket, 'Total' AS summary, 195 195 NULL as component,NULL as version, NULL as severity, NULL as milestone, 196 196 'Time Remaining: ' as status, … … 280 280 SELECT '1' AS __color__, 281 281 'background-color:#DFE;' as __style__, 282 NULLas ticket, 'Total' AS summary,282 0 as ticket, 'Total' AS summary, 283 283 NULL as component,NULL as version, NULL as severity, NULL as milestone, 284 284 'Time Remaining: ' as status, … … 367 367 t.component AS __group__, 368 368 'background-color:#DFE;' as __style__, 369 NULLas ticket, 'Total work' AS summary,369 0 as ticket, 'Total work' AS summary, 370 370 t.component as __component__, NULL as version, NULL as severity, 371 371 NULL as milestone, 'Time Remaining: ' as status, … … 454 454 t.component AS __group__, 455 455 'background-color:#DFE;' as __style__, 456 NULLas ticket, 'Total work' AS summary,456 0 as ticket, 'Total work' AS summary, 457 457 t.component as __component__, NULL as version, NULL as severity, 458 458 NULL as milestone, 'Time Remaining: ' as status, … … 540 540 t.milestone AS __group__, 541 541 'background-color:#DFE;' as __style__, 542 NULLas ticket, 'Total work' AS summary,542 0 as ticket, 'Total work' AS summary, 543 543 NULL as component,NULL as version, NULL as severity, 544 544 t.milestone as __milestone__, 'Time Remaining: ' as status, … … 627 627 t.milestone AS __group__, 628 628 'background-color:#DFE;' as __style__, 629 NULLas ticket, 'Total work' AS summary,629 0 as ticket, 'Total work' AS summary, 630 630 NULL as component,NULL as version, NULL as severity, 631 631 t.milestone as __milestone__,
