""" This plugin will fill a list of feeds in the style of In your template use the tag __feedlist__ to have replaced with all the configured feeds. Version 0.1 Daniel Molkentin """ import rawdoglib.plugins import rawdoglib.rawdog import cgi def links_output_bits(rawdog, config, bits): links = "\n" bits['feedlist'] = links rawdoglib.plugins.attach_hook('output_bits', links_output_bits)