Index: conf/nutch-default.xml
===================================================================
--- conf/nutch-default.xml	(revision 745643)
+++ conf/nutch-default.xml	(working copy)
@@ -966,6 +966,13 @@
   for most people would be "img,script,link".</description>
 </property>
 
+<property>
+  <name>parser.html.outlinks.ignore_nofollow</name>
+  <value>false</value>
+  <description>Boolean value instructing the parser to ignore nofollow
+  directives on pages and includes them in outlinks. Defaults to false, 
+  which honors the nofollow and does not include them in outlinks</description>
+</property>
 
 <!-- urlfilter plugin properties -->
 
Index: src/plugin/parse-html/src/java/org/apache/nutch/parse/html/HtmlParser.java
===================================================================
--- src/plugin/parse-html/src/java/org/apache/nutch/parse/html/HtmlParser.java	(revision 745643)
+++ src/plugin/parse-html/src/java/org/apache/nutch/parse/html/HtmlParser.java	(working copy)
@@ -110,6 +110,8 @@
   private HtmlParseFilters htmlParseFilters;
   
   private String cachingPolicy;
+	
+  private boolean ignoreNoFollow;
   
   public ParseResult getParse(Content content) {
     HTMLMetaTags metaTags = new HTMLMetaTags();
@@ -171,7 +173,7 @@
       title = sb.toString().trim();
     }
       
-    if (!metaTags.getNoFollow()) {              // okay to follow links
+    if (!metaTags.getNoFollow() || ignoreNoFollow) {              // okay to follow links
       ArrayList<Outlink> l = new ArrayList<Outlink>();   // extract outlinks
       URL baseTag = utils.getBase(root);
       if (LOG.isTraceEnabled()) { LOG.trace("Getting links..."); }
@@ -289,6 +291,7 @@
     this.utils = new DOMContentUtils(conf);
     this.cachingPolicy = getConf().get("parser.caching.forbidden.policy",
         Nutch.CACHING_FORBIDDEN_CONTENT);
+	this.ignoreNoFollow = conf.getBoolean("parser.html.outlinks.ignore_nofollow", false);
   }
 
   public Configuration getConf() {
Index: src/plugin/parse-html/src/java/org/apache/nutch/parse/html/DOMContentUtils.java
===================================================================
--- src/plugin/parse-html/src/java/org/apache/nutch/parse/html/DOMContentUtils.java	(revision 745643)
+++ src/plugin/parse-html/src/java/org/apache/nutch/parse/html/DOMContentUtils.java	(working copy)
@@ -57,6 +57,7 @@
   
   private HashMap linkParams = new HashMap();
   private Configuration conf;
+  private boolean ignoreNoFollow;
   
   public DOMContentUtils(Configuration conf) {
     setConf(conf);
@@ -87,6 +88,7 @@
       if ( ! forceTags.contains(ignoreTags[i]) )
         linkParams.remove(ignoreTags[i]);
     }
+	this.ignoreNoFollow = conf.getBoolean("parser.html.outlinks.ignore_nofollow", false);
   }
   
   /**
@@ -397,7 +399,7 @@
                 post = true;
               }
             }
-            if (target != null && !noFollow && !post)
+            if (target != null && (!noFollow || ignoreNoFollow) && !post)
               try {
                 
                 URL url = (base.toString().indexOf(';') > 0) ? 
