Only in commentluv/: commentluv-D6.patch
diff -urp ../../default/files/deadwood/commentluv/commentluv.info commentluv/commentluv.info
--- ../../default/files/deadwood/commentluv/commentluv.info	2008-03-26 01:02:15.000000000 +0100
+++ commentluv/commentluv.info	2008-08-31 07:38:41.995503997 +0200
@@ -1,8 +1,4 @@
 name = Comment Luv
 description = "Comment Luv"
-dependencies = comment
-; Information added by drupal.org packaging script on 2008-03-26
-version = "5.x-0.1.x-dev"
-project = "commentluv"
-datestamp = "1206489735"
-
+dependencies[] = comment
+core = 6.x
diff -urp ../../default/files/deadwood/commentluv/commentluv.module commentluv/commentluv.module
--- ../../default/files/deadwood/commentluv/commentluv.module	2008-03-25 18:57:36.000000000 +0100
+++ commentluv/commentluv.module	2008-08-31 08:24:17.590467997 +0200
@@ -1,6 +1,8 @@
 <?php
-function commentluv_help($section) {
-  switch ($section) {
+require_once('magpierss/rss_fetch.inc');
+
+function commentluv_help($path, $arg) {
+  switch ($path) {
     case 'admin/modules#description':
       return t('Comment Luv');
       break;
@@ -55,7 +57,7 @@ function findfeedburner($page_url){
 	return $feed_url;
 }
 
-function commentluv_form_alter($form_id, &$form) {
+function commentluv_form_alter(&$form, &$form_state, $form_id) {
  
    if ($form_id != 'comment_form') {
     return;
@@ -64,10 +66,10 @@ function commentluv_form_alter($form_id,
   global $user;
   if($user->uid == 0)
   {
-	  $form['luv'] = array(
+	  $form['luv'] = array( 
 		  '#type' => 'checkbox',
 		  '#title' => t('Comment Luv'),
-		  '#description' => ('This blog uses the <a href="http://www.fiddyp.co.uk/commentluv-wordpress-plugin">CommentLuv</a> <a href="http://imafish.co.uk/commentluv">Drupal</a> plugin which will try and parse your sites feed and display a link to your last post, please be patient while it tries to find it for you.'),
+		  '#description' => t('This blog uses the <a href="http://www.fiddyp.co.uk/commentluv-wordpress-plugin">CommentLuv</a> <a href="http://imafish.co.uk/commentluv">Drupal</a> plugin which will try and parse your sites feed and display a link to your last post, please be patient while it tries to find it for you.'),
 	   );
  }
 }
@@ -108,7 +110,7 @@ function commentluv_comment($comment, $o
 		}
 	
 		// use wp internal rss.php function (wp 2.1+ only)
-		include_once('rss_fetch.inc');
+		module_load_include('inc', 'commentluv', 'ss_fetch');
 	
 		// **************************
 		// *** identify blog type ***
@@ -192,11 +194,20 @@ function commentluv_comment($comment, $o
 		// ****************************
 		// insert last post data onto the end of the comment content
 		if($feed_title && $feed_post){	// only output if last post found
-			$author_excerpt="\n\n<em>".$comment['name']."'s last blog post..<a href='$feed_post'>$feed_title</a></em>";
+			$author_excerpt="\n\n<em>".$comment['name']. t("'s last blog post...") ." <a href='$feed_post'>$feed_title</a></em>";
 			$comment['comment']=substr_replace($comment['comment'], $author_excerpt,strlen($comment['comment']),0);
 		}
 			$result = comment_save($comment);
-		//drupal_mail(1,'petejw@gmail.com','bla', $comment[luv] ,null);
+//		//drupal_mail(1,'petejw@gmail.com','bla', $comment[luv] ,null);
+		///* TODO Create a hook_mail($key, &$message, $params) function to generate
+		//the message body when called by drupal_mail. */
+		//$account = array(); // Set this as needed
+		//$language = user_preferred_language($account);
+		//$object = array(); // Replace this as needed
+		//$context['subject'] = $subject;
+		//$context['body'] = $body;
+		//$params = array('account' => $account, 'object' => $object, 'context' => $context);
+		//drupal_mail('commentluv', 1, 'petejw@gmail.com', $language, $params, null);
 	break;
 	}
 	return $comment;
Only in commentluv/: translations
