From 9a59a5cab1384998872f8ee3b6653b90e03718c3 Mon Sep 17 00:00:00 2001 From: xue <> Date: Tue, 17 Jul 2007 17:21:50 +0000 Subject: Fixed #667. --- framework/Web/Services/TFeedService.php | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (limited to 'framework') diff --git a/framework/Web/Services/TFeedService.php b/framework/Web/Services/TFeedService.php index 2b6bb7e2..a40bcca9 100644 --- a/framework/Web/Services/TFeedService.php +++ b/framework/Web/Services/TFeedService.php @@ -44,6 +44,7 @@ class TFeedService extends TService { private $_feeds=array(); + private $_contentType='text/xml'; /** * Initializes this module. @@ -92,7 +93,7 @@ class TFeedService extends TService $content=$feed->getFeedContent(); //$this->getResponse()->setContentType('application/rss+xml'); - $this->getResponse()->setContentType('text/xml'); + $this->getResponse()->setContentType($this->getContentType()); $this->getResponse()->write($content); } else @@ -104,6 +105,27 @@ class TFeedService extends TService else throw new THttpException(404,'feedservice_feed_unknown',$id); } + + /** + * @return string the content type for the feed content. Defaults to 'text/xml'. + */ + public function getContentType() + { + return $this->_contentType; + } + + /** + * Sets the content type of the feed content to be sent. + * Some examples are: + * RSS 1.0 feed: application/rdf+xml + * RSS 2.0 feed: application/rss+xml or application/xml or text/xml + * ATOM feed: application/atom+xml + * @param string the content type for the feed content. + */ + public function setContentType($type) + { + $this->_contentType=$type; + } } /** -- cgit v1.2.3