Index: panels_views/panels_views.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/panels/panels_views/Attic/panels_views.install,v
retrieving revision 1.1.2.2
diff -u -F^f -r1.1.2.2 panels_views.install
--- panels_views/panels_views.install	30 Dec 2007 23:50:50 -0000	1.1.2.2
+++ panels_views/panels_views.install	2 Jan 2008 12:03:27 -0000
@@ -10,7 +10,7 @@ function panels_views_install() {
   // The documentation says this shouldn't be necessary but sometimes the
   // .module file is not actually loaded at this time, so we have to load it.
   if (!function_exists('panels_views_pane_fields')) {
-    require_once drupal_get_path('module', 'panels_views') . '/panels_views.module';
+    require_once drupal_get_path('module', 'panels_views') .'/panels_views.module';
   }
 
   $fields = panels_views_pane_fields();
@@ -19,7 +19,7 @@ function panels_views_install() {
     if ($sql) {
       $sql .= ', ';
     }
-    $sql .= $field . ' ' . $data['definition'];
+    $sql .= $field .' '. $data['definition'];
   }
   db_query("CREATE TABLE {panels_views} ($sql) /*!40100 DEFAULT CHARACTER SET utf8 */");
 }
@@ -27,4 +27,3 @@ function panels_views_install() {
 function panels_views_uninstall() {
   db_query("DROP TABLE {panels_views}");
 }
-
Index: panels_views/panels_views.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/panels/panels_views/Attic/panels_views.module,v
retrieving revision 1.1.2.3
diff -u -F^f -r1.1.2.3 panels_views.module
--- panels_views/panels_views.module	1 Jan 2008 00:20:21 -0000	1.1.2.3
+++ panels_views/panels_views.module	2 Jan 2008 12:03:27 -0000
@@ -10,7 +10,7 @@
  */
 
 /**
- * Implementation of hook_menu
+ * Implementation of hook_menu().
  */
 function panels_views_menu($may_cache) {
   if ($may_cache) {
@@ -86,7 +86,7 @@ function panels_views_menu($may_cache) {
 }
 
 /**
- * Implementation of hook_perm
+ * Implementation of hook_perm().
  */
 function panels_views_perm() {
   return array('administer panel views');
@@ -195,7 +195,7 @@ function theme_panels_views_add_view_for
 }
 
 function panels_views_add_view_form_submit($form_id, $form_values) {
-  return 'admin/panels/views/add/' . $form_values['view'];
+  return 'admin/panels/views/add/'. $form_values['view'];
 }
 
 /**
@@ -566,8 +566,8 @@ function panels_views_import_view() {
   return drupal_get_form('panels_views_import_form');
 }
 
-/*
- * Form for the panel view import
+/**
+ * Form for the panel view import.
  */
 function panels_views_import_form() {
   $form['panel_view'] = array(
@@ -587,7 +587,7 @@ function panels_views_import_form() {
   return $form;
 }
 
-/*
+/**
  * Handle the submit button on importing a panel view.
  */
 function panels_views_import_form_submit($formid, $form) {
@@ -609,12 +609,12 @@ function panels_views_import_form_submit
     exit;
   }
   else {
-    drupal_set_message(t('Unable to get a panel view out of that.'));
+    drupal_set_message(t('Unable to get a panel view out of that import.'));
   }
 }
 
 /**
- * Page callback to export a panel view
+ * Page callback to export a panel view.
  */
 function panels_views_export_view($pv, $prefix = '') {
   if (!is_object($pv)) {
@@ -637,7 +637,7 @@ function panels_views_export_view($pv, $
 }
 
 /**
- * Enable a default panel view
+ * Enable a default panel view.
  */
 function panels_views_enable_page($name = NULL) {
   $defaults = panels_views_default_panels();
@@ -668,7 +668,7 @@ function panels_views_disable_page($name
 // Content type routines.
 
 /**
- * Implementation of hook_panels_content_types()
+ * Implementation of hook_panels_content_types().
  */
 function panels_views_panels_content_types() {
   $items['views2'] = array(
@@ -715,7 +715,7 @@ function panels_views_content_types() {
 }
 
 /**
- * Render a panel view as a pane
+ * Render a panel view as a pane.
  */
 function panels_views_render($conf, $panel_args, &$contexts) {
   $pv = panels_views_load($conf['name']);
@@ -824,7 +824,7 @@ function panels_views_render($conf, $pan
 }
 
 /**
- * Provide the pane edit dialog
+ * Provide the pane edit dialog.
  */
 function panels_views_edit($id, $parents, $conf = array()) {
   $pv = panels_views_load($id);
@@ -1176,7 +1176,7 @@ function panels_views_pane_fields() {
 }
 
 /**
- * Provide default settings for a new view pane
+ * Provide default settings for a new view pane.
  */
 function panels_views_default_view_pane($view) {
   $names = panels_views_pane_fields();
@@ -1203,8 +1203,8 @@ function panels_views_default_view_pane(
 }
 
 /**
- * Adjust a pane for a view's arguments, adding or subtracting
- * as needed to match the current view's argument configuration.
+ * Adjust a pane for a view's arguments, adding or subtracting as needed to
+ * match the current view's argument configuration.
  */
 function panels_views_pane_arguments($view, &$panel_view) {
   $contexts = array();
@@ -1351,7 +1351,7 @@ function panels_views_load_all() {
 }
 
 /**
- * Get all 'default' panel views
+ * Get all 'default' panel views.
  */
 function panels_views_default_panels() {
   $panels = module_invoke_all('default_panel_views');
@@ -1377,43 +1377,43 @@ function panels_views_delete($pv) {
 function panels_views_export($pv, $prefix = '') {
   $output = '';
   $fields = panels_views_pane_fields();
-  $output .= $prefix . '$panel_view = new stdClass()' . ";\n";
+  $output .= $prefix .'$panel_view = new stdClass()'.";\n";
   foreach ($fields as $field => $data) {
     $value = empty($data['primary']) ? $pv->$field : 'new';
-    $output .= $prefix . '  $panel_view->' . $field . ' = ' . panels_var_export($value, '  ') . ";\n";
+    $output .= $prefix .'  $panel_view->'. $field .' = '. panels_var_export($value, '  ') .";\n";
   }
 
   return $output;
 }
 
 /**
- * Implementation of hook_panels_exportables()
+ * Implementation of hook_panels_exportables().
  */
 function panels_views_panels_exportables($op = 'list', $panels = NULL, $name = 'foo') {
   static $all_panels = NULL;
+
   if ($op == 'list') {
     if (empty($all_panels)) {
       $all_panels = panels_views_load_all();
     }
 
     foreach ($all_panels as $name => $panel) {
-      $return[$name] = check_plain($name) . ' (' . check_plain($panel->title) . ')';
+      $return[$name] = check_plain($name) .' ('. check_plain($panel->title) .')';
     }
     return $return;
   }
 
   if ($op == 'export') {
     $code = "/**\n";
-    $code .= " * Implementation of hook_default_panel_views()\n";
+    $code .= " * Implementation of hook_default_panel_views().\n";
     $code .= " */\n";
-    $code .= "function " . $name . "_default_panel_views() {\n";
+    $code .= "function ". $name ."_default_panel_views() {\n";
     foreach ($panels as $panel => $truth) {
       $code .= panels_views_export($all_panels[$panel], '  ');
-      $code .= '  $panel_views[\'' . check_plain($panel) . '\'] = $panel_view;' . "\n\n\n";
+      $code .= '  $panel_views[\''. check_plain($panel) .'\'] = $panel_view;'."\n\n\n";
     }
     $code .= "  return \$panel_views;\n";
     $code .= "}\n";
     return $code;
   }
-
 }
