# HG changeset patch # User jbe # Date 1260442800 -3600 # Node ID 795b764629ca6028de007a6f45a5acada912c4b7 # Parent 72860d232f32b1449b830d9cc969142499d1a758 Version 1.0.3 Important bugfix related to internal forwards (Bug was introduced by the restriction of views with underscore prefix in Version 1.0.2) diff -r 72860d232f32 -r 795b764629ca doc/autodoc-header.htmlpart --- a/doc/autodoc-header.htmlpart Thu Dec 10 12:00:00 2009 +0100 +++ b/doc/autodoc-header.htmlpart Thu Dec 10 12:00:00 2009 +0100 @@ -55,10 +55,10 @@ color: #505050; } - WebMCP 1.0.2 Documentation + WebMCP 1.0.3 Documentation -

WebMCP 1.0.2 Documentation

+

WebMCP 1.0.3 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 72860d232f32 -r 795b764629ca framework/cgi-bin/webmcp.lua --- a/framework/cgi-bin/webmcp.lua Thu Dec 10 12:00:00 2009 +0100 +++ b/framework/cgi-bin/webmcp.lua Thu Dec 10 12:00:00 2009 +0100 @@ -1,6 +1,6 @@ #!/usr/bin/env lua -_WEBMCP_VERSION = "1.0.2" +_WEBMCP_VERSION = "1.0.3" -- include "../lib/" in search path for libraries do @@ -346,11 +346,11 @@ end if not request.get_redirect_data() then + request.process_forward() local view = request.get_view() if string.find(view, "^_") then error("Tried to call a private view (prefixed with underscore).") end - request.process_forward() execute.filtered_view{ module = request.get_module(), view = view,