]> git.proxmox.com Git - pve-common.git/commitdiff
CLIFormatter - implement renderer for timestamps using GMT
authorDietmar Maurer <dietmar@proxmox.com>
Thu, 5 Jul 2018 06:48:03 +0000 (08:48 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 5 Jul 2018 06:48:03 +0000 (08:48 +0200)
src/PVE/CLIFormatter.pm

index 549ed3177964ea7d7950cc0acaed7ff1058e2875..052ed6d53282fea9a8637a12419028e031af9870 100644 (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) = @_;