# HG changeset patch # User Paul Boddie # Date 1444930670 -7200 # Node ID a18e4a9fc03a1a0930c83058a88eab7fe6b5cfa4 # Parent 8059c4cc34ad23ca153c5f11765d1b6384a9c47b Removed redundant reminder comments. diff -r 8059c4cc34ad -r a18e4a9fc03a imipweb/event.py --- a/imipweb/event.py Thu Oct 15 19:36:26 2015 +0200 +++ b/imipweb/event.py Thu Oct 15 19:37:50 2015 +0200 @@ -311,8 +311,6 @@ page.td.close() page.tr.close() - # NOTE: Permit attendees to suggest others for counter-proposals. - # Handle potentially many values of other kinds. else: @@ -358,7 +356,6 @@ page.td(class_="objectvalue") # Show a form control as organiser for new attendees. - # NOTE: Permit suggested attendee editing for counter-proposals. if self.can_change_object() and self.can_edit_attendee(attendee_uri): self.control("attendee", "value", attendee, size="40") @@ -386,7 +383,6 @@ page.span(dict(self.partstat_items).get(partstat, ""), class_="partstat") # Permit organisers to remove attendees. - # NOTE: Permit the removal of suggested attendees for counter-proposals. if self.can_change_object() and (self.can_remove_attendee(attendee_uri) or self.is_organiser()): @@ -436,7 +432,6 @@ page.p("This event occurs on the following occasions within the next %d days:" % self.get_window_size()) # Show each recurrence in a separate table if editable. - # NOTE: Allow recurrence editing for counter-proposals. if self.can_change_object() and recurrences: @@ -814,7 +809,6 @@ if reply or create or cancel or save: # Update principal event details if organiser. - # NOTE: Handle edited details for counter-proposals. if self.can_change_object(): diff -r 8059c4cc34ad -r a18e4a9fc03a imipweb/resource.py --- a/imipweb/resource.py Thu Oct 15 19:36:26 2015 +0200 +++ b/imipweb/resource.py Thu Oct 15 19:37:50 2015 +0200 @@ -604,7 +604,6 @@ page = self.page # Show controls for editing as organiser. - # NOTE: Allow attendees to edit datetimes for counter-proposals. if self.can_change_object(): page.td(class_="objectvalue dt%s" % (show_start and "start" or "end"))