|
|
|
[
Permlink
| « Hide
]
Bill Karwin - 13/Nov/06 03:16 PM
Changing fix version to 0.6.0.
I forgot to say that my previous comment has been inspired by http://www.nabble.com/zend-feed-issue--tf4928553s16154.html#a14108105
Forgive me for previous comment.
It was created for The following example appears to work as expected as of SVN revision 7745:
require_once 'Zend/Feed.php'; $feed = Zend_Feed::import('http://feeds.feedburner.com/37signals/beMH'); foreach ($feed as $item) { The issue still exists.
The reason why you wasn't able to reproduce it is just because the feed you tested is no longer an RSS feed but it's now served as Atom feed and Zend_Feed correctly supports Atom feeds. Have a look at the following example: require_once 'Zend/Feed.php'; $feed = Zend_Feed::import('http://maine.craigslist.org/web/index.rss'); foreach ($feed as $item) { echo 'title: ', $item->title(), "\n"; echo 'link: ', $item->link(), "\n\n"; } Please see the attachment patch.diff for
For the particular feed cited below, something I noticed that wasn't the case for Matthew, what is the status of this issue? Do you need someone to apply your patch?
Wil, I've updated
Applied patch from Matthew in
Sorry, not in 1.7.4. I think it may be released in next minor.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||