--------------------------------------------------- -- Licensed under the GNU General Public License v2 -- * (c) 2010, Adrian C. -- * (c) 2009, Lucas de Vries --------------------------------------------------- -- {{{ Grab environment local os = { date = os.date } local setmetatable = setmetatable -- }}} -- Date: provides access to os.date with optional time formatting module("vicious.widgets.date") -- {{{ Date widget type local function worker(format, warg) return os.date(format or nil, warg or nil) end -- }}} setmetatable(_M, { __call = function(_, ...) return worker(...) end })