opml

What does "flatdown" mean?

The OPML (outline processor markup language spec) uses the term flatdown. What does it mean? expansionState is a comma-separated list of line numbers that are expanded. The line numbers in the list tell you which headlines to expand. The order is important. For each element in the list, X, starting at the first summit, navigate flat...

SharePoint MOSS BDC for reading in opml feeds

We currently have some c# code that runs and imports data from a number of opml feeds and stores it in several sql server tables. We are working in a moss environment and I am thinking the Business Data Catalog may be able to be utilised to make this process more robust/efficient. Can anyone suggest if it can? ...

How to move posts from blogging engine to another

How one can move blog posts from blogging engine to another? Is there away to transfer posts between blog engines, blogs ... lets say from community server blog to blog engine blog vice versa? Can that be done by using OPML, rss, atom ..etc? ...

Export a database query to OPML?

Is there a way to export a database query to OPML? ...

Import OPML subscriptions (file) to Google Reader manually

I have a huge (5,000+ feeds) OPML file which freezes and crashes my browser when I try uploading it to my Google Reader account using the following instructions: Login to Google Reader Click Your Subscription Click the More Actions dropdown Select Import Browse for your OPML file Click Open Click Upload You will see ...

Any advice on parsing an OPML file with PHP so I can import the addresses into a mySql database?

I want to be able to have the user select an OPML file that contains a large number of bookmarks, then loop through each one and toss it in a mysql database. Any direction would be much appreciated. ...

PHP OPML Parser

Kindly tell me how to make an opml parser.I have the code but it is not working for all generic opml files if (file_exists('test.opml')) { $xml =simplexml_load_file('test.opml'); } for($i=0;$i<=count($xml);$i++) { $array=array($xml->body->outline->outline[$i]); $key=(array_keys($array)); foreach ($array as $key) { echo "<...

Filtering OPML file by date of last post on each feed and outputting another OPML file based on results

I have a large OPML file acting as an archive for an online community. I'd like to generate further OPML files based on filtering the feeds it contains by the date last posted. OPML Archive > script > OPML file of feeds which have posted within the last two months. I need to leave the original OPML file intact for archival purposes. I...