webmcp
view framework/env/execute/view.lua @ 4:5e32ef998acf
Version 1.0.4
ui.link{...} with POST target can now be parameterized with BOTH content and text to allow HTML content for JavaScript browsers and a text-only version for accessiblity
Changes related to database selectors:
- Support for row-based locking
- New method :count(), caching and returning the number of rows, which WOULD have been returned by :exec()
- Bugfix: WHERE and HAVING expressions are now enclosed in parenthesis to avoid problems with operator precedence
ui.script{...} now supports external .js files
Changes in langtool.lua to cope with escaped new-line chars (\n)
ui.link{...} with POST target can now be parameterized with BOTH content and text to allow HTML content for JavaScript browsers and a text-only version for accessiblity
Changes related to database selectors:
- Support for row-based locking
- New method :count(), caching and returning the number of rows, which WOULD have been returned by :exec()
- Bugfix: WHERE and HAVING expressions are now enclosed in parenthesis to avoid problems with operator precedence
ui.script{...} now supports external .js files
Changes in langtool.lua to cope with escaped new-line chars (\n)
author | jbe/bsw |
---|---|
date | Fri Dec 25 12:00:00 2009 +0100 (2009-12-25) |
parents | 9fdfb27f8e67 |
children | eb3e236d261d |
line source
1 --[[--
2 execute.view{
3 module = module, -- module name of the view to be executed
4 view = view, -- name of the view to be executed
5 id = id, -- id to be returned by param.get_id(...) during execution
6 params = params -- parameters to be returned by param.get(...) during execution
7 }
9 Executes a view directly (without associated filters).
11 --]]--
13 function execute.view(args)
14 local module = args.module
15 local view = args.view
16 trace.enter_view{ module = module, view = view }
17 execute.file_path{
18 file_path = encode.file_path(
19 request.get_app_basepath(),
20 'app', request.get_app_name(), module, view .. '.lua'
21 ),
22 id = args.id,
23 params = args.params
24 }
25 trace.execution_return()
26 end