[Sivukohtaiset rss-syƶtteet Panu Kalliokoski **20120407105217 Ignore-this: 2769a9e390287846cc4e5fbdf4b72670 ] { hunk ./piki.py 190 -def do_rss(dummy): +def do_rss(target): + if target == 'rss': place = logo_string + else: place = target hunk ./piki.py 197 - print '%s' % logo_string + print '%s' % place hunk ./piki.py 199 - print 'Recent changes in %s' % logo_string - print publish_change_summary('rss') + print 'Recent changes in %s' % place + if target == 'rss': print publish_change_summary('rss') + else: print Page(target).rss_item() }