[pLog-svn] r1069 - in plog/trunk/class: view xml xml/rssparser

oscar at devel.plogworld.net oscar at devel.plogworld.net
Mon Feb 14 15:24:39 GMT 2005


Author: oscar
Date: 2005-02-14 15:24:39 +0000 (Mon, 14 Feb 2005)
New Revision: 1069

Removed:
   plog/trunk/class/xml/rss_parser/
Modified:
   plog/trunk/class/view/blogview.class.php
   plog/trunk/class/xml/rssparser/rssparser.class.php
Log:
finalized the re-integration of the rss parser into the core classes once again and
modified all the include paths and everything else.


Modified: plog/trunk/class/view/blogview.class.php
===================================================================
--- plog/trunk/class/view/blogview.class.php	2005-02-14 15:14:44 UTC (rev 1068)
+++ plog/trunk/class/view/blogview.class.php	2005-02-14 15:24:39 UTC (rev 1069)
@@ -16,6 +16,7 @@
     include_once( PLOG_CLASS_PATH.'class/misc/version.class.php' );
     include_once( PLOG_CLASS_PATH.'class/dao/mylinkscategories.class.php' ); 
     include_once( PLOG_CLASS_PATH.'class/plugin/pluginmanager.class.php' );
+    include_once( PLOG_CLASS_PATH."class/xml/rssparser/rssparser.class.php" );    
 
     /**
      * Extends the original 'View' class to provide support for common operations, for example
@@ -205,6 +206,7 @@
 			$this->setValue( 'url', $this->_blogInfo->getBlogRequestGenerator());
 			$this->setValue( 'utils', $this->_blogInfo->getBlogRequestGenerator());
 			$this->setValue( 'blogsettings', $this->_blogInfo->getSettings());
+			$this->setValue( 'rss', new RssParser());
 			
 			// ask the parent to do something, if needed
 			parent::render();

Modified: plog/trunk/class/xml/rssparser/rssparser.class.php
===================================================================
--- plog/trunk/class/xml/rssparser/rssparser.class.php	2005-02-14 15:14:44 UTC (rev 1068)
+++ plog/trunk/class/xml/rssparser/rssparser.class.php	2005-02-14 15:24:39 UTC (rev 1069)
@@ -1,12 +1,12 @@
 <?php
 
 	include_once( PLOG_CLASS_PATH."class/object/object.class.php" );
-	include_once( PLOG_CLASS_PATH."plugins/feedreader/class/xml/rss_parser/rss_cache.inc" );
-	include_once( PLOG_CLASS_PATH."plugins/feedreader/class/xml/rss_parser/rss_parse.inc" );
-	include_once( PLOG_CLASS_PATH."plugins/feedreader/class/xml/rss_parser/rss_fetch.inc" );
-	include_once( PLOG_CLASS_PATH."plugins/feedreader/class/xml/rss_parser/rss_utils.inc" );
-	include_once( PLOG_CLASS_PATH."plugins/feedreader/class/xml/rsschannel.class.php" );
-	include_once( PLOG_CLASS_PATH."plugins/feedreader/class/xml/rssitem.class.php" );
+	include_once( PLOG_CLASS_PATH."class/xml/rssparser/magpierss/rss_cache.inc" );
+	include_once( PLOG_CLASS_PATH."class/xml/rssparser/magpierss/rss_parse.inc" );
+	include_once( PLOG_CLASS_PATH."class/xml/rssparser/magpierss/rss_fetch.inc" );
+	include_once( PLOG_CLASS_PATH."class/xml/rssparser/magpierss/rss_utils.inc" );
+	include_once( PLOG_CLASS_PATH."class/xml/rssparser/rsschannel.class.php" );
+	include_once( PLOG_CLASS_PATH."class/xml/rssparser/rssitem.class.php" );
 
     /**
      * <p>This parser is a wrapper around the functionality provided by the MagpieRSS parser, which




More information about the pLog-svn mailing list