diff -r 9fc0eb751b6a -r d4848d807fd1 handlers.py --- a/handlers.py Wed Feb 11 23:22:13 2009 +0200 +++ b/handlers.py Wed Feb 11 23:38:05 2009 +0200 @@ -133,7 +133,7 @@ ) @preferences.handler(prefs.formatter, prefs.timezone, prefs.count) -def channel_link (request, channel, timestamp, formatter, timezone, count) : +def channel_link (request, channel, timestamp, formatter, timezone, count, type=None) : """ Display channel_date for specific UTC timestamp """ @@ -163,6 +163,10 @@ count = count, max = max, lines = lines, + + # for prev/next date + date_next = channel.source.get_next_date(timestamp), + date_prev = channel.source.get_prev_date(timestamp), ) @preferences.handler(prefs.timezone)