Index: /branches/dev/html/test/adachi/LLReader/LLReader.php
===================================================================
--- /branches/dev/html/test/adachi/LLReader/LLReader.php	(revision 14612)
+++ /branches/dev/html/test/adachi/LLReader/LLReader.php	(revision 14613)
@@ -7,4 +7,5 @@
     private $plugins;
     private $feeds;
+    private $update_feeds;
     
     public function __construct($config){
@@ -12,4 +13,5 @@
         $this->plugins = array();
         $this->feeds   = array();
+        $this->update_feeds = array();
     }
     
@@ -83,4 +85,7 @@
     
     public function get_feeds () {
+        if ( count($this->update_feeds) > 0 ) {
+            return $this->update_feeds;
+        }
         return $this->feeds;
     }
Index: /branches/dev/html/test/adachi/LLReader/LLReader/Plugin/Filter/SearchEntry2Feed.php
===================================================================
--- /branches/dev/html/test/adachi/LLReader/LLReader/Plugin/Filter/SearchEntry2Feed.php	(revision 14612)
+++ /branches/dev/html/test/adachi/LLReader/LLReader/Plugin/Filter/SearchEntry2Feed.php	(revision 14613)
@@ -31,6 +31,29 @@
     }
     
-    private function entry2feed ($llr, $feed, $entry) {
+    private function entry2feed ($llr, $feed, $entries) {
+        $output = "<?xml version=\"1.0\"?>
+                    <rss version=\"2.0\">
+                        <channel>
+                            <title>{$feed->title}</title>
+                            <link>http://www.tracypeterson.com/RSS/RSS.php</link>
+                            <description>$feed->description</description>
+                            <language>$feed->language</language>
+                            <pubDate>$feed->date</pubDate>
+                            <lastBuildDate>$feed->lastBuildDate</lastBuildDate>
+                            <docs>http://someurl.com</docs>
+                            <managingEditor>you@youremail.com</managingEditor>
+                            <webMaster>you@youremail.com</webMaster>
+                    ";
+                    
+        foreach ($entries as $entry)
+        {
+            $output .= "<item><title>" . $entry->title . "</title>
+                            <link>" . $entry->link . "</link>
+                            
+        <description>".htmlentities(strip_tags($line['description']))."</description>
+                        </item>";
+        }
         
+        return new LLReader_Feed($output);
     }
 }
