Magpie 0.6
April 24th, 2004MagpieRSS 0.6 is out. It was a rather long alpha, hopefully that means people tried it, and it worked.
Key features are
- support for private RSS feeds (via SSL, and HTTP Auth Basic) is working again.
- refactored the code to support Atom’s “content constructs”, now supports:
atom:title, atom:tagline, atom:copyright, atom:info, atom:summary, andatom:content. Thanks to Tim Bishop for feedback and encouragement.
update: – where “refactor” meant introduced bugs. MagpieRSS 0.61 is now out.
Atom
Quick review- Content is normalized. You can access core RSS elements using Atom field names and visa vera.
atom:contentis stored in$item['atomcontent']to avoid clashing with RSS modcontent.- content constructs are flattened (as if they were always
mode="escaped") - Everything else is concatted into hierachical namespace.
- I’ve made no attempt to support base64 encoding
Private RSS (and Atom)
- To access a feed via SSL use the
https://scheme, e.g.https://example.org/index.rdf - To access a feed behind basic HTTP authentication include the username and password in the URL, e.g.
http://username:password@example.org/index.rdf - And, no surprises here, you can combine them
https://username:password@example.org/index.rdf
1 Comment




any example php code?
Like I am trying …