Only in sites/default/files/coder_upgrade/old/rawr: LICENSE.txt
diff -ur sites/default/files/coder_upgrade/old/rawr/js/rawr.js sites/default/modules/rawr/js/rawr.js
--- sites/default/files/coder_upgrade/old/rawr/js/rawr.js	2010-03-13 03:01:42.000000000 +0100
+++ sites/default/modules/rawr/js/rawr.js	2011-06-01 01:03:11.000000000 +0200
@@ -1,58 +1,62 @@
-Drupal.behaviors.rawr = function(){
-  if ($('#console').length > 0) {
-    if ($('#console .status').length > 0) {
-      if ($('#console .status').children('ul li').length > 0) {
-        $('#console .status ul li').each(function(){
-          rawr_notify($(this).html(), 'status');
-        });
-      }
-      else {
-        rawr_notify($('#console .status').html(), 'status');
-      }
-    }
-    if ($('#console .warning').length > 0) {
-      if ($('#console .warning').children('ul li').length > 0) {
-        $('#console .warning ul li').each(function(){
-          rawr_notify($(this).html(), 'warning');
-        });
-      }
-      else {
-        rawr_notify($('#console .warning').html(), 'warning');
-      }
-    }
-    if ($('#console .error').length > 0) {
-      if ($('#console .error').children('ul li').length > 0) {
-        $('#console .error ul li').each(function(){
-          rawr_notify($(this).html(), 'error');
-        });
-      }
-      else {
-        rawr_notify($('#console .error').html(), 'error');
+(function ($) {
+  Drupal.behaviors.rawr = {
+    attach: function() {
+      if ($('#console').length > 0) {
+        if ($('#console .status').length > 0) {
+          if ($('#console .status').children('ul li').length > 0) {
+            $('#console .status ul li').each(function(){
+              rawr_notify($(this).html(), 'status');
+            });
+          }
+          else {
+            rawr_notify($('#console .status').html(), 'status');
+          }
+        }
+        if ($('#console .warning').length > 0) {
+          if ($('#console .warning').children('ul li').length > 0) {
+            $('#console .warning ul li').each(function(){
+              rawr_notify($(this).html(), 'warning');
+            });
+          }
+          else {
+            rawr_notify($('#console .warning').html(), 'warning');
+          }
+        }
+        if ($('#console .error').length > 0) {
+          if ($('#console .error').children('ul li').length > 0) {
+            $('#console .error ul li').each(function(){
+              rawr_notify($(this).html(), 'error');
+            });
+          }
+          else {
+            rawr_notify($('#console .error').html(), 'error');
+          }
+        }
       }
     }
   }
-}
 
-function rawr_notify(text, type) {
-  var title;
-  var sticky;
-  switch (type) {
-    case 'status':
-      title = 'Status';
-      sticky = false;
-      image = Drupal.settings.basePath + Drupal.settings.rawrImageFolder + 'status.png';
-      break;
-    case 'warning':
-      title = 'Warning';
-      sticky = false;
-      image = Drupal.settings.basePath + Drupal.settings.rawrImageFolder  + 'warning.png';
-      break;
-    case 'error':
-      title = 'Error';
-      sticky = true;
-      image = Drupal.settings.basePath + Drupal.settings.rawrImageFolder + 'error.png';
-      break;
+  function rawr_notify(text, type) {
+    var title;
+    var sticky;
+    switch (type) {
+      case 'status':
+        title = 'Status';
+        sticky = false;
+        image = Drupal.settings.basePath + Drupal.settings.rawrImageFolder + 'status.png';
+        break;
+      case 'warning':
+        title = 'Warning';
+        sticky = false;
+        image = Drupal.settings.basePath + Drupal.settings.rawrImageFolder  + 'warning.png';
+        break;
+      case 'error':
+        title = 'Error';
+        sticky = true;
+        image = Drupal.settings.basePath + Drupal.settings.rawrImageFolder + 'error.png';
+        break;
+    }
+
+    $.gritter.add({ title: title, text: text, image: image, sticky: sticky, time: ''});
   }
-  
-  $.gritter.add({ title: title, text: text, image: image, sticky: sticky, time: ''});
-}
+})(jQuery);
diff -ur sites/default/files/coder_upgrade/old/rawr/rawr.info sites/default/modules/rawr/rawr.info
--- sites/default/files/coder_upgrade/old/rawr/rawr.info	2010-03-13 04:15:06.000000000 +0100
+++ sites/default/modules/rawr/rawr.info	2011-06-01 01:19:26.000000000 +0200
@@ -1,10 +1,10 @@
 name = Rawr
 description = Growl style message notifications.
-core = 6.x
+core = 7.x
 version = VERSION
 ; Information added by drupal.org packaging script on 2010-03-13
 version = "6.x-1.0"
-core = "6.x"
+core = 7.x
 project = "rawr"
 datestamp = "1268450106"
-
+files[] = rawr.module
diff -ur sites/default/files/coder_upgrade/old/rawr/rawr.module sites/default/modules/rawr/rawr.module
--- sites/default/files/coder_upgrade/old/rawr/rawr.module	2010-03-13 03:01:41.000000000 +0100
+++ sites/default/modules/rawr/rawr.module	2011-06-01 01:17:50.000000000 +0200
@@ -4,5 +4,5 @@
   drupal_add_js(drupal_get_path('module', 'rawr') . '/js/jquery.gritter.min.js');
   drupal_add_js(drupal_get_path('module', 'rawr') . '/js/rawr.js');
   drupal_add_css(drupal_get_path('module', 'rawr') . '/css/jquery.gritter.css');
-  drupal_add_js(array('rawrImageFolder' => drupal_get_path('module', 'rawr') . '/images/'), 'setting');
-}
\ No newline at end of file
+  drupal_add_js(array('rawrImageFolder' => drupal_get_path('module', 'rawr') . '/images/'), array('type' => 'setting', 'scope' => JS_DEFAULT));
+}
