Index: util.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/util/util.info,v
retrieving revision 1.4
diff -u -r1.4 util.info
--- util.info	18 Dec 2007 06:52:15 -0000	1.4
+++ util.info	30 May 2008 00:12:28 -0000
@@ -1,4 +1,5 @@
+; $Id$
 name = Util
 description = Enables Menu parent for the util modules
 package = Util
-core = 6.x
\ No newline at end of file
+core = 6.x
Index: CHANGELOG.TXT
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/util/CHANGELOG.TXT,v
retrieving revision 1.5
diff -u -r1.5 CHANGELOG.TXT
--- CHANGELOG.TXT	4 Dec 2007 05:06:24 -0000	1.5
+++ CHANGELOG.TXT	30 May 2008 00:12:27 -0000
@@ -1,4 +1,4 @@
-// $Id: CHANGELOG.TXT,v 1.5 2007/12/04 05:06:24 sun Exp $ 
+// $Id: CHANGELOG.TXT,v 1.5 2007/12/04 05:06:24 sun Exp $
 
 Util 5.x-1.x, xxxx-xx-xx
 ------------------------
@@ -24,4 +24,3 @@
 Util 5.x-1.0, 2007-08-09
 ------------------------
 Initial release of Util.module.
-
Index: module_weights.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/util/module_weights.info,v
retrieving revision 1.2
diff -u -r1.2 module_weights.info
--- module_weights.info	5 May 2008 15:58:40 -0000	1.2
+++ module_weights.info	30 May 2008 00:12:27 -0000
@@ -1,3 +1,4 @@
+; $Id$
 name = Module Weights
 description = Allows module weights to be viewed and edited.
 dependencies[] = util
Index: README.TXT
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/util/README.TXT,v
retrieving revision 1.4
diff -u -r1.4 README.TXT
--- README.TXT	29 Aug 2007 17:17:54 -0000	1.4
+++ README.TXT	30 May 2008 00:12:27 -0000
@@ -1,13 +1,16 @@
-The utility module is a module that contains a bunch of utilities that are simple to code, everyone wants, but nobody actually codes them.
-
-Right now, we have the following utilities:
-* System module fieldset closer
-* Allow to enable/disable individual plugins' through admin/settings/util page
-* Automatically save height for resized textarea
-* and more
+// $Id$ 
 
+The utility module is a module that contains a bunch of utilities that are
+simple to code, everyone wants, but nobody actually codes them.
 
-To create new utilities for your drupal site place your code in a .inc file and into util/utilities/[YOUR UTILITY]/ folder
+Right now, we have the following utilities:
+ * System module fieldset closer
+ * Allow to enable/disable individual plugins' through admin/settings/util page
+ * Automatically save height for resized textarea
+ * and more
 
+To create new utilities for your drupal site place your code in a .inc file
+and into util/utilities/[YOUR UTILITY]/ folder
 
-For more information on the project and to submit issues and patches visit the following page: http://drupal.org/project/util
\ No newline at end of file
+For more information on the project and to submit issues and patches
+visit the following page: http://drupal.org/project/util
Index: perms_fieldsets.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/util/perms_fieldsets.info,v
retrieving revision 1.2
diff -u -r1.2 perms_fieldsets.info
--- perms_fieldsets.info	19 Dec 2007 09:57:55 -0000	1.2
+++ perms_fieldsets.info	30 May 2008 00:12:28 -0000
@@ -1,3 +1,4 @@
+; $Id$
 name = Access Permissions Fieldsets Manager
 description = Set default collapsed/expanded state for Access Permissions
 dependencies[] = util
Index: util.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/util/util.module,v
retrieving revision 1.12
diff -u -r1.12 util.module
--- util.module	1 May 2008 18:02:34 -0000	1.12
+++ util.module	30 May 2008 00:12:28 -0000
@@ -1,5 +1,5 @@
 <?php
-
+// $Id$
 
 function util_menu() {
   $menu['admin/settings/util'] = array(
@@ -16,4 +16,4 @@
   menu_rebuild();
   //for now output empty page, this is purely to reserve space for future development
   return $output;
-}
\ No newline at end of file
+}
Index: perms_fieldsets.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/util/perms_fieldsets.module,v
retrieving revision 1.3
diff -u -r1.3 perms_fieldsets.module
--- perms_fieldsets.module	1 May 2008 18:02:34 -0000	1.3
+++ perms_fieldsets.module	30 May 2008 00:12:28 -0000
@@ -1,4 +1,5 @@
 <?php
+// $Id$
 
 function perms_fieldsets_menu() {
   $menu['admin/settings/util/apfm'] = array(
@@ -36,7 +37,6 @@
   return $form;
 }
 
-
 function perms_fieldsets_form_alter(&$form, $form_state, $form_id) {
 //  drupal_set_message($form_id);
 //  drupal_set_message('<pre>'. print_r($form, 1) .'</pre>');
@@ -48,14 +48,10 @@
     case 'user_admin_perm':
       $form['#theme'] = 'perms_fieldsets_theme';
       break;
-
   }
-
 }
 
-
 function theme_perms_fieldsets_theme($form) {
-
   $header[] = array('data' =>t('Permission'), 'width' => '100%');
   foreach (element_children($form['role_names']) as $rid) {
     if (is_array($form['role_names'][$rid])) {
@@ -136,4 +132,4 @@
   $fieldset_output .= drupal_render($form);
   return $fieldset_output;
 //  return $output;
-}
\ No newline at end of file
+}
Index: util.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/util/util.install,v
retrieving revision 1.4
diff -u -r1.4 util.install
--- util.install	28 Aug 2007 18:37:02 -0000	1.4
+++ util.install	30 May 2008 00:12:28 -0000
@@ -1,10 +1,10 @@
 <?php
 //$Id: util.install,v 1.4 2007/08/28 18:37:02 litwol Exp $
+
 /**
  * hook_uninstall()
- *
  */
 function util_uninstall() {
   db_query("DELETE FROM {variable} WHERE name LIKE '%s%%'", 'util_');
   cache_clear_all('variables', 'cache');
-}
\ No newline at end of file
+}
Index: system_module.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/util/system_module.module,v
retrieving revision 1.4
diff -u -r1.4 system_module.module
--- system_module.module	1 May 2008 18:02:34 -0000	1.4
+++ system_module.module	30 May 2008 00:12:28 -0000
@@ -1,5 +1,5 @@
 <?php
-
+// $Id$
 
 function system_module_menu() {
   $menu['admin/settings/util/sysmods'] = array(
@@ -158,4 +158,4 @@
 
   $output .= drupal_render($form);
   return $output;
-}
\ No newline at end of file
+}
Index: system_module.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/util/system_module.info,v
retrieving revision 1.1
diff -u -r1.1 system_module.info
--- system_module.info	18 Dec 2007 06:52:15 -0000	1.1
+++ system_module.info	30 May 2008 00:12:28 -0000
@@ -1,3 +1,4 @@
+; $Id$
 name = System Module
 description = Set default collapsed/expanded state for system modules fieldsets
 dependencies[] = util
Index: module_weights.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/util/module_weights.module,v
retrieving revision 1.2
diff -u -r1.2 module_weights.module
--- module_weights.module	5 May 2008 06:38:56 -0000	1.2
+++ module_weights.module	30 May 2008 00:12:28 -0000
@@ -1,5 +1,5 @@
 <?php
-
+// $Id$
 
 /**
  * Implementation of hook_help().
@@ -19,6 +19,7 @@
   //add weight header
   array_unshift($header, 'Weight');
 }
+
 function module_weights_system_module_weights_alter(&$row, $module, &$form) {
   array_unshift($row, drupal_render($form['weights'][$module]));  
   //CLEANUP what we added in hook_form_alter()
@@ -27,7 +28,6 @@
 
 /**
  * Helper function to fetch and cache module weights
- *
  */
 function fetch_module_weights($name = NULL) {
   static $module_weights = array();
@@ -38,6 +38,7 @@
       $module_weights[$row->name] = $row->weight;
     }
   }
+  
   if ($name === NULL) {
     return $module_weights;
   }
@@ -70,6 +71,7 @@
       break;
   }
 }
+
 function module_weights_system_module_validate($form, &$form_state) {
   $weights = fetch_module_weights();
   foreach ($weights as $name => $weight) {
Index: system_module.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/util/system_module.install,v
retrieving revision 1.1
diff -u -r1.1 system_module.install
--- system_module.install	18 Dec 2007 06:52:15 -0000	1.1
+++ system_module.install	30 May 2008 00:12:28 -0000
@@ -1,4 +1,5 @@
 <?php
+// $Id$
 
 function system_module_install() {
   drupal_install_schema('system_module_users');
@@ -34,4 +35,3 @@
   );
   return $schema;
 }
-
