Changeset 4783
- Timestamp:
- 11/12/08 19:03:26 (2 months ago)
- Files:
-
- timingandestimationplugin/branches/trac0.10/setup.py (modified) (1 diff)
- timingandestimationplugin/branches/trac0.10/timingandestimationplugin/webui.py (modified) (1 diff)
- timingandestimationplugin/branches/trac0.11-Permissions/setup.py (modified) (1 diff)
- timingandestimationplugin/branches/trac0.11-Permissions/timingandestimationplugin/webui.py (modified) (1 diff)
- timingandestimationplugin/branches/trac0.11/setup.py (modified) (1 diff)
- timingandestimationplugin/branches/trac0.11/timingandestimationplugin/webui.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
timingandestimationplugin/branches/trac0.10/setup.py
r4233 r4783 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.4', 11 11 url='http://www.trac-hacks.org/wiki/TimingAndEstimationPlugin', 12 12 license='http://www.opensource.org/licenses/mit-license.php', timingandestimationplugin/branches/trac0.10/timingandestimationplugin/webui.py
r4782 r4783 28 28 now = int(now) 29 29 dtwhen = datetime.datetime.fromtimestamp(when); 30 strwhen = "%s /%s/%s %#02d:%#02d:%#02d" % \31 (dtwhen. month, dtwhen.day,dtwhen.year, dtwhen.hour,dtwhen.minute, dtwhen.second)30 strwhen = "%s-%s-%s %#02d:%#02d:%#02d" % \ 31 (dtwhen.year, dtwhen.month, dtwhen.day, dtwhen.hour,dtwhen.minute, dtwhen.second) 32 32 sql = """ 33 33 INSERT INTO bill_date (time, set_when, str_value) timingandestimationplugin/branches/trac0.11-Permissions/setup.py
r4382 r4783 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. 3',10 version='0.7.4', 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/webui.py
r4782 r4783 36 36 now = int(now) 37 37 dtwhen = datetime.datetime.fromtimestamp(when); 38 strwhen = "%s /%s/%s %#02d:%#02d:%#02d" % \39 (dtwhen. month, dtwhen.day,dtwhen.year, dtwhen.hour,dtwhen.minute, dtwhen.second)38 strwhen = "%s-%s-%s %#02d:%#02d:%#02d" % \ 39 (dtwhen.year, dtwhen.month, dtwhen.day, dtwhen.hour,dtwhen.minute, dtwhen.second) 40 40 sql = """ 41 41 INSERT INTO bill_date (time, set_when, str_value) timingandestimationplugin/branches/trac0.11/setup.py
r4382 r4783 8 8 description='Plugin to make Trac support time estimation and tracking', 9 9 keywords='trac plugin estimation timetracking', 10 version='0.7. 3',10 version='0.7.4', 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/webui.py
r4782 r4783 31 31 now = int(now) 32 32 dtwhen = datetime.datetime.fromtimestamp(when); 33 strwhen = "%s /%s/%s %#02d:%#02d:%#02d" % \34 (dtwhen. month, dtwhen.day,dtwhen.year, dtwhen.hour,dtwhen.minute, dtwhen.second)33 strwhen = "%s-%s-%s %#02d:%#02d:%#02d" % \ 34 (dtwhen.year, dtwhen.month, dtwhen.day, dtwhen.hour,dtwhen.minute, dtwhen.second) 35 35 sql = """ 36 36 INSERT INTO bill_date (time, set_when, str_value)
