Edgewall Software
Modify

Opened 20 years ago

Closed 19 years ago

#884 closed defect (fixed)

Changeset should display the time as defined by the locale

Reported by: anonymous Owned by: Jonas Borgström
Priority: lowest Milestone: 0.9
Component: version control/changeset view Version: devel
Severity: trivial Keywords:
Cc: Branch:
Release Notes:
API Changes:
Internal Changes:

Description

Patch for Changeset.py:

@@ -179,7 +179,7 @@
         changeset_info = self.get_changeset_info (self.rev)
 
         self.req.hdf.setValue('changeset.time',
-                              time.strftime('%c', time.localtime(int(changeset_info['time']))))
+                              time.asctime (time.localtime(int(changeset_info['time']))))
         author = changeset_info['author'] or 'anonymous'
         self.req.hdf.setValue('changeset.author', util.escape(author))
         self.req.hdf.setValue('changeset.message',

Attachments (0)

Change History (2)

comment:1 by anonymous, 20 years ago

Summary: Changeset should display the Time as defined by the localeChangeset should display the time as defined by the locale

comment:2 by Christopher Lenz, 19 years ago

Milestone: 0.9
Resolution: fixed
Status: newclosed

It does that now.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Jonas Borgström.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from Jonas Borgström to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.