How to reproduce
1. Add a few podcast feeds.
2. Select Tools / Scripts / Export subscribed podcasts.
Result
The exported file is not strict XML because it's missing the initial <?xml?> element. This means other apps that require strict XML, like Android apps, can't process the file.
Expected result
A strictly correct XML file, which requires this to be the first line:
<?xml version='1.0' ?>
Environment
WinXP SP2, MediaMonkey 3.1.1.1261 Standard Edition
Happy Holidays!
/Martin
Exported OPML file is not correct XML [#6231]
Moderator: Gurus
Re: Exported OPML file is not correct XML
It is OPML file, see http://www.opml.org/spec2
including
<opml version="1.0">
if you want to do a XML file from it you can by modifing the
MediaMonkey/Scripts/ExportOPML.vbs
including
<opml version="1.0">
if you want to do a XML file from it you can by modifing the
MediaMonkey/Scripts/ExportOPML.vbs
Re: Exported OPML file is not correct XML
How about that -- I didn't know OPML wasn't an XML format. Thanks for the pointer about how to tweak the export function.
All the best,
/Martin
All the best,
/Martin
Re: Exported OPML file is not correct XML
I read the OPML spec at http://www.opml.org/spec2. All the example OPML files on that page started with the line
<?xml version="1.0" encoding="ISO-8859-1"?>
But exports from MediaMonkey v3.1.1.1261 don't include that initial line. So it still looks like a MediaMonkey bug to me. What do you think? Am I missing something?
/Martin
<?xml version="1.0" encoding="ISO-8859-1"?>
But exports from MediaMonkey v3.1.1.1261 don't include that initial line. So it still looks like a MediaMonkey bug to me. What do you think? Am I missing something?
/Martin
Re: Exported OPML file is not correct XML
Yes, thanks, added as http://www.ventismedia.com/mantis/view.php?id=6231