]> git.tdb.fi Git - ext/subsurface.git/commit
Generate date string for the dive list dynamically
authorLinus Torvalds <torvalds@linux-foundation.org>
Sun, 4 Sep 2011 19:09:48 +0000 (12:09 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sun, 4 Sep 2011 19:19:20 +0000 (12:19 -0700)
commitaab4d593bdbffef8442282318778a9833cbc7a43
tree42d1deea38a5c9155c9138a0af85d14d04198e8a
parent230a13476d9af732cb60b2c0393feeadb5b39e67
Generate date string for the dive list dynamically

.. and sort based on the 'time_t' value itself.

This allows us to use a more compact date format that doesn't need to
sort alphabetically, because sorting by date is always based on the date
value.  So we can use just a two-digit year, and skip the seconds, to
keep the column narrow, while still sorting correctly.

Also, "Depth" is a nice header string, but it is wider than the column
itself, which makes the whole column wider than necessary.  So put the
units in the header instead of in the string, keeping things narrow.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
dive.c
dive.h
divelist.c
parse-xml.c