Mercurial > code > home > repos > gcalendarwatch
changeset 13:d89a14f4d3ff
rename graph paths to have 'calendar' in them
author | drewp@bigasterisk.com |
---|---|
date | Sun, 09 Feb 2020 22:30:18 -0800 |
parents | ade2cc9067a9 |
children | 8c040ebe7b7c |
files | gcalendarwatch.py |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/gcalendarwatch.py Tue Feb 04 00:19:25 2020 -0800 +++ b/gcalendarwatch.py Sun Feb 09 22:30:18 2020 -0800 @@ -374,10 +374,10 @@ (r"/", Index), (r'/events', EventsPage), (r'/pollNow', PollNow), - (r'/graph', CycloneGraphHandler, {'masterGraph': agendaGraph}), - (r'/graph/events', CycloneGraphEventsHandler, {'masterGraph': agendaGraph}), - (r'/countdownGraph', CycloneGraphHandler, {'masterGraph': countdownGraph}), - (r'/countdownGraph/events', CycloneGraphEventsHandler, {'masterGraph': countdownGraph}), + (r'/graph/calendar/upcoming', CycloneGraphHandler, {'masterGraph': agendaGraph}), + (r'/graph/calendar/upcoming/events', CycloneGraphEventsHandler, {'masterGraph': agendaGraph}), + (r'/graph/calendar/countdown', CycloneGraphHandler, {'masterGraph': countdownGraph}), + (r'/graph/calendar/countdown/events', CycloneGraphEventsHandler, {'masterGraph': countdownGraph}), (r'/countdowns.json', Countdowns), ] cyclone.web.Application.__init__(self, handlers,