Thanks, I've got basic cover download working, and caching is working as well. Getting started on the metadata. Comments were easy, Series/Publisher is tripping me up a bit. Both are stored as a Javacript variable that is written with a document.write. I can do regex of course, but trying to make use of better tools if they're available.
Here's an example, szSeries is the variable:
Code:
<script language="JavaScript" type="text/javascript"><!--
var szSeries = "Baroque Cycle";
if(szSeries.length > 0)
document.write("<div>Series: <a href=\"BANGSearch.dll?Type=Series&ID={60DB2DC2-5243-45E3-B929-732BB3C881A5}\">" + szSeries + "</a></div>\n");
//--></script>