const std::string XHTMLReader::normalizedReference(const std::string &reference) const { const size_t index = reference.find('#'); if (index == std::string::npos) { return fileAlias(reference); } else { return fileAlias(reference.substr(0, index)) + reference.substr(index); } }
bool XHTMLReader::readFile(const ZLFile &file, const std::string &referenceName) { fillTagTable(); myPathPrefix = MiscUtil::htmlDirectoryPrefix(file.path()); myReferenceAlias = fileAlias(referenceName); myModelReader.addHyperlinkLabel(myReferenceAlias); const int index = referenceName.rfind('/', referenceName.length() - 1); myReferenceDirName = referenceName.substr(0, index + 1); myPreformatted = false; myNewParagraphInProgress = false; myReadState = READ_NOTHING; myCurrentParagraphIsEmpty = true; myStyleSheetTable.clear(); myCSSStack.clear(); myStyleEntryStack.clear(); myStylesToRemove = 0; myDoPageBreakAfterStack.clear(); myStyleParser = new StyleSheetSingleStyleParser(); myTableParser.reset(); return readDocument(file); }
bool XHTMLReader::readFile(const ZLFile &file, const std::string &referenceName) { fillTagTable(); myPathPrefix = MiscUtil::htmlDirectoryPrefix(file.path()); myReferenceAlias = fileAlias(referenceName); myModelReader.addHyperlinkLabel(myReferenceAlias); const int index = referenceName.rfind('/', referenceName.length() - 1); myReferenceDirName = referenceName.substr(0, index + 1); myPreformatted = false; myNewParagraphInProgress = false; myReadState = XHTML_READ_NOTHING; myBodyCounter = 0; myCurrentParagraphIsEmpty = true; myStyleSheetTable.clear(); myFontMap = new FontMap(); myTagDataStack.clear(); myStyleParser = new StyleSheetSingleStyleParser(myPathPrefix); myTableParser.reset(); return readDocument(file.inputStream(myEncryptionMap)); }
bool XHTMLReader::readFile(const ZLFile &file, const std::string &referenceName) { fillTagTable(); myPathPrefix = MiscUtil::htmlDirectoryPrefix(file.path()); myReferenceAlias = fileAlias(referenceName); myModelReader.addHyperlinkLabel(myReferenceAlias); const int index = referenceName.rfind('/', referenceName.length() - 1); myReferenceDirName = referenceName.substr(0, index + 1); myPreformatted = false; myNewParagraphInProgress = false; myReadState = XHTML_READ_NOTHING; myBodyCounter = 0; myCurrentParagraphIsEmpty = true; myStyleSheetTable.clear(); myFontMap = new FontMap(); myCSSStack.clear(); myStyleEntryStack.clear(); myStylesToRemove = 0; myDoPageBreakAfterStack.clear(); myStyleParser = new StyleSheetSingleStyleParser(myPathPrefix); myTableParser.reset(); shared_ptr<ZLInputStream> stream = file.inputStream(myEncryptionMap); if (!stream.isNull()) { return readDocument(file.inputStream(myEncryptionMap)); } else { if (file.exists() && !myEncryptionMap.isNull()) { myModelReader.insertEncryptedSectionParagraph(); } return false; } }