Index: definitions/importexportapi_dblog.inc
===================================================================
RCS file: definitions/importexportapi_dblog.inc
diff -N definitions/importexportapi_dblog.inc
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ definitions/importexportapi_dblog.inc	6 May 2009 18:19:18 -0000
@@ -0,0 +1,77 @@
+<?php
+// $Id: importexportapi_watchdog.inc,v 1.3 2006/08/29 05:08:43 jaza Exp $
+
+/**
+ * @file
+ * Implements data definitions on behalf of watchdog.module.
+ */
+
+/**
+ * Implementation of hook_def().
+ */
+function dblog_def() {
+  $defs = array();
+
+  $def = array(
+    '#type' => 'entity',
+    '#title' => t('Watchdog log message'),
+    '#db_default_table' => 'watchdog',
+    '#xml_plural' => 'watchdog-log',
+    '#csv_plural' => 'watchdog-log'
+  );
+
+  $def['wid'] = array(
+    '#type' => 'int',
+    '#title' => t('Watchdog message ID'),
+    '#key' => TRUE
+  );
+  $def['uid'] = array(
+    '#type' => 'int',
+    '#title' => t('User ID'),
+    '#reference_entity' => 'user'
+  );
+  $def['message_type'] = array(
+    '#title' => t('Message type'),
+    '#db_field_unaliased' => 'type'
+  );
+  $def['message'] = array(
+    '#title' => t('Message text'),
+    '#xml_mapping' => 'message-text',
+    '#csv_mapping' => 'message-text'
+  );
+  $def['severity'] = array(
+    '#type' => 'int',
+    '#title' => t('Severity')
+  );
+  $def['link'] = array(
+    '#title' => t('Link')
+  );
+  $def['location'] = array(
+    '#title' => t('Location URL')
+  );
+  $def['referer'] = array(
+    '#title' => t('Referer URL')
+  );
+  $def['hostname'] = array(
+    '#title' => t('Hostname')
+  );
+  $def['timestamp'] = array(
+    '#type' => 'datetime',
+    '#title' => t('Timestamp')
+  );
+
+  $defs['watchdog_message'] = $def;
+
+  return $defs;
+}
+
+/**
+ * Implementation of hook_db_def_tables().
+ */
+function dblog_db_def_tables() {
+  $tables = array();
+
+  $tables['watchdog'] = 'w';
+
+  return $tables;
+}
Index: definitions/importexportapi_watchdog.inc
===================================================================
RCS file: definitions/importexportapi_watchdog.inc
diff -N definitions/importexportapi_watchdog.inc
--- definitions/importexportapi_watchdog.inc	29 Aug 2006 05:08:43 -0000	1.3
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,77 +0,0 @@
-<?php
-// $Id: importexportapi_watchdog.inc,v 1.3 2006/08/29 05:08:43 jaza Exp $
-
-/**
- * @file
- * Implements data definitions on behalf of watchdog.module.
- */
-
-/**
- * Implementation of hook_def().
- */
-function watchdog_def() {
-  $defs = array();
-
-  $def = array(
-    '#type' => 'entity',
-    '#title' => t('Watchdog log message'),
-    '#db_default_table' => 'watchdog',
-    '#xml_plural' => 'watchdog-log',
-    '#csv_plural' => 'watchdog-log'
-  );
-
-  $def['wid'] = array(
-    '#type' => 'int',
-    '#title' => t('Watchdog message ID'),
-    '#key' => TRUE
-  );
-  $def['uid'] = array(
-    '#type' => 'int',
-    '#title' => t('User ID'),
-    '#reference_entity' => 'user'
-  );
-  $def['message_type'] = array(
-    '#title' => t('Message type'),
-    '#db_field_unaliased' => 'type'
-  );
-  $def['message'] = array(
-    '#title' => t('Message text'),
-    '#xml_mapping' => 'message-text',
-    '#csv_mapping' => 'message-text'
-  );
-  $def['severity'] = array(
-    '#type' => 'int',
-    '#title' => t('Severity')
-  );
-  $def['link'] = array(
-    '#title' => t('Link')
-  );
-  $def['location'] = array(
-    '#title' => t('Location URL')
-  );
-  $def['referer'] = array(
-    '#title' => t('Referer URL')
-  );
-  $def['hostname'] = array(
-    '#title' => t('Hostname')
-  );
-  $def['timestamp'] = array(
-    '#type' => 'datetime',
-    '#title' => t('Timestamp')
-  );
-
-  $defs['watchdog_message'] = $def;
-
-  return $defs;
-}
-
-/**
- * Implementation of hook_db_def_tables().
- */
-function watchdog_db_def_tables() {
-  $tables = array();
-
-  $tables['watchdog'] = 'w';
-
-  return $tables;
-}
