}
JXL jxl = new JXL();
File file = new File(args[0]);
System.out.println("Reading Plucker INI: " + file.getAbsolutePath());
IniFile ini = new IniFile(file);
Document[] documents = ini.getDocuments();
for (int i = 0; i < documents.length; i++) {
if (documents[i].getURL().startsWith("http://")) {
// Only imports HTTP URLs for now
Element site = jxl.createSiteElement();
documents[i].toJXLFormat(site);