# HG changeset patch # User jbe # Date 1427369119 -3600 # Node ID 8cf6d927d07447c082a3290450503e8e01ee09ec # Parent d2429d53a15847e51fa91f9e77ea0fd0e6640d37 Fixed commas in autodoc comments diff -r d2429d53a158 -r 8cf6d927d074 framework/env/request/handler.lua --- a/framework/env/request/handler.lua Thu Mar 26 03:27:32 2015 +0100 +++ b/framework/env/request/handler.lua Thu Mar 26 12:25:19 2015 +0100 @@ -1,7 +1,7 @@ --[[-- success = -- false if an error occurred, true otherwise request.handler( - http_request, -- HTTP request object + http_request -- HTTP request object ) Called by mcp.lua to process an HTTP request. Calls request.router(), and handles the request. Note: request initializers will have to be (automatically) executed before this function is invoked by mcp.lua. diff -r d2429d53a158 -r 8cf6d927d074 framework/env/ui/paginate.lua --- a/framework/env/ui/paginate.lua Thu Mar 26 03:27:32 2015 +0100 +++ b/framework/env/ui/paginate.lua Thu Mar 26 12:25:19 2015 +0100 @@ -1,13 +1,13 @@ --[[-- ui.paginate{ - selector = selector, -- a selector for items from the database (will be modified) - anchor = anchor, -- optional name of anchor in document to jump to - per_page = per_page, -- items per page, defaults to 10 - container_attr = container_attr -- html attr for the container element - name = name, -- name of the CGI get variable, defaults to "page" - page = page, -- directly specify a page, and ignore 'name' parameter + selector = selector, -- a selector for items from the database (will be modified) + anchor = anchor, -- optional name of anchor in document to jump to + per_page = per_page, -- items per page, defaults to 10 + container_attr = container_attr, -- html attr for the container element + name = name, -- name of the CGI get variable, defaults to "page" + page = page, -- directly specify a page, and ignore 'name' parameter content = function() - ... -- code block which should be encapsulated with page selection links + ... -- code block which should be encapsulated with page selection links end }