Index: simplefeed.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/simplefeed/simplefeed.module,v
retrieving revision 1.44.2.11
diff -u -p -r1.44.2.11 simplefeed.module
--- simplefeed.module	13 Aug 2008 22:28:17 -0000	1.44.2.11
+++ simplefeed.module	30 Sep 2008 00:59:11 -0000
@@ -375,6 +375,17 @@ function simplefeed_admin_settings() {
     '#options' => $period,
     '#default_value' => variable_get('simplefeed_refresh', 3600),
   );
+  
+  $form['simplefeed_no_follow'] = array(
+    '#type' => 'radios',
+    '#title' => t('Add No Follow attribute to outbound links'),
+    '#description' => t('Setting this to yes will prevent the sites PageRank from being affected by the feed links. See: ' . l('http://drupal.org/node/273934','http://drupal.org/node/273934')),
+    '#options' => array (
+        1 => t('Yes'),
+        0 => t('No'),
+      ),
+    '#default_value' => variable_get('simplefeed_no_follow', 0),
+  );
 
   foreach (filter_formats() as $id => $format) {
     $formats[$id] = $format->name;
Index: simplefeed_item.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/simplefeed/simplefeed_item.module,v
retrieving revision 1.51.2.15
diff -u -p -r1.51.2.15 simplefeed_item.module
--- simplefeed_item.module	2 Jul 2008 20:09:51 -0000	1.51.2.15
+++ simplefeed_item.module	30 Sep 2008 00:59:11 -0000
@@ -304,6 +304,10 @@ function simplefeed_item_link($type, $no
       'absolute' => TRUE,
       'attributes' => array('title' => t('Goto the source of this post'))
     );
+    
+    if (variable_get('simplefeed_no_follow', 0)) {
+      $links['simplefeed_item_url']['attributes']['rel'] = 'nofollow';
+    }
   }
 
   return $links;
Index: simplefeed_item_views.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/simplefeed/simplefeed_item_views.inc,v
retrieving revision 1.6.2.2
diff -u -p -r1.6.2.2 simplefeed_item_views.inc
--- simplefeed_item_views.inc	19 Feb 2008 18:04:13 -0000	1.6.2.2
+++ simplefeed_item_views.inc	30 Sep 2008 00:59:11 -0000
@@ -178,7 +178,11 @@ function views_query_handler_field_simpl
  */
 function views_handler_field_simplefeed_item_title($fieldinfo, $fielddata, $value, $data) {
   if ($fielddata['options']) {
-    return l($data->title, $value);
+    $attr = array();
+    if (variable_get('simplefeed_no_follow', 0)) {
+      $attr['rel'] = 'nofollow';
+    }
+    return l($data->title, $value, $attr);
   }
   else {
     return check_plain($data->title);
