'Pseudonym' said:
uhhh... 2 <_info>s?
For the actual app, make it cross platform and it's perfect. I for one will switch between a Pandora and desktop. As for .XML, why not unarchive the file and find the standard .PXML file to gain all the information?
keep in mind this is only my $0.02 on the issue, for I may be catastrophically wrong on this.
Now app is full-xml compatible. It uses standard XML markups.
Now , all i need to do is to ask EvilDragon to put RSS compatible code to each category in archive.openpandora.org
[ example: every category will have own rss [ xml ] file that points directly to file download
category emulators will have own xml -> archive.openpandora.org/emulation.xml
category games will have own xml -> archive.openpandora.org/games.xml
]
If we make things this way it will be easy to develop similiar tool / app for linux or even on Pandora.
Sample code of XML file in category
CODE
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Copy and paste the url into your newsreader application" -->
<rss version="2.0"
xmlns:dc="http://purl.org/dc/elements/1.1/" // optional xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" // optional xmlns:admin="http://webns.net/mvcb/" // optional
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> // optional
<channel>
<title>Archive OpenPandora</title>
<link>http://archive.openpandora.org/emulation</link>
<description>OpenPandora :: Emulation</description>
<item>
<title>Program Name</title>
<link>Direct Link to file</link>
<image>Link to image</image>
<description>Short Description of program</description>
<guid isPermaLink="true"> </guid> // optional
<dc:subject></dc:subject> // optional
</item>
</channel>
Any suggestions?