Index: definitions/importexportapi_system.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/importexportapi/definitions/importexportapi_system.inc,v
retrieving revision 1.4
diff -u -p -r1.4 importexportapi_system.inc
--- definitions/importexportapi_system.inc	11 Sep 2006 14:49:25 -0000	1.4
+++ definitions/importexportapi_system.inc	6 May 2009 18:20:37 -0000
@@ -45,10 +45,10 @@ function system_def() {
     '#key' => TRUE,
     '#db_uses_sequences' => TRUE
   );
-  $def['nid'] = array(
+  $def['uid'] = array(
     '#type' => 'int',
-    '#title' => t('Node ID'),
-    '#reference_entity' => 'node'
+    '#title' => t('User ID'),
+    '#reference_entity' => 'users'
   );
   $def['file_name'] = array(
     '#title' => t('File name'),
@@ -67,31 +67,13 @@ function system_def() {
     '#title' => t('File size'),
     '#db_field_unaliased' => 'filesize'
   );
-
-  $def['file_revisions'] = array(
-    '#type' => 'array',
-    '#title' => t('File revisions'),
-    '#xml_plural' => 'file-revisions',
-    '#csv_plural' => 'file-revisions',
-    '#xml_mapping' => 'file-revision'
-  );
-  $def['file_revisions']['fid'] = array(
+  $def['status'] = array(
     '#type' => 'int',
-    '#title' => t('File ID'),
-    '#reference_entity' => 'file'
-  );
-  $def['file_revisions']['vid'] = array(
-    '#type' => 'int',
-    '#title' => t('Node revision ID'),
-    '#reference_entity' => 'node',
-    '#reference_field' => array('revisions', 'vid')
-  );
-  $def['file_revisions']['description'] = array(
-    '#title' => t('Description')
+    '#title' => t('Status'),
   );
-  $def['file_revisions']['list'] = array(
+  $def['timestamp'] = array(
     '#type' => 'int',
-    '#title' => t('Show in list')
+    '#title' => t('Last modified date'),
   );
 
   $defs['file'] = $def;
