webmcp
view framework/env/format/timestamp.lua @ 11:d76a8857ba62
Added ui.partial and other functions, which allow partial content replacement using XMLHttpRequests; Image support for ui.link
Also includes following changes:
- Fix for rocketcgi library to accept POST data content-types, which contain additional charset information.
- Support arrays passed as params to encode.url (only for keys ending with "[]")
- Version information changed to "1.0.7"
Documentation for added functions is not yet complete.
Also includes following changes:
- Fix for rocketcgi library to accept POST data content-types, which contain additional charset information.
- Support arrays passed as params to encode.url (only for keys ending with "[]")
- Version information changed to "1.0.7"
Documentation for added functions is not yet complete.
author | jbe/bsw |
---|---|
date | Fri Feb 12 18:40:22 2010 +0100 (2010-02-12) |
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