summaryrefslogtreecommitdiff
path: root/src/print_time.c
diff options
context:
space:
mode:
authorMichael Stapelberg <stapelberg@users.noreply.github.com>2015-12-05 20:00:27 +0100
committerMichael Stapelberg <stapelberg@users.noreply.github.com>2015-12-05 20:00:27 +0100
commit395d02518ccbdc27318ae676075ee4d91f1515d5 (patch)
treebe4adabae8ccab52113198b7b01b7a17fee0244c /src/print_time.c
parent876c1cef8d182ae1898368b415cf67dede279036 (diff)
parentdcd0518e25d7aa84a720780cb70b3f8fca867972 (diff)
Merge pull request #72 from ixjlyons/pango-setting
Implement a pango option
Diffstat (limited to 'src/print_time.c')
-rw-r--r--src/print_time.c25
1 files changed, 22 insertions, 3 deletions
diff --git a/src/print_time.c b/src/print_time.c
index c70a09c..9fa6642 100644
--- a/src/print_time.c
+++ b/src/print_time.c
@@ -33,17 +33,36 @@ void set_timezone(const char *tz) {
}
}
-void print_time(yajl_gen json_gen, char *buffer, const char *title, const char *format, const char *tz, time_t t) {
+void print_time(yajl_gen json_gen, char *buffer, const char *title, const char *format, const char *tz, const char *format_time, time_t t) {
+ const char *walk;
char *outwalk = buffer;
struct tm tm;
+ char timebuf[1024];
if (title != NULL)
INSTANCE(title);
- /* Convert time and format output. */
set_timezone(tz);
localtime_r(&t, &tm);
- outwalk += strftime(outwalk, 4095, format, &tm);
+
+ if (format_time == NULL) {
+ strftime(timebuf, sizeof(timebuf), format, &tm);
+ maybe_escape_markup(timebuf, &outwalk);
+ } else {
+ for (walk = format; *walk != '\0'; walk++) {
+ if (*walk != '%') {
+ *(outwalk++) = *walk;
+ continue;
+ }
+
+ if (BEGINS_WITH(walk + 1, "time")) {
+ strftime(timebuf, sizeof(timebuf), format_time, &tm);
+ maybe_escape_markup(timebuf, &outwalk);
+ walk += strlen("time");
+ }
+ }
+ }
+
*outwalk = '\0';
OUTPUT_FULL_TEXT(buffer);
}