w2x: epub 3 semantic inflection
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@252 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
parent
062d444e3d
commit
442a22f6c0
6 changed files with 54 additions and 34 deletions
|
@ -2,11 +2,12 @@ Changelog for Writer2LaTeX version 1.4 -> 1.6
|
||||||
|
|
||||||
---------- version 1.5.3 ----------
|
---------- version 1.5.3 ----------
|
||||||
|
|
||||||
[w2x] Added support for semantic inflection in EPUB 3 export for the types toc, index
|
[w2x] Added support for semantic inflection in EPUB 3 export for the types footnote(s), endnote(s), toc, index
|
||||||
|
and bibliography
|
||||||
(http://www.idpf.org/epub/30/spec/epub30-contentdocs.html#sec-xhtml-semantic-inflection).
|
(http://www.idpf.org/epub/30/spec/epub30-contentdocs.html#sec-xhtml-semantic-inflection).
|
||||||
|
|
||||||
[w2x] Improved the semantic markup of the table of contents and the alphabetical index in HTML export using sections,
|
[w2x] Improved the semantic markup of footnotes, endnotes, table of contents and alphabetical index in HTML export
|
||||||
headings and lists
|
using sections, asides, headings and lists
|
||||||
|
|
||||||
[w2x] Added support for background color of alphabetical index and bibliography
|
[w2x] Added support for background color of alphabetical index and bibliography
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* All Rights Reserved.
|
* All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Version 1.6 (2015-05-29)
|
* Version 1.6 (2015-06-12)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ public class ConverterFactory {
|
||||||
|
|
||||||
// Version information
|
// Version information
|
||||||
private static final String VERSION = "1.5.3";
|
private static final String VERSION = "1.5.3";
|
||||||
private static final String DATE = "2015-05-29";
|
private static final String DATE = "2015-06-12";
|
||||||
|
|
||||||
/** Return the Writer2LaTeX version in the form
|
/** Return the Writer2LaTeX version in the form
|
||||||
* (major version).(minor version).(patch level)<br/>
|
* (major version).(minor version).(patch level)<br/>
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* All Rights Reserved.
|
* All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Version 1.6 (2015-06-11)
|
* Version 1.6 (2015-06-12)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
package writer2latex.xhtml;
|
package writer2latex.xhtml;
|
||||||
|
@ -51,20 +51,21 @@ public class BibliographyConverter extends ConverterHelper {
|
||||||
// so we have to recreate the bibliography from the template.
|
// so we have to recreate the bibliography from the template.
|
||||||
Node body = Misc.getChildByTagName(onode,XMLString.TEXT_INDEX_BODY);
|
Node body = Misc.getChildByTagName(onode,XMLString.TEXT_INDEX_BODY);
|
||||||
if (body!=null) {
|
if (body!=null) {
|
||||||
Element div = converter.createElement("div");
|
Element container = converter.createElement(converter.isHTML5() ? "section" : "div");
|
||||||
String sStyleName = Misc.getAttribute(onode,XMLString.TEXT_STYLE_NAME);
|
String sStyleName = Misc.getAttribute(onode,XMLString.TEXT_STYLE_NAME);
|
||||||
if (sStyleName!=null) {
|
if (sStyleName!=null) {
|
||||||
StyleInfo sectionInfo = new StyleInfo();
|
StyleInfo sectionInfo = new StyleInfo();
|
||||||
getSectionSc().applyStyle(sStyleName,sectionInfo);
|
getSectionSc().applyStyle(sStyleName,sectionInfo);
|
||||||
applyStyle(sectionInfo,div);
|
applyStyle(sectionInfo,container);
|
||||||
}
|
}
|
||||||
|
|
||||||
converter.addTarget(div,"bibliography");
|
converter.addTarget(container,"bibliography");
|
||||||
hnode.appendChild(div);
|
converter.addEpubType(container, "bibliography");
|
||||||
|
hnode.appendChild(container);
|
||||||
//asapNode = converter.createTarget("bibliography");
|
//asapNode = converter.createTarget("bibliography");
|
||||||
Node title = Misc.getChildByTagName(body,XMLString.TEXT_INDEX_TITLE);
|
Node title = Misc.getChildByTagName(body,XMLString.TEXT_INDEX_TITLE);
|
||||||
if (title!=null) { getTextCv().traverseBlockText(title,div); }
|
if (title!=null) { getTextCv().traverseBlockText(title,container); }
|
||||||
getTextCv().traverseBlockText(body,div);
|
getTextCv().traverseBlockText(body,container);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,11 +20,12 @@
|
||||||
*
|
*
|
||||||
* All Rights Reserved.
|
* All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Version 1.6 (2015-06-11)
|
* Version 1.6 (2015-06-12)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
package writer2latex.xhtml;
|
package writer2latex.xhtml;
|
||||||
|
|
||||||
|
import org.w3c.dom.Element;
|
||||||
import org.w3c.dom.Node;
|
import org.w3c.dom.Node;
|
||||||
|
|
||||||
import writer2latex.office.OfficeReader;
|
import writer2latex.office.OfficeReader;
|
||||||
|
@ -42,8 +43,9 @@ public class EndnoteConverter extends NoteConverter {
|
||||||
public void insertEndnotes(Node hnode) {
|
public void insertEndnotes(Node hnode) {
|
||||||
if (hasNotes()) {
|
if (hasNotes()) {
|
||||||
if (config.getXhtmlSplitLevel()>0) { hnode = converter.nextOutFile(); }
|
if (config.getXhtmlSplitLevel()>0) { hnode = converter.nextOutFile(); }
|
||||||
insertNoteHeading(hnode, config.getEndnotesHeading(), "endnotes");
|
Element section = createNoteSection(hnode, "rearnotes");
|
||||||
insertNotes(hnode);
|
insertNoteHeading(section, config.getEndnotesHeading(), "endnotes");
|
||||||
|
flushNotes(section,"rearnote");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* All Rights Reserved.
|
* All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Version 1.6 (2015-06-11)
|
* Version 1.6 (2015-06-12)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
package writer2latex.xhtml;
|
package writer2latex.xhtml;
|
||||||
|
@ -53,20 +53,24 @@ public class FootnoteConverter extends NoteConverter {
|
||||||
*/
|
*/
|
||||||
public void insertFootnotes(Node hnode, boolean bFinal) {
|
public void insertFootnotes(Node hnode, boolean bFinal) {
|
||||||
if (hasNotes()) {
|
if (hasNotes()) {
|
||||||
if (bFootnotesAtPage) { // Add footnote rule
|
if (bFootnotesAtPage) {
|
||||||
|
Element section = createNoteSection(hnode, "footnotes");
|
||||||
|
|
||||||
|
// Add footnote rule
|
||||||
Element rule = converter.createElement("hr");
|
Element rule = converter.createElement("hr");
|
||||||
StyleInfo info = new StyleInfo();
|
StyleInfo info = new StyleInfo();
|
||||||
getPageSc().applyFootnoteRuleStyle(info);
|
getPageSc().applyFootnoteRuleStyle(info);
|
||||||
getPageSc().applyStyle(info, rule);
|
getPageSc().applyStyle(info, rule);
|
||||||
hnode.appendChild(rule);
|
section.appendChild(rule);
|
||||||
}
|
|
||||||
else if (bFinal) { // New page if required for footnotes as endnotes
|
|
||||||
if (config.getXhtmlSplitLevel()>0) { hnode = converter.nextOutFile(); }
|
|
||||||
insertNoteHeading(hnode, config.getFootnotesHeading(), "footnotes");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (bFinal || bFootnotesAtPage) { // Insert the footnotes
|
flushNotes(section,"footnote");
|
||||||
insertNotes(hnode);
|
}
|
||||||
|
else if (bFinal) {
|
||||||
|
// New page if required for footnotes as endnotes
|
||||||
|
if (config.getXhtmlSplitLevel()>0) { hnode = converter.nextOutFile(); }
|
||||||
|
Element section = createNoteSection(hnode, "footnotes");
|
||||||
|
insertNoteHeading(section, config.getFootnotesHeading(), "footnotes");
|
||||||
|
flushNotes(section,"footnote");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
* All Rights Reserved.
|
* All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Version 1.6 (2015-06-11)
|
* Version 1.6 (2015-06-12)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
package writer2latex.xhtml;
|
package writer2latex.xhtml;
|
||||||
|
@ -41,7 +41,7 @@ import writer2latex.util.Misc;
|
||||||
public class NoteConverter extends ConverterHelper {
|
public class NoteConverter extends ConverterHelper {
|
||||||
|
|
||||||
// The notes configuration
|
// The notes configuration
|
||||||
private PropertySet configuration;
|
private PropertySet noteConfig;
|
||||||
|
|
||||||
// The collection of notes
|
// The collection of notes
|
||||||
private List<Node> notes = new ArrayList<Node>();
|
private List<Node> notes = new ArrayList<Node>();
|
||||||
|
@ -55,7 +55,7 @@ public class NoteConverter extends ConverterHelper {
|
||||||
*/
|
*/
|
||||||
public NoteConverter(OfficeReader ofr, XhtmlConfig config, Converter converter, PropertySet noteConfig) {
|
public NoteConverter(OfficeReader ofr, XhtmlConfig config, Converter converter, PropertySet noteConfig) {
|
||||||
super(ofr,config,converter);
|
super(ofr,config,converter);
|
||||||
this.configuration = noteConfig;
|
this.noteConfig = noteConfig;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Handle a footnote or endnote. This method inserts the citation and stores the actual note for later processing
|
/** Handle a footnote or endnote. This method inserts the citation and stores the actual note for later processing
|
||||||
|
@ -65,12 +65,13 @@ public class NoteConverter extends ConverterHelper {
|
||||||
*/
|
*/
|
||||||
public void handleNote(Node onode, Node hnode) {
|
public void handleNote(Node onode, Node hnode) {
|
||||||
// Create a style span for the citation
|
// Create a style span for the citation
|
||||||
String sCitBodyStyle = configuration.getProperty(XMLString.TEXT_CITATION_BODY_STYLE_NAME);
|
String sCitBodyStyle = noteConfig.getProperty(XMLString.TEXT_CITATION_BODY_STYLE_NAME);
|
||||||
Element span = getTextCv().createInline((Element) hnode,sCitBodyStyle);
|
Element span = getTextCv().createInline((Element) hnode,sCitBodyStyle);
|
||||||
// Add target and back-link to the span
|
// Add target and back-link to the span
|
||||||
String sId = Misc.getAttribute(onode,XMLString.TEXT_ID);
|
String sId = Misc.getAttribute(onode,XMLString.TEXT_ID);
|
||||||
Element link = converter.createLink(sId);
|
Element link = converter.createLink(sId);
|
||||||
converter.addTarget(link,"body"+sId);
|
converter.addTarget(link,"body"+sId);
|
||||||
|
converter.addEpubType(link, "noteref");
|
||||||
span.appendChild(link);
|
span.appendChild(link);
|
||||||
// Get the citation
|
// Get the citation
|
||||||
Element citation = Misc.getChildByTagName(onode,XMLString.TEXT_NOTE_CITATION);
|
Element citation = Misc.getChildByTagName(onode,XMLString.TEXT_NOTE_CITATION);
|
||||||
|
@ -91,6 +92,13 @@ public class NoteConverter extends ConverterHelper {
|
||||||
protected boolean hasNotes() {
|
protected boolean hasNotes() {
|
||||||
return notes.size()>0;
|
return notes.size()>0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected Element createNoteSection(Node hnode, String sEpubType) {
|
||||||
|
Element section = converter.createElement(converter.isHTML5() ? "section" : "div");
|
||||||
|
hnode.appendChild(section);
|
||||||
|
converter.addEpubType(section, sEpubType);
|
||||||
|
return section;
|
||||||
|
}
|
||||||
|
|
||||||
protected void insertNoteHeading(Node hnode, String sHeading, String sTarget) {
|
protected void insertNoteHeading(Node hnode, String sHeading, String sTarget) {
|
||||||
if (sHeading.length()>0) {
|
if (sHeading.length()>0) {
|
||||||
|
@ -111,10 +119,14 @@ public class NoteConverter extends ConverterHelper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void insertNotes(Node hnode) {
|
protected void flushNotes(Node hnode, String sEpubType) {
|
||||||
int nSize = notes.size();
|
int nSize = notes.size();
|
||||||
for (int i=0; i<nSize; i++) {
|
for (int i=0; i<nSize; i++) {
|
||||||
Node note = notes.get(i);
|
Node note = notes.get(i);
|
||||||
|
// Create container
|
||||||
|
Element aside = converter.createElement(converter.isHTML5() ? "aside" : "div");
|
||||||
|
hnode.appendChild(aside);
|
||||||
|
converter.addEpubType(aside, sEpubType);
|
||||||
// Get the citation
|
// Get the citation
|
||||||
Node citation = Misc.getChildByTagName(note,XMLString.TEXT_NOTE_CITATION);
|
Node citation = Misc.getChildByTagName(note,XMLString.TEXT_NOTE_CITATION);
|
||||||
if (citation==null) { // try old format
|
if (citation==null) { // try old format
|
||||||
|
@ -134,7 +146,7 @@ public class NoteConverter extends ConverterHelper {
|
||||||
// Export the note
|
// Export the note
|
||||||
String sId = Misc.getAttribute(note,XMLString.TEXT_ID);
|
String sId = Misc.getAttribute(note,XMLString.TEXT_ID);
|
||||||
createAnchor(sId,citation);
|
createAnchor(sId,citation);
|
||||||
getTextCv().traverseBlockText(body,hnode);
|
getTextCv().traverseBlockText(body,aside);
|
||||||
}
|
}
|
||||||
notes.clear();
|
notes.clear();
|
||||||
}
|
}
|
||||||
|
@ -145,13 +157,13 @@ public class NoteConverter extends ConverterHelper {
|
||||||
converter.addTarget(link,sId);
|
converter.addTarget(link,sId);
|
||||||
|
|
||||||
// Style it
|
// Style it
|
||||||
String sCitStyle = configuration.getProperty(XMLString.TEXT_CITATION_STYLE_NAME);
|
String sCitStyle = noteConfig.getProperty(XMLString.TEXT_CITATION_STYLE_NAME);
|
||||||
StyleInfo linkInfo = new StyleInfo();
|
StyleInfo linkInfo = new StyleInfo();
|
||||||
getTextSc().applyStyle(sCitStyle,linkInfo);
|
getTextSc().applyStyle(sCitStyle,linkInfo);
|
||||||
applyStyle(linkInfo,link);
|
applyStyle(linkInfo,link);
|
||||||
|
|
||||||
// Add prefix
|
// Add prefix
|
||||||
String sPrefix = configuration.getProperty(XMLString.STYLE_NUM_PREFIX);
|
String sPrefix = noteConfig.getProperty(XMLString.STYLE_NUM_PREFIX);
|
||||||
if (sPrefix!=null) {
|
if (sPrefix!=null) {
|
||||||
link.appendChild(converter.createTextNode(sPrefix));
|
link.appendChild(converter.createTextNode(sPrefix));
|
||||||
}
|
}
|
||||||
|
@ -160,7 +172,7 @@ public class NoteConverter extends ConverterHelper {
|
||||||
getTextCv().traversePCDATA(citation,link);
|
getTextCv().traversePCDATA(citation,link);
|
||||||
|
|
||||||
// Add suffix
|
// Add suffix
|
||||||
String sSuffix = configuration.getProperty(XMLString.STYLE_NUM_SUFFIX);
|
String sSuffix = noteConfig.getProperty(XMLString.STYLE_NUM_SUFFIX);
|
||||||
if (sSuffix!=null) {
|
if (sSuffix!=null) {
|
||||||
link.appendChild(converter.createTextNode(sSuffix));
|
link.appendChild(converter.createTextNode(sSuffix));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue