# HG changeset patch # User Paul Boddie # Date 1422985488 -3600 # Node ID 22add687b22b5ea626094ee3171292ae552054ef # Parent b0b6ce5bbe4342aa5f9beb053c1fe4fa5ad502a5 Added some method-related comments. diff -r b0b6ce5bbe43 -r 22add687b22b imip_manager.py --- a/imip_manager.py Tue Feb 03 18:28:57 2015 +0100 +++ b/imip_manager.py Tue Feb 03 18:44:48 2015 +0100 @@ -346,7 +346,7 @@ self.new_page(title="Redirect") self.page.p("Redirecting to: %s" % url) - # Request logic and page fragment methods. + # Request logic methods. def handle_newevent(self): @@ -491,6 +491,8 @@ return handled + # Page fragment methods. + def show_request_controls(self, obj, needs_action): """ @@ -922,6 +924,8 @@ page.form.close() + # More page fragment methods. + def show_calendar_day_controls(self, days): "Show controls for the given 'days' in the calendar." @@ -1187,6 +1191,8 @@ identifier = "slot-%s" % value return value, identifier + # Incoming HTTP request direction. + def select_action(self): "Select the desired action and show the result."