# HG changeset patch # User jbe # Date 1287248598 -7200 # Node ID 17435a7d252b46ca2fb3215d5e1661c892a31765 # Parent 09f749330d1351944ca2c2661edf4d529177af22 Removed excess indentation in env/ui/paginate.lua diff -r 09f749330d13 -r 17435a7d252b framework/env/ui/paginate.lua --- a/framework/env/ui/paginate.lua Sat Oct 16 18:49:55 2010 +0200 +++ b/framework/env/ui/paginate.lua Sat Oct 16 19:03:18 2010 +0200 @@ -1,12 +1,12 @@ --[[-- ui.paginate{ - selector = selector, -- a selector for items from the database - 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 + selector = selector, -- a selector for items from the database + 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 end }