Index: ec_product/ec_product.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ecommerce/ec_product/ec_product.module,v
retrieving revision 1.16.2.65
diff -u -r1.16.2.65 ec_product.module
--- ec_product/ec_product.module	2 Jul 2009 10:25:39 -0000	1.16.2.65
+++ ec_product/ec_product.module	3 Jul 2009 12:05:39 -0000
@@ -149,10 +149,6 @@
   $template_path = drupal_get_path('module', 'ec_product') .'/templates';
   
   return array(
-    'invoice_form_product' => array(
-      'arguments' => array('form' => NULL),
-      'file' => 'ec_product.theme.inc',
-    ),
     'price' => array(
       'arguments' => array('element' => NULL),
       'file' => 'ec_product.theme.inc',
@@ -182,10 +178,6 @@
       'arguments' => array('form' => NULL),
       'file' => 'ec_product.theme.inc',
     ),
-    'ec_product_overview' => array(
-      'arguments' => array('form' => NULL),
-      'file' => 'ec_product.theme.inc',
-    ),
   );
 }
 
Index: ec_product/ec_product.theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ecommerce/ec_product/ec_product.theme.inc,v
retrieving revision 1.1.2.7
diff -u -r1.1.2.7 ec_product.theme.inc
--- ec_product/ec_product.theme.inc	2 Jul 2009 10:25:39 -0000	1.1.2.7
+++ ec_product/ec_product.theme.inc	3 Jul 2009 12:05:39 -0000
@@ -9,14 +9,6 @@
 /**
  * @ingroup themeable
  */
-function theme_invoice_form_product(&$form) {
-  $output .= drupal_render($form);
-  return $output;
-}
-
-/**
- * @ingroup themeable
- */
 function theme_price($element) {
   return theme('textfield', $element);
 }
@@ -96,17 +88,3 @@
   $output .= drupal_render($form);
   return $output;
 }
-
-/**
- * Display all products in a table format.
- * @ingroup themable
- */
-function theme_ec_product_overview($rows, $header) {
-  if (!empty($rows)) {
-    $output = theme('table', $header, $rows);
-  }
-  else {
-    $output = '<p>'. t('There are no products to view.') .'</p>';
-  }
-  return $output;
-}
Index: ec_address/ec_address.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ecommerce/ec_address/ec_address.module,v
retrieving revision 1.4.2.4
diff -u -r1.4.2.4 ec_address.module
--- ec_address/ec_address.module	2 Jul 2009 10:25:39 -0000	1.4.2.4
+++ ec_address/ec_address.module	3 Jul 2009 12:05:38 -0000
@@ -59,20 +59,6 @@
 }
 
 /**
- * Implementation of hook_theme().
- */
-function ec_address_theme() {
-  return array(
-    'ec_address_page' => array(
-      'arguments' => array('help' => NULL, 'output' => NULL),
-    ),
-    'ec_address_overview' => array(
-      'arguments' => array(),
-    ),
-  );
-}
-
-/**
  * Get a given address.
  *
  * @param $aid
@@ -209,51 +195,3 @@
     'path' => drupal_get_path('module', 'ec_address'),
   );
 }
-
-/**
- * Almost all address pages may have this help text
- * @ingroup themeable
- */
-function theme_ec_address_page($help, $output) {
-  return '<p>'. $help .'</p>'. $output;
-}
-
-/**
- * @ingroup themeable
- */
-function theme_ec_address_overview() {
-  global $user;
-  $uid = $user->uid;
-
-  if (user_access('administer users')) {
-    $uid = arg(1);
-  }
-
-  $output = "<p>". l(t('Click here to add a new address'),
-    "user/$uid/ec_address/add") .'.</p>';
-
-  $header = array(t('address'), t('options'));
-  $address = ec_address_address_load_all($uid);
-  foreach ($address as $data) {
-    $addr = array();
-    $addr[] = check_plain($data->firstname) .' '. check_plain($data->lastname);
-    $addr[] = check_plain($data->street1);
-    $addr[] = isset($data->street2) ? check_plain($data->street2) : "";
-    $addr[] = check_plain($data->city) .', '. check_plain($data->state) .' '. check_plain($data->zip);
-    $addr[] = store_get_country(check_plain($data->country));
-    $addr[] = isset($data->phone) ? t('tel: %phone', array('%phone' => check_plain($data->phone))) : '';
-    foreach ($addr as $k => $v) {
-      if (empty($v)) {
-        unset($addr[$k]);
-      }
-    }
-    $row[] = array(implode('<br />', $addr), l(t('edit'),
-      "user/$uid/ec_address/edit/$data->aid") ." / ". l(t('delete'),
-      "user/$uid/ec_address/delete/$data->aid"));
-  }
-  if (!empty($row)) {
-    $output .= theme('table', $header, $row);
-  }
-
-  return $output;
-}
Index: ec_customer/ec_customer.theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ecommerce/ec_customer/ec_customer.theme.inc,v
retrieving revision 1.1.2.8
diff -u -r1.1.2.8 ec_customer.theme.inc
--- ec_customer/ec_customer.theme.inc	2 Jul 2009 10:25:40 -0000	1.1.2.8
+++ ec_customer/ec_customer.theme.inc	3 Jul 2009 12:05:39 -0000
@@ -45,12 +45,6 @@
   return theme('box', $title, drupal_render($form));
 }
 
-function theme_ec_customer_anon_address($form) {
-  $title    = drupal_render($form['title']);
-  $contents = drupal_render($form);
-  return theme('box', $title, $contents);
-}
-
 /**
  * Insert the email field in case the user is not logged
  *
Index: ec_customer/ec_customer.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ecommerce/ec_customer/ec_customer.module,v
retrieving revision 1.14.2.25
diff -u -r1.14.2.25 ec_customer.module
--- ec_customer/ec_customer.module	2 Jul 2009 10:25:40 -0000	1.14.2.25
+++ ec_customer/ec_customer.module	3 Jul 2009 12:05:39 -0000
@@ -68,10 +68,6 @@
       'arguments' => array('form' => NULL),
       'file' => 'ec_customer.theme.inc',
     ),
-    'ec_customer_anon_address' => array(
-      'arguments' => array('form' => NULL),
-      'file' => 'ec_customer.theme.inc',
-    ),
     'ec_mail_checkout_form' => array(
       'arguments' => array('form' => NULL),
       'file' => 'ec_customer.theme.inc',
Index: ec_receipt/ec_receipt.theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ecommerce/ec_receipt/ec_receipt.theme.inc,v
retrieving revision 1.1.2.8
diff -u -r1.1.2.8 ec_receipt.theme.inc
--- ec_receipt/ec_receipt.theme.inc	2 Jul 2009 10:25:39 -0000	1.1.2.8
+++ ec_receipt/ec_receipt.theme.inc	3 Jul 2009 12:05:39 -0000
@@ -6,10 +6,6 @@
  * Themeable functions for ec_receipt.
  */
 
-function theme_ec_receipt_checkout_types($type) {
-  return $type->name;
-}
-
 function theme_credit_card($element) {
   return $element['#children'];
 }
@@ -116,35 +112,3 @@
       '<div id="ec-receipt-form">'. $content .'</div>');
   }
 }
-
-function theme_ec_receipt_view_allocation($form) {
-  $header = array(t('Type'), t('Id'), t('Created'), t('Amount'), t('Reversed'));
-  if ($form['#display_links']) {
-    $header[] = t(Operations);
-  }
-  $rows = array();
-
-  foreach (element_children($form) as $eaid) {
-    $row = array(
-      array('data' => drupal_render($form[$eaid]['type'])),
-      array('data' => drupal_render($form[$eaid]['etid'])),
-      array('data' => drupal_render($form[$eaid]['created'])),
-      array('data' => drupal_render($form[$eaid]['amount'])),
-      array('data' => drupal_render($form[$eaid]['reversed'])),
-    );
-    if ($form['#display_links']) {
-      $row[] = array('data' => drupal_render($form[$eaid]['op']));
-    }
-    $rows[] = $row;
-  }
-
-  if (empty($rows)) {
-    $rows[] = array(
-      array('data' => t('No allocations'), 'align' => 'center', 'colspan' => count($header)),
-    );
-  }
-
-  return theme('table', $header, $rows);
-}
-
-
