Edgewall Software

Changes between Version 1 and Version 4 of Ticket #12893


Ignore:
Timestamp:
Aug 15, 2019, 5:11:15 AM (5 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12893

    • Property Milestone next-dev-1.3.xnext-dev-1.5.x
  • Ticket #12893 – Description

    v1 v4  
    1010}}}
    1111
    12 The issue is caused by behavior of [browser:tags/trac-1.2.2/trac/util/datefmt.py@:191-192#L189 to_utimestamp]. We should add a helper function and use in `trac.ticket.model`:
     12The issue is caused by behavior of [browser:tags/trac-1.2.2/trac/util/datefmt.py@:191-192#L189 to_utimestamp]. We should add a helper function:
    1313
    1414{{{#!python
     
    1616    return to_utimestamp(time) if time else None
    1717}}}
     18
     19Timestamps are stored in the following fields:
     20* `attachment.time`
     21* `wiki.time`
     22* `revision.time`
     23* `ticket.time`
     24* `ticket.changetime`
     25* `ticket_change.time`
     26* `milestone.due`
     27* `milestone.completed`
     28* `version.time`
     29* `notification_subscription.time`
     30* `notification_subscription.changetime`