From d858153fcee803fa1d4e73ba9ea3a3f60d9520e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 11 Aug 2011 10:24:50 +0200 Subject: Use cowboy_clock types in cowboy_cookies instead of calendar Until calendar exports them at least. --- src/cowboy_clock.erl | 1 + src/cowboy_cookies.erl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/cowboy_clock.erl b/src/cowboy_clock.erl index 66fc009..3597bdd 100644 --- a/src/cowboy_clock.erl +++ b/src/cowboy_clock.erl @@ -38,6 +38,7 @@ -type time() :: {hour(), minute(), second()}. -type datetime() :: {date(), time()}. +-export_type([date/0, time/0, datetime/0]). -record(state, { universaltime = undefined :: undefined | datetime(), diff --git a/src/cowboy_cookies.erl b/src/cowboy_cookies.erl index d7addd3..9c6c4c3 100644 --- a/src/cowboy_cookies.erl +++ b/src/cowboy_cookies.erl @@ -23,7 +23,7 @@ -type kv() :: {Name::binary(), Value::binary()}. -type kvlist() :: [kv()]. -type cookie_option() :: {max_age, integer()} - | {local_time, {calendar:date(), calendar:time()}} + | {local_time, {cowboy_clock:date(), cowboy_clock:time()}} | {domain, binary()} | {path, binary()} | {secure, true | false} | {http_only, true | false}. -export_type([kv/0, kvlist/0, cookie_option/0]). -- cgit v1.2.3