How to render RSS items that link to original aggregated item when using Aggregation module

The Aggregation module (http://drupal.org/project/aggregation) is a much powerful RSS solution than the built-in one.

One problem though is that the RSS publishing doesn't know that a particular node was aggregated from an external source, and the
element points to the Drupal node instead.

After extensive search on this site, I didn't find a clear solution (close ones http://drupal.org/node/87430 and others).

Draft/RFC - Anatomy of Drupal for N00B

I've been looking at 5.5 for a few days; I came in without much
php or css familiarity, but enough unix/web background that there was
no major hair pulling getting it going on my linux test machine. In
the handbooks and howtos, I don't see anything like a "basic anatomy
of a drupal site."

link is not working

Hello,

I was reading http://drupal.org/node/10858 .Was reading "A visual companion to this narration can be found here " where here is a link takes you to http://www.lo.redjupiter.com/gems/iowa/drupalwalk.png but this is forbidden to readers.

Can someone tell me me how to access it.Is this shifted somewhere else?

Regards

6.x documentation

can anyone point me to a link that list all the new enhancements done to 6.x - I found this http://drupal.org/drupal-6.0-beta1 but wondering if there is a better one!

Thanks!

Handbook worthy? Blog Profile Block (user picture, and signature)

In an effort to attempt to give back what little info I know (at least when it comes to drupal) I thought I would see if this might be a useful handbook page (note: I haven't a clue how to make a "new" handbook page). I was attempting to find info about how to display a users picture and a signature in a block on every blog entry and the blog home page for each user, and I couldn't for the life of me find any info about how to do this.

May be a little dirty but placing this in a block and only "showing" the block for */blog and */blog/*. (I use pathauto to create /user/username/blog and /user/username/blog/blog-entry rewritten URI's).

<?php
if ((arg(0) == 'node') && is_numeric(arg(1))) {
$args[0] = arg(1);
$node_id = $args[0];
$node = node_load($node_id);
$user_id = $node->uid;
} else if ((arg(0) == 'blog') && is_numeric(arg(1))) {
$args[0] = arg(1);
$user_id = $args[0];
}

$user_load = user_load($array = array('uid' => $user_id));
echo '<img src="/'.$user_load->picture.'" title="'.$user_load->name.'" /> <h3>'.$user_load->name;
echo "'s Blog</h3>";
echo '<div class="float_clear"></div>';
if($user_load->signature) {
echo '<div id="user_sig">'.$user_load->signature.'</div>';
}
?>

Upgrade documentation: Do I need to upgrade my database?

I am a complete Drupal noob, and am working on applying version 5.5 to 5.3. The 5.5 announcement on the Drupal homepage has a link to the tutorial "Upgrading from previous versions (http://drupal.org/upgrade/). I am following that tutorial. Below is my synopsis of the steps given in the tutorial:

Pages

Subscribe with RSS Subscribe to RSS - Deprecated - Documentation