Edgewall Software

Changes between Version 22 and Version 23 of TracTicketsCustomTimeFields


Ignore:
Timestamp:
Apr 20, 2010, 1:18:34 AM (14 years ago)
Author:
hoff.st@…
Comment:

added not regarding side-effects of 'None' string in db and other known bugs

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketsCustomTimeFields

    v22 v23  
    6262Problems (with priority) occurring arround ticket changes
    6363 * (C) preview time stamp format is not pretty, like '2010-04-19 20:03:00+00:00' instead of '19.04.2010 22:03:00'
    64  * (A) bad conversion of date/time value {{{None}}} to db string value {{{'None'}}} instead of {{{''}}}
     64 * (A) bad conversion of date/time value {{{None}}} to db string value {{{'None'}}} instead of {{{''}}}, gets overwritten with current date on next change, no date/time value deletion possible so far
    6565 * (B) ticket diff view for change history exposes raw values from db, should convert microseconds POSIX to pretty time stamp string
    66  * (A) notification unpatched, throwing an error note related to unexpected datetime.datetime input to [TracNotification Trac Notification] system
     66 * (B) [TracNotification Trac Notification] system unpatched, need to test and investigate, if necessary at all
    6767fixed:
     68 * notification throwing an error note related to unexpected datetime.datetime input to [TracNotification Trac Notification] system: gone while correcting functions preceding in ticket change process, not even sure it was Trac Notification, since this was not active at time of test
    6869 * current date is injected whenever time field is left/made empty: after extending all other functions the parser logic was the one place, where 'default_now' logic still happened overwriting undefined date/time
    6970 * change to switchable conversion of empty values with new attribute {{{default_now = True(default)|False}}} was incomplete: not done for older function to_timestamp(), so exception raised for some wiki pages (fix will be committed into next rev)
    7071 * move to microsecond timestamp caused a mess with calculations (added '* 10E07' instead of '* 10E06' and the like)
    71  * Server internal exception turned out to be caused by different versions of trac installed in /usr and /usr/local on my test system interfering on build time
     72 * server internal exception turned out to be caused by different versions of trac installed in /usr and /usr/local on my test system interfering on build time
    7273
    7374==== Making ''mxDateTime.Parser'' an option ====