# HG changeset patch # User jbe/bsw # Date 1264158000 -3600 # Node ID 5cba83b3f41120bfeedebcb68ddb5a25a9a3d9a1 # Parent 4fb227630097d99b7d8effc99894bdcd06457103 Version 1.0.6 Bugfix: class_prototype:add_reference{...} uses now qualified names in SQL queries to allow JOINs Fixes in the documentation of slot.put_into and trace.debug diff -r 4fb227630097 -r 5cba83b3f411 doc/autodoc-header.htmlpart --- a/doc/autodoc-header.htmlpart Sat Jan 02 12:00:00 2010 +0100 +++ b/doc/autodoc-header.htmlpart Fri Jan 22 12:00:00 2010 +0100 @@ -55,10 +55,10 @@ color: #505050; } - WebMCP 1.0.5 Documentation + WebMCP 1.0.6 Documentation -

WebMCP 1.0.5 Documentation

+

WebMCP 1.0.6 Documentation

WebMCP is a completely new web development framework, and has not been extensively tested yet. The API might change at any time, but in future releases there will be a list of all changes, which break downward compatibility.

diff -r 4fb227630097 -r 5cba83b3f411 framework/cgi-bin/webmcp.lua --- a/framework/cgi-bin/webmcp.lua Sat Jan 02 12:00:00 2010 +0100 +++ b/framework/cgi-bin/webmcp.lua Fri Jan 22 12:00:00 2010 +0100 @@ -1,6 +1,6 @@ #!/usr/bin/env lua -_WEBMCP_VERSION = "1.0.5" +_WEBMCP_VERSION = "1.0.6" -- include "../lib/" in search path for libraries do diff -r 4fb227630097 -r 5cba83b3f411 framework/env/slot/put_into.lua --- a/framework/env/slot/put_into.lua Sat Jan 02 12:00:00 2010 +0100 +++ b/framework/env/slot/put_into.lua Fri Jan 22 12:00:00 2010 +0100 @@ -1,5 +1,5 @@ --[[-- -slot.put( +slot.put_into( slot_ident -- name of a slot string1, -- string to be written into the named slot string2, -- another string to be written into the named slot diff -r 4fb227630097 -r 5cba83b3f411 framework/env/trace/debug.lua --- a/framework/env/trace/debug.lua Sat Jan 02 12:00:00 2010 +0100 +++ b/framework/env/trace/debug.lua Fri Jan 22 12:00:00 2010 +0100 @@ -1,5 +1,5 @@ --[[-- -trace_debug( +trace.debug( message -- message to be inserted into the trace log ) diff -r 4fb227630097 -r 5cba83b3f411 libraries/mondelefant/mondelefant.lua --- a/libraries/mondelefant/mondelefant.lua Sat Jan 02 12:00:00 2010 +0100 +++ b/libraries/mondelefant/mondelefant.lua Fri Jan 22 12:00:00 2010 +0100 @@ -870,7 +870,7 @@ ids } else - selector:add_where{'"$" IN ($)', {that_key}, ids} + selector:add_where{'$."$" IN ($)', {model:get_qualified_table()}, {that_key}, ids} end if options.order == nil and default_order then selector:add_order_by(default_order)