? project_inc_rss_to_cvs.patch Index: project.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/project/project.inc,v retrieving revision 1.53 diff -u -F^f -r1.53 project.inc --- project.inc 19 Sep 2005 20:42:54 -0000 1.53 +++ project.inc 23 Sep 2005 09:25:33 -0000 @@ -247,12 +247,12 @@ function project_project_view(&$node, $t if ($node->cvs) { $links[] = sprintf('%s', $node->cvs, t('Browse the CVS repository')); } - + if (module_exist('cvs')) { - $links[] = l(t('View CVS messages'), 'project/cvs/'. $node->nid); + $links[] = l(t('View CVS messages'), 'project/cvs/'. $node->nid) . l(t('(RSS)'), 'cvs', NULL, '?rss=true&nid='. $node->nid); $links[] = l(t('Developers'), 'project/developers/'. $node->nid); } - + if ($links) { $output .= theme('item_list', $links, t('Development')); }