A few days ago, I made a screencast for you about the cool new podcatcher plugin. What I didn't knew there was, that phil had already closed the ticket #510 (btw.: Yeepee, we've a new server, which is much faster. thanks @thomas). That ticket enables a very good thing for the podcatcher plugin, because it makes it the label of a uri configurable. Before we had this ugly names in the menu, like denkdranvblog for rss://feeds.feedburner.com/denkedranvlog, quicktime_daily_enclosures for rss://www.rocketboom.com/vlog/quicktime_daily_enclosures.xml or index.xml for rss://www.reallifecomics.com/index.xml. That was really bad mainly if you have several uris with the name (like index.xml and index.xml). So I changed my config file and, well, it works. Take a look (by clicking it):
Before:

Now:

much prettier, isn't it?
How to make this work?
It is quiet simple. You just have to make a subsection in configfile underneath the activity, which is using this uri with the name of the uri and simply add the variable 'label' with the name you like it to have. Easy, right
? Okay. here is an example: the rss-uri for the podcatching of rocketboom is 'rss://www.rocketboom.com/vlog/quicktime_daily_enclosures.xml' and we added it to the video-activity. So then we go one line after the locations-line in the configfile with our favorite editor and add the bracket for the subsection: '[['. then we put in the name of this subsection, which is simply the uri-string again (but without any ') and then we close the subsection-name by adding the ending brakets: ']]'. Go to the line beneath. Now you are in this subsection and you can set several options. Currently elisa only support the 'label' one. Then let us set it by doing a 'label = "our_value"'. You can do this for every uri now. For me it looks like this:
[base:video_activity]
# the video media locations
locations = ['rss://feeds.feedburner.com/denkedranvlog', 'rss://www.rocketboom.com/vlog/quicktime_daily_enclosures.xml']
[[rss://www.rocketboom.com/vlog/quicktime_daily_enclosures.xml]]
label = 'Rocketboom'
[[rss://feeds.feedburner.com/denkedranvlog]]
label = 'Denk Dran'
So. Have a lot of fun!