mertakdut / EpubParser

Parses .epub files, provides seperation page by page.
Apache License 2.0
118 stars 27 forks source link

opf:guide did not load #22

Closed epubreader closed 7 years ago

epubreader commented 7 years ago

opf:guide did not load, when the node name is "opf:guide", I think you change equals to endwiths method

` boolean fillContent(Node node) throws ReadingException { if(node.getNodeName().equals("metadata")) { this.getMetadata().fillAttributes(node.getChildNodes()); this.isMetadataFound = true; } else if(node.getNodeName().equals("manifest")) { this.getManifest().fillXmlItemList(node.getChildNodes()); this.isManifestFound = true; } else if(node.getNodeName().equals("spine")) { this.getSpine().fillXmlItemList(node.getChildNodes()); this.isSpineFound = true; } else if(node.getNodeName().equals("guide")) { this.getGuide().fillXmlItemList(node.getChildNodes()); this.isGuideFound = true; }

    return this.isMetadataFound && this.isManifestFound && this.isSpineFound && this.isGuideFound;
}

<?xml version="1.0" encoding="UTF-8"?>

Jeffrey Sussman Max Baer and Barney Ross In the 1920s and 30s, anti-Semitism was rife in the United States and Europe. Jews needed symbols of strength and demonstrations of courage against their enemies, and they found both in two champions of boxing: Max Baer and Barney Ross. Baer was the only Jewish heavyweight champion in the twentieth century, while Ross was considered one of the greatest welterweight and lightweight champions of the era. Although their careers never crossed paths, their boxing triumphs played a common role in lifting the spirits of persecuted Jews.<br />In Max Baer and Barney Ross: Jewish Heroes of Boxing, Jeffrey Sussman chronicles the lives of two men whose successful bouts inside the ring served as inspiration for Jewish fans across the country and around the world. Though they came from very different backgrounds&#8212;Baer grew up on his family's ranch in California, while Ross roamed the tough streets of Chicago and was a runner for Al Capone&#8212;both would bask in the limelight as boxing... Rowman & Littlefield Publishers 2012-04-18T23:00:00+00:00 2012-04-12T12:00:00Z urn:isbn:undefined undefined undefined undefined calibre (2.50.0) [http://calibre-ebook.com] en-US b2fc722a-91da-47fe-a8dc-f52748dcc098 `
mertakdut commented 7 years ago

I'll do the tests needed and will try to find the best solution possible.