5
0
mirror of git://git.proxmox.com/git/pve-common.git synced 2024-12-22 21:33:47 +03:00

CLIFormatter - implement renderer for timestamps using GMT

This commit is contained in:
Dietmar Maurer 2018-07-05 08:48:03 +02:00
parent 1c096521f7
commit e735d7b015

View File

@ -20,6 +20,15 @@ sub render_timestamp {
PVE::JSONSchema::register_renderer('timestamp', \&render_timestamp);
sub render_timestamp_gmt {
my ($epoch) = @_;
# ISO 8601 date format, standard Greenwich time zone
return strftime("%F %H:%M:%S", gmtime($epoch));
}
PVE::JSONSchema::register_renderer('timestamp_gmt', \&render_timestamp_gmt);
sub render_duration {
my ($duration_in_seconds) = @_;