Index: modules/pathauto/API.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/API.txt,v
retrieving revision 1.2
diff -u -r1.2 API.txt
--- modules/pathauto/API.txt	12 Sep 2005 21:33:44 -0000	1.2
+++ modules/pathauto/API.txt	29 Sep 2006 15:41:57 -0000
@@ -1,3 +1,5 @@
+$Id$
+
 Implementing automatic aliases for a module
 
 There are three pieces a module which implements its own content type
@@ -99,3 +101,4 @@
 
 See contrib/pathauto_node_event.inc for an example of extending node
 patterns.
+
Index: modules/pathauto/CHANGELOG.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/CHANGELOG.txt,v
retrieving revision 1.24
diff -u -r1.24 CHANGELOG.txt
--- modules/pathauto/CHANGELOG.txt	2 Jan 2006 22:40:01 -0000	1.24
+++ modules/pathauto/CHANGELOG.txt	29 Sep 2006 15:42:07 -0000
@@ -1,3 +1,5 @@
+$Id$
+
 ***DRUPAL-4-7 only***
 2006-01-02
   More changes to support 4.7:
@@ -132,3 +134,4 @@
 2005-2-15
   Initial merger of Mike Ryan's autopath with Tommy Sundstrom's 
   path_automatic.
+
Index: modules/pathauto/README.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/README.txt,v
retrieving revision 1.8
diff -u -r1.8 README.txt
--- modules/pathauto/README.txt	18 Sep 2005 16:03:40 -0000	1.8
+++ modules/pathauto/README.txt	29 Sep 2006 15:41:49 -0000
@@ -1,3 +1,5 @@
+$Id$
+
 The pathauto module provides support functions for other modules to 
 automatically generate aliases based on appropriate criteria, with a 
 central settings path for site administrators.
@@ -43,4 +45,5 @@
 
 Other suggestions and patches contributed by the Drupal community.
 
-Current maintainer: Mike Ryan (drupal at virtuoso hyphen performance.com)
\ No newline at end of file
+Current maintainer: Mike Ryan (drupal at virtuoso hyphen performance.com)
+
Index: modules/pathauto/pathauto.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto.module,v
retrieving revision 1.28
diff -u -r1.28 pathauto.module
--- modules/pathauto/pathauto.module	15 Sep 2006 00:15:11 -0000	1.28
+++ modules/pathauto/pathauto.module	29 Sep 2006 15:40:59 -0000
@@ -1,5 +1,5 @@
 <?php
-/* $Id: pathauto.module,v 1.28 2006/09/15 00:15:11 greggles Exp $ */
+// $Id$
 
 function pathauto_help($section) {
   switch ($section) {
@@ -632,3 +632,4 @@
       ' to '. $current_version['build']);
   }
 } // end function _pathauto_update
+
Index: modules/pathauto/pathauto_menu.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_menu.inc,v
retrieving revision 1.4
diff -u -r1.4 pathauto_menu.inc
--- modules/pathauto/pathauto_menu.inc	14 Sep 2006 23:06:38 -0000	1.4
+++ modules/pathauto/pathauto_menu.inc	29 Sep 2006 15:41:23 -0000
@@ -1,5 +1,5 @@
 <?php
-// $id$
+// $Id$
 
 /**
  * @file
@@ -93,4 +93,5 @@
   if ($mid < 0) $mid = 0;
 
   return $mid;
-}
\ No newline at end of file
+}
+
Index: modules/pathauto/pathauto_node.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_node.inc,v
retrieving revision 1.21
diff -u -r1.21 pathauto_node.inc
--- modules/pathauto/pathauto_node.inc	30 Aug 2006 20:38:43 -0000	1.21
+++ modules/pathauto/pathauto_node.inc	29 Sep 2006 15:41:30 -0000
@@ -1,5 +1,5 @@
 <?php
-// $id$
+// $Id$
 
 /*
  * Implementation of hook_pathauto()
@@ -276,3 +276,4 @@
   drupal_set_title(t($pagetitle));
   return $output;
 }
+
Index: modules/pathauto/pathauto_taxonomy.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_taxonomy.inc,v
retrieving revision 1.14
diff -u -r1.14 pathauto_taxonomy.inc
--- modules/pathauto/pathauto_taxonomy.inc	14 Sep 2006 23:41:11 -0000	1.14
+++ modules/pathauto/pathauto_taxonomy.inc	29 Sep 2006 15:41:35 -0000
@@ -155,4 +155,5 @@
   drupal_set_message(format_plural($count,
     "Bulk update of terms completed, one alias generated.",
     "Bulk update of terms completed, %count aliases generated."));
-}
\ No newline at end of file
+}
+
Index: modules/pathauto/pathauto_user.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto_user.inc,v
retrieving revision 1.14
diff -u -r1.14 pathauto_user.inc
--- modules/pathauto/pathauto_user.inc	30 Aug 2006 20:38:43 -0000	1.14
+++ modules/pathauto/pathauto_user.inc	29 Sep 2006 15:41:42 -0000
@@ -1,5 +1,5 @@
 <?php
-// $id$
+// $Id$
 
 /**
  * Implementation of hook_pathauto() for user aliases
@@ -191,4 +191,5 @@
   drupal_set_message(format_plural($count,
     "Bulk update of user tracker pages completed, one alias generated.",
     "Bulk update of user tracker pages completed, %count aliases generated."));
-}
\ No newline at end of file
+}
+
Index: modules/pathauto/contrib/pathauto_node_event.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/contrib/pathauto_node_event.inc,v
retrieving revision 1.1
diff -u -r1.1 pathauto_node_event.inc
--- modules/pathauto/contrib/pathauto_node_event.inc	15 Sep 2005 11:32:19 -0000	1.1
+++ modules/pathauto/contrib/pathauto_node_event.inc	29 Sep 2006 15:42:24 -0000
@@ -1,4 +1,5 @@
 <?php
+// $Id$
 
 /*
  * Implementation of hook_pathauto_node()
@@ -30,4 +31,3 @@
   }
 }
 
-?>
\ No newline at end of file
Index: modules/pathauto/contrib/pathauto_node_i18n.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/contrib/pathauto_node_i18n.inc,v
retrieving revision 1.1
diff -u -r1.1 pathauto_node_i18n.inc
--- modules/pathauto/contrib/pathauto_node_i18n.inc	15 Sep 2005 11:32:19 -0000	1.1
+++ modules/pathauto/contrib/pathauto_node_i18n.inc	29 Sep 2006 15:42:19 -0000
@@ -1,4 +1,5 @@
 <?php
+// $Id$
 
 /*
  * Implementation of hook_pathauto_node()
@@ -19,4 +20,3 @@
   }
 }
 
-?>
\ No newline at end of file
