Changeset 4783

Show
Ignore:
Timestamp:
11/12/08 19:03:26 (2 months ago)
Author:
bobbysmith007
Message:

closes #1593 made billdates render in a manner close to ISO 8601 (without TZ)

Files:

Legend:

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

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

    r4782 r4783  
    2828        now = int(now) 
    2929        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) 
    3232        sql = """ 
    3333        INSERT INTO bill_date (time, set_when, str_value) 
  • timingandestimationplugin/branches/trac0.11-Permissions/setup.py

    r4382 r4783  
    88      description='Plugin to make Trac support time estimation and tracking with permissions', 
    99      keywords='trac plugin estimation timetracking permissions', 
    10       version='0.7.3', 
     10      version='0.7.4', 
    1111      url='http://www.trac-hacks.org/wiki/TimingAndEstimationPlugin', 
    1212      license='http://www.opensource.org/licenses/mit-license.php', 
  • timingandestimationplugin/branches/trac0.11-Permissions/timingandestimationplugin/webui.py

    r4782 r4783  
    3636        now = int(now) 
    3737        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) 
    4040        sql = """ 
    4141        INSERT INTO bill_date (time, set_when, str_value) 
  • timingandestimationplugin/branches/trac0.11/setup.py

    r4382 r4783  
    88      description='Plugin to make Trac support time estimation and tracking', 
    99      keywords='trac plugin estimation timetracking', 
    10       version='0.7.3', 
     10      version='0.7.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/webui.py

    r4782 r4783  
    3131        now = int(now) 
    3232        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) 
    3535        sql = """ 
    3636        INSERT INTO bill_date (time, set_when, str_value)