diff -uprP secure_permissions/README.txt secure_permissions_housecleaning/README.txt
--- secure_permissions/README.txt	2009-11-25 15:24:55.000000000 -0800
+++ secure_permissions_housecleaning/README.txt	2010-07-12 21:40:48.000000000 -0700
@@ -74,13 +74,13 @@ Find the link under People and Permissio
 Click the Export Permissions tab. It should take you to a form with a large text
 area, filled with PHP code.
 
-Copy the code. Place it in a module file and rename the hooks according
-to the name of the module. Typically, this will be something like:
+Copy the code. 
 
-  custom_secure_permissions_roles()
-  custom_secure_permissions($role)
+Paste the code into the 
+secure_permissions/secure_permissions_data/secure_permissions_data.module
+after the comments.
 
-Save the code into your module file.
+Save the secure_permissions_data.module file.
 
 Now you are ready to configure the Secure Permissions module to run.
 
diff -uprP secure_permissions/secure_permissions_data/secure_permissions_data.info secure_permissions_housecleaning/secure_permissions_data/secure_permissions_data.info
--- secure_permissions/secure_permissions_data/secure_permissions_data.info	1969-12-31 16:00:00.000000000 -0800
+++ secure_permissions_housecleaning/secure_permissions_data/secure_permissions_data.info	2010-07-12 21:40:48.000000000 -0700
@@ -0,0 +1,10 @@
+name = Secure Permissions Data
+description = Holds the custom data for Secure Permissions. Do not enable this module before you have read the README.txt. If you do things in the wrong order you will erase ALL of your roles and permissions.
+core = 6.x
+dependencies[] = secure_permissions
+package = Permissions
+
+version = "6.x-1.1"
+core = "6.x"
+project = "secure_permissions_data"
+
diff -uprP secure_permissions/secure_permissions_data/secure_permissions_data.module secure_permissions_housecleaning/secure_permissions_data/secure_permissions_data.module
--- secure_permissions/secure_permissions_data/secure_permissions_data.module	1969-12-31 16:00:00.000000000 -0800
+++ secure_permissions_housecleaning/secure_permissions_data/secure_permissions_data.module	2010-07-12 22:11:42.665423792 -0700
@@ -0,0 +1,34 @@
+<?php
+
+/* 
+ * This is a flat file database.
+ * It could become messy the more modules and roles you have.
+ * 100 modules; 10 roles; you could have 1,000 lines.
+ *
+ * You can try to get all your perms set up and then export.
+ * When was the last time that you set up everything perfectly?
+ * So that no small tuning changes were required? I thought so.
+ * 
+ * Once you enable secure permissions, you do not want to be 
+ * relying on the permissions page to make minor adjustments.
+ * Doing that means you are disabling secure permissions, going 
+ * to the permissions page to toggle a perm, then enabling secure
+ * permissions for every change. Cumbersome. Much easier to work 
+ * on this page.
+ *
+ * One way of dealing with it is to check every single permission
+ * for every single role, and then export.
+ * 
+ * After you paste the export here, you will have all your
+ * roles and all your permissions. Now, instead of using
+ * checkboxes to toggle, you just uncomment or comment the
+ * permission here to grant or deny. 
+ *
+ * This is your new editable permissions page...
+ */
+
+// Paste the file you exported below here:
+
+
+
+
diff -uprP secure_permissions/secure_permissions.info secure_permissions_housecleaning/secure_permissions.info
--- secure_permissions/secure_permissions.info	2010-06-06 13:40:10.000000000 -0700
+++ secure_permissions_housecleaning/secure_permissions.info	2010-07-12 21:40:48.000000000 -0700
@@ -1,8 +1,9 @@
 ; $Id: secure_permissions.info,v 1.1.2.1 2009/11/26 16:02:33 agentken Exp $
 name = Secure Permissions
-description = Disables the user interface for creating and assigning roles and permissions.
+description = Disables the user interface for creating and assigning roles and permissions. Read the UPDATE.txt before updating.
 core = 6.x
 dependencies[] = permissions_api
+package = Permissions
 
 ; Information added by drupal.org packaging script on 2010-06-06
 version = "6.x-1.1"
diff -uprP secure_permissions/secure_permissions.module secure_permissions_housecleaning/secure_permissions.module
--- secure_permissions/secure_permissions.module	2010-06-06 13:35:56.000000000 -0700
+++ secure_permissions_housecleaning/secure_permissions.module	2010-07-12 21:40:48.000000000 -0700
@@ -293,12 +293,12 @@ function secure_permissions_form_user_ad
 function secure_permissions_export(&$form_state) {
   $form = array();
   $form['help'] = array(
-    '#markup' => t('Copy and paste this output into two custom module functions. The first, <em>HOOK_secure_permissions_roles()</em> defines the roles in use by the site. The second, <em>HOOK_secure_permissions()</em> controls the permissions for the site. You will need to rename these functions to suit your module.'),
+    '#markup' => t('Copy and paste this output into two custom module functions. The first, <em>secure_permissions_data_secure_permissions_roles()</em> defines the roles in use by the site. The second, <em>secure_permissions_data_secure_permissions()</em> controls the permissions for the site. Note that if you change the module\'s name, you will need to also change the names of the hooks.'),
   );
   $output = '';
   // Get roles.
   $roles = user_roles();
-  $output .= 'function HOOK_secure_permissions_roles() {';
+  $output .= 'function secure_permissions_data_secure_permissions_roles() {';
   $output .= "\n  return array(\n";
   foreach ($roles as $role) {
     $output .= "    '" . $role ."',\n";
@@ -306,7 +306,7 @@ function secure_permissions_export(&$for
   $output .= "  );";
   $output .= "\n}\n\n";
   // Now get permissions.
-  $output .= 'function HOOK_secure_permissions($role) {';
+  $output .= 'function secure_permissions_data_secure_permissions($role) {';
   $output .= "\n  \$permissions = array(\n";
   foreach ($roles as $rid => $role) {
     $output .= "    '$role' => array(\n";
@@ -325,7 +325,8 @@ function secure_permissions_export(&$for
     '#title' => t('Permissions output'),
     '#type' => 'textarea',
     '#cols' => 40,
-    '#rows' => 80,
+    '#rows' => 30,
+		'#description' => 'Copy and paste the Permissions output into secure_permissions/secure_permissions_data/secure_permissions_data.module',
     '#default_value' => $output,
   );
   return $form;
diff -uprP secure_permissions/UPDATE.txt secure_permissions_housecleaning/UPDATE.txt
--- secure_permissions/UPDATE.txt	1969-12-31 16:00:00.000000000 -0800
+++ secure_permissions_housecleaning/UPDATE.txt	2010-07-12 21:40:48.000000000 -0700
@@ -0,0 +1,7 @@
+1) Before you update this module, save your 
+secure_permissions_data.module as it contains 
+all of your roles and permissions. 
+
+2) After you have updated everything, copy and 
+paste your roles and permissions into your new 
+secure_permissions_data.module.
