QUOTE
Would you mind entering a little tutorial about how to add something like that (a google news feed) to my site
Er..
Ok, first thing I need to say is that I only started using MT this week so if I mis-speak or other wise screw up please bear with me
First thing I did was install mt-list and mt-rss_feed both available at
http://www.mplode.com/tima/files/mt-plugins/Be sure to check out
this tutorial on the install of rss_feed it is
VERY good & easy to follow to boot

Now, go get the sourcecode for gnews2rss (see earlier posts for url) and put it up on your site. I called my grabnews.php
I set up a cronjob on my host as follows:
*/30 * * * * lynx --source "http://my.server.com/grabnews.php?q=Howard+Dean&num=15" > /path/to/mt/dean.xml
That goes and grabs new headlines every 30 minutes (I also use mt-rebuild.cgi in a cronjob that rebuilds the index right after this...)
This creates a RSS file in the same directory as my MT install, so I used the mt-rss_feed locally to pull it in as follows:
Enter the following where you want the feed to appear:
CODE
<!-- Start News Scrapes-->
<div class="sidetitle">
News
</div>
<div class="side">
<MTList name="feeds">
http://www.yourserver.com/dean.xml
</MTList>
<MTListLoop name="feeds">
<MTRSSFeed>
<u>Google News: Gov. Howard Dean</u><br/>
<MTRSSFeedItems lastn="7">
<li><a href="<$MTRSSFeedItemLink$>" target="_blank" ><$MTRSSFeedItemTitle$></a><br />
</MTRSSFeedItems>
</MTRSSFeed>
</MTListLoop>
<p>Syndicated using <a href="http://www.mplode.com/tima/files/mt-plugins/#mt-rssfeed";>mt-rssfeed</a></p>
</div>
<!-- End News Scrapes-->
Rebuild the index and away ya go ...
I am sure that there is a more elegant and optimized way to do this, but it works and in my book that's 99% of the battle :-D