--- BookMadeSimple/book_made_simple.install	2009-06-10 20:49:16.000000000 +0200
+++ book_made_simple.install	2009-07-31 11:14:31.000000000 +0200
@@ -1,9 +1,14 @@
 <?php
 // $Id: book_made_simple.install,v 1.1.2.1.2.5 2009/06/10 18:49:16 marcelbichon Exp $
-
+/**
+ * @file
+ * Install for book_made_simple.module
+ *
+ * Author: M. Morin
+ */
 
 function book_made_simple_install() {
-	db_query("UPDATE {system} SET weight = 10 WHERE name = 'book_made_simple'");
+  db_query("UPDATE {system} SET weight = 10 WHERE name = 'book_made_simple'");
 }
 
 function book_made_simple_update_6013() {
@@ -15,18 +20,14 @@ function book_made_simple_update_6013() 
       $ret[] = update_sql("UPDATE {system} SET weight = 10 WHERE name = 'book_made_simple'");
       break;
     }
-
   return $ret;
 }
 
 function book_made_simple_uninstall() {
-
-	variable_del('book_made_simple_auto_main_page');
-	variable_del('book_made_simple_add_types');
-	$types = node_get_types("names");
-	foreach ($types as $ctype => $name) {
-		variable_del('book_made_simple_for_type_' . $ctype);
-	}
-	
-	
+  variable_del('book_made_simple_auto_main_page');
+  variable_del('book_made_simple_add_types');
+  $types = node_get_types("names");
+  foreach ($types as $ctype => $name) {
+    variable_del('book_made_simple_for_type_' . $ctype);
+  }
 }
