--- planet/config.py.orig 2009-01-13 17:33:37.000000000 +0000 +++ planet/config.py 2009-01-13 17:33:54.000000000 +0000 @@ -102,6 +102,7 @@ define_planet('generator_uri', 'http://intertwingly.net/code/venus/') define_planet('owner_name', 'Anonymous Coward') define_planet('owner_email', '') + define_planet('description', '') define_planet('output_theme', '') define_planet('output_dir', 'output') define_planet('spider_threads', 0) --- planet/shell/tmpl.py.orig 2009-01-13 17:40:29.000000000 +0000 +++ planet/shell/tmpl.py 2009-01-13 17:40:48.000000000 +0000 @@ -218,6 +218,7 @@ output['link'] = config.link() output['owner_name'] = config.owner_name() output['owner_email'] = config.owner_email() + output['description'] = config.description() if config.feed(): output['feed'] = config.feed() output['feedtype'] = config.feed().find('rss')>=0 and 'rss' or 'atom'