Index: readme.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/solr/readme.txt,v
retrieving revision 1.1.2.13
diff -u -r1.1.2.13 readme.txt
--- readme.txt	14 Mar 2007 18:14:28 -0000	1.1.2.13
+++ readme.txt	29 Mar 2007 04:47:05 -0000
@@ -45,14 +45,19 @@
       $items = solr_run_search('example', $keys, 'standard', 'nid+title', $params, $_GET['page'], $rows);
 
       foreach ($items as $item){
+        $node = node_load($item['nid']);
         if (! $item['hl_body']){
-         $node = node_load(array('nid' => $item['nid']));
          $item['hl_body'] = node_teaser($node->body);
         }
       
         $results[] = array(
           'link' => url('node/'. $item['nid'], NULL, NULL, TRUE),
+          'type' => node_get_types('name', $node),
           'title' => $item['title'],
+          'user' => theme('username', $node),
+          'date' => $node->changed,
+          'node' => $node,
+          'extra' => node_invoke_nodeapi($node, 'search result'),
           'snippet' => $item['hl_body'],
         );
       }
