I've done the Podcast feed by adding a taxonomy term for every article containing mp3's, so there would be ready taxo/term/id/feed-address by Drupal.

So, this works, but Is there any way to modify the feed details, or could someone direct me to a function that does the feeds?
I'm trying to change the following information in the feed, since most of my users use iTunes, which shows these items that are automatically generated by Drupal.

$site_name - $term_title

http://$site_domain/taxonomy/term/$term_id/0
en
No image at all, having an image would be great too

Maybe there is a module, or a need for a module, where you could specify the feed detail by giving the taxonomy term ID and based on that those shown above could be changed?

Comments

tormu’s picture

CRAP, no code shown. Here's what should have been on the post there as the items that I'd like to change

<title>$site_name - $term_title</title>
<link>http://$site_domain/taxonomy/term/$term_id/0</link>
<description/>
<language>en</language>
No image
tormu’s picture

I found two functions that could do what I'm trying to do - add stuff to the channel info in RSS feed.
http://api.drupal.org/api/4.7/function/node_feed
http://api.drupal.org/api/4.7/function/format_rss_channel

As far as I know, this function is the one responsible for the generation of the feed and it calls the above functions later:
http://api.drupal.org/api/4.7/function/taxonomy_term_page

However, I can't find any way to interact with these functions; is there no way I could insert channel data through a module? Wouldn't like to fork in to them directly :(

tormu’s picture

GRRR. Guess I have to edit the common.inc directly :(