From a5cd0814f1ae9dc2449096f22ea28eb3a63722cf Mon Sep 17 00:00:00 2001 From: Jesse Gumm Date: Mon, 25 Mar 2013 15:21:05 -0500 Subject: [PATCH] Stub for PHP TZ characters --- src/qdate.erl | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/qdate.erl b/src/qdate.erl index aeba040..194e770 100644 --- a/src/qdate.erl +++ b/src/qdate.erl @@ -185,7 +185,16 @@ floor(N) when N < 0 -> Int==N -> Int; true -> Int-1 end. - + +tz_formatting(Date,Format,TZ) -> + %% e, I, O, P, and T, Z + %% e = "UTC, GMT, Atlantic,/Azores" + %% I = Daylight Saving on = 1, off = 0 + %% O = GMT diff in hours: +0200 + %% P = GMT diff in hours with color: +02:00 + %% T = TZ abbreviation: EST, MDT + %% Z = TZ offset in seconds: -43200 - 50400 + not_implemented. %% TESTS -include_lib("eunit/include/eunit.hrl").