# HG changeset patch # User bsw # Date 1262430000 -3600 # Node ID 374bbc2ff102c6d7989b14dc8f5899d727740e86 # Parent 3941792e8be6af717b105ae12ae07c7892536089 Version beta4 Bug fixed, which made it impossible to explicitly become interested in a topic Fixed positioning of dialog for entering a new suggestion Display of 404 pages diff -r 3941792e8be6 -r 374bbc2ff102 app/main/index/404.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/main/index/404.lua Sat Jan 02 12:00:00 2010 +0100 @@ -0,0 +1,1 @@ +slot.put_into("title", "404 Not found") diff -r 3941792e8be6 -r 374bbc2ff102 app/main/interest/_action/update.lua --- a/app/main/interest/_action/update.lua Sat Jan 02 12:00:00 2010 +0100 +++ b/app/main/interest/_action/update.lua Sat Jan 02 12:00:00 2010 +0100 @@ -2,8 +2,7 @@ local interest = Interest:by_pk(issue_id, app.session.member.id) --- TODO important m1 selectors returning result _SET_! -local issue = interest:get_reference_selector("issue"):for_share():single_object_mode():exec() +local issue = Issue:by_id(issue_id) if issue.closed then slot.put_into("error", _"This issue is already closed.") diff -r 3941792e8be6 -r 374bbc2ff102 config/default.lua --- a/config/default.lua Sat Jan 02 12:00:00 2010 +0100 +++ b/config/default.lua Sat Jan 02 12:00:00 2010 +0100 @@ -1,5 +1,5 @@ config.app_name = "LiquidFeedback" -config.app_version = "beta3" +config.app_version = "beta4" config.app_title = config.app_name .. " (" .. request.get_config_name() .. " environment)" @@ -27,6 +27,9 @@ config.download_use_terms = "=== Nutzungsbedingungen ===\nAlles ist verboten" + +request.set_404_route{ module = 'index', view = '404' } + -- uncomment the following two lines to use C implementations of chosen -- functions and to disable garbage collection during the request, to -- increase speed: diff -r 3941792e8be6 -r 374bbc2ff102 static/style.css --- a/static/style.css Sat Jan 02 12:00:00 2010 +0100 +++ b/static/style.css Sat Jan 02 12:00:00 2010 +0100 @@ -577,10 +577,10 @@ display: none; border: 1px solid #444; width: 42em; - position: absolute; + position: fixed; background-color: #fff; left: 5em; - top: 20ex; + top: 5ex; } .hidden_inline_form a {