webmcp

changeset 6:5cba83b3f411 v1.0.6

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
author jbe/bsw
date Fri Jan 22 12:00:00 2010 +0100 (2010-01-22)
parents 4fb227630097
children f7413a1a872c
files doc/autodoc-header.htmlpart framework/cgi-bin/webmcp.lua framework/env/slot/put_into.lua framework/env/trace/debug.lua libraries/mondelefant/mondelefant.lua
line diff
     1.1 --- a/doc/autodoc-header.htmlpart	Sat Jan 02 12:00:00 2010 +0100
     1.2 +++ b/doc/autodoc-header.htmlpart	Fri Jan 22 12:00:00 2010 +0100
     1.3 @@ -55,10 +55,10 @@
     1.4          color: #505050;
     1.5        }
     1.6      </style>
     1.7 -    <title>WebMCP 1.0.5 Documentation</title>
     1.8 +    <title>WebMCP 1.0.6 Documentation</title>
     1.9    </head>
    1.10    <body>
    1.11 -    <h1>WebMCP 1.0.5 Documentation</h1>
    1.12 +    <h1>WebMCP 1.0.6 Documentation</h1>
    1.13      <p>
    1.14        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.
    1.15      </p>
     2.1 --- a/framework/cgi-bin/webmcp.lua	Sat Jan 02 12:00:00 2010 +0100
     2.2 +++ b/framework/cgi-bin/webmcp.lua	Fri Jan 22 12:00:00 2010 +0100
     2.3 @@ -1,6 +1,6 @@
     2.4  #!/usr/bin/env lua
     2.5  
     2.6 -_WEBMCP_VERSION = "1.0.5"
     2.7 +_WEBMCP_VERSION = "1.0.6"
     2.8  
     2.9  -- include "../lib/" in search path for libraries
    2.10  do
     3.1 --- a/framework/env/slot/put_into.lua	Sat Jan 02 12:00:00 2010 +0100
     3.2 +++ b/framework/env/slot/put_into.lua	Fri Jan 22 12:00:00 2010 +0100
     3.3 @@ -1,5 +1,5 @@
     3.4  --[[--
     3.5 -slot.put(
     3.6 +slot.put_into(
     3.7    slot_ident  -- name of a slot
     3.8    string1,    -- string to be written into the named slot
     3.9    string2,    -- another string to be written into the named slot
     4.1 --- a/framework/env/trace/debug.lua	Sat Jan 02 12:00:00 2010 +0100
     4.2 +++ b/framework/env/trace/debug.lua	Fri Jan 22 12:00:00 2010 +0100
     4.3 @@ -1,5 +1,5 @@
     4.4  --[[--
     4.5 -trace_debug(
     4.6 +trace.debug(
     4.7    message     -- message to be inserted into the trace log
     4.8  )
     4.9  
     5.1 --- a/libraries/mondelefant/mondelefant.lua	Sat Jan 02 12:00:00 2010 +0100
     5.2 +++ b/libraries/mondelefant/mondelefant.lua	Fri Jan 22 12:00:00 2010 +0100
     5.3 @@ -870,7 +870,7 @@
     5.4            ids
     5.5          }
     5.6        else
     5.7 -        selector:add_where{'"$" IN ($)', {that_key}, ids}
     5.8 +        selector:add_where{'$."$" IN ($)', {model:get_qualified_table()}, {that_key}, ids}
     5.9        end
    5.10        if options.order == nil and default_order then
    5.11          selector:add_order_by(default_order)

Impressum / About Us