Drummer’s native file format is OPML and OPML is the format for reading lists. This has led to some very nice synergies.
Example: A script you can add to your Scripts menu that asks for the URL of a feed, and inserts a node into your outline.
var url = dialog.ask (“URL of feed”)
var theFeed = rss.readFeed (url)
op.insert (theFeed.title)
op.attributes.addGroup ({type: ‘rss’, xmlUrl: url})
Here are the DocServer pages
dialog.ask
rss.readFeed
op.insert
op.attributes.addGroup
Took five minutes to write and worked the first time. ????