webmcp

view framework/env/format/timestamp.lua @ 28:ea2e8f3a2776

allow webmcp path to be set in cgi script

this allows another script to include the webmcp script when the cwd is not the cgi-bin. the script needs to set the WEBMCP_PATH variable.
author Daniel Poelzleithner <poelzi@poelzi.org>
date Sun Sep 19 01:36:08 2010 +0200 (2010-09-19)
parents 9fdfb27f8e67
children 08c107cc4fce
line source
1 --[[--
2 text = -- text with the given timestamp value formatted according to the locale settings
3 format.timestamp(
4 value, -- a timestamp or nil
5 {
6 nil_as = nil_text -- text to be returned for a nil value
7 }
8 )
10 Formats a timestamp according to the locale settings.
12 --]]--
14 function format.timestamp(value, options)
15 if value == nil then
16 return options.nil_as or ""
17 end
18 return format.date(value, options) .. " " .. format.time(value, options)
19 end

Impressum / About Us