diff --git a/build.xml b/build.xml
index b1e9f5f..784f6df 100644
--- a/build.xml
+++ b/build.xml
@@ -35,7 +35,7 @@
-
+
diff --git a/source/distro/changelog.txt b/source/distro/changelog.txt
index 122b7cc..edaa205 100644
--- a/source/distro/changelog.txt
+++ b/source/distro/changelog.txt
@@ -2,6 +2,8 @@ Changelog for Writer2LaTeX version 1.0 -> 1.2
---------- version 1.1.8 ----------
+[w2x] Crossed out headings are ignored in EPUB export, but retained in the external toc
+
[all] Added Farsi translation from Mostafa Barmshory
[w2l] Added support for xepersian.sty (fa_IR locale, requires XeTeX backend and multilingual=true)
diff --git a/source/distro/doc/user-manual.odt b/source/distro/doc/user-manual.odt
index 1c3dee1..0883b81 100644
Binary files a/source/distro/doc/user-manual.odt and b/source/distro/doc/user-manual.odt differ
diff --git a/source/java/writer2latex/api/ConverterFactory.java b/source/java/writer2latex/api/ConverterFactory.java
index 34ef262..7fe0eae 100644
--- a/source/java/writer2latex/api/ConverterFactory.java
+++ b/source/java/writer2latex/api/ConverterFactory.java
@@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
- * Version 1.2 (2011-05-09)
+ * Version 1.2 (2011-06-05)
*
*/
@@ -33,7 +33,7 @@ public class ConverterFactory {
// Version information
private static final String VERSION = "1.1.8";
- private static final String DATE = "2011-05-09";
+ private static final String DATE = "2011-06-05";
/** Return the Writer2LaTeX version in the form
* (major version).(minor version).(patch level)
diff --git a/source/java/writer2latex/xhtml/TextConverter.java b/source/java/writer2latex/xhtml/TextConverter.java
index f9b3154..fd8a8fe 100644
--- a/source/java/writer2latex/xhtml/TextConverter.java
+++ b/source/java/writer2latex/xhtml/TextConverter.java
@@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
- * Version 1.2 (2011-03-09)
+ * Version 1.2 (2011-06-05)
*
*/
@@ -610,18 +610,6 @@ public class TextConverter extends ConverterHelper {
private void handleHeading(Element onode, Node hnode, boolean bAfterSplit,
ListStyle listStyle, int nListLevel, boolean bUnNumbered,
boolean bRestart, int nStartValue) {
- String sStyleName = onode.getAttribute(XMLString.TEXT_STYLE_NAME);
- StyleWithProperties style = ofr.getParStyle(sStyleName);
- if (!bDisplayHiddenText && style!=null && "none".equals(style.getProperty(XMLString.TEXT_DISPLAY))) { return; }
- if (!bUnNumbered) {
- // If the heading uses a paragraph style which sets an explicit empty list style name, it's unnumbered
- if (style!=null) {
- String sListStyleName = style.getListStyleName();
- if (sListStyleName!=null && sListStyleName.length()==0) {
- bUnNumbered = true;
- }
- }
- }
// Note: nListLevel may in theory be different from the outline level,
// though the ui in OOo does not allow this
@@ -632,31 +620,66 @@ public class TextConverter extends ConverterHelper {
// Note: Conditional styles are not supported
int nLevel = getOutlineLevel(onode);
- if (nLevel<=6) {
- if (nLevel==1) { currentChapter = onode; }
- // If split output, add headings of higher levels
- if (bAfterSplit && nSplit>0) {
- int nFirst = nLevel-nRepeatLevels;
- if (nFirst<0) { nFirst=0; }
- for (int i=nFirst; i0) {
+ int nFirst = nLevel-nRepeatLevels;
+ if (nFirst<0) { nFirst=0; }
+ for (int i=nFirst; inSplit ? sTarget : null);
+ // Prepend numbering
+ if (!bUnNumbered) {
+ if (config.zenHack() && nLevel==2) {
+ // Hack for ePub Zen Garden: Special style for the prefix at level 2
+ // TODO: Replace by some proper style map construct...
+ insertListLabel(listStyle,nListLevel,"SectionNumber",counter.getPrefix(),counter.getLabelAndSuffix(),heading);
+ }
+ else {
+ insertListLabel(listStyle,nListLevel,"SectionNumber",null,sLabel,heading);
+ }
+ }
+
+ // Add to toc
+ if (!bInToc) {
+ String sTarget = "toc"+(++nTocIndex);
+ converter.addTarget(heading,sTarget);
+
+ // Add in external content. For single file output we include all level 1 headings + their target
+ // Targets are added only when the toc level is deeper than the split level
+ if (nLevel<=nExternalTocDepth) {
+ converter.addContentEntry(sLabel+converter.getPlainInlineText(onode), nLevel,
+ nLevel>nSplit ? sTarget : null);
+ }
+
+ // Add to real toc
+ TocEntry entry = new TocEntry();
+ entry.onode = onode;
+ entry.sLabel = sLabel;
+ entry.nFileIndex = converter.getOutFileIndex();
+ entry.nOutlineLevel = nLevel;
+ entry.nOutlineNumber = naturalOutline.step(nLevel).getValues();
+ tocEntries.add(entry);
+ }
+
+ // Convert content
+ StyleInfo innerInfo = new StyleInfo();
+ getHeadingSc().applyInnerStyle(nLevel, sStyleName, innerInfo);
+ Element content = heading;
+ if (innerInfo.sTagName!=null && innerInfo.sTagName.length()>0) {
+ content = converter.createElement(innerInfo.sTagName);
+ heading.appendChild(content);
+ applyStyle(innerInfo, content);
+ }
+ traverseInlineText(onode,content);
+ // Keep track of current headings for split output
+ currentHeading[nLevel] = heading;
+ for (int i=nLevel+1; i<=6; i++) {
+ currentHeading[i] = null;
}
-
- // Add to real toc
- TocEntry entry = new TocEntry();
- entry.onode = onode;
- entry.sLabel = sLabel;
- entry.nFileIndex = converter.getOutFileIndex();
- entry.nOutlineLevel = nLevel;
- entry.nOutlineNumber = naturalOutline.step(nLevel).getValues();
- tocEntries.add(entry);
- }
-
- // Convert content
- StyleInfo innerInfo = new StyleInfo();
- getHeadingSc().applyInnerStyle(nLevel, sStyleName, innerInfo);
- Element content = heading;
- if (innerInfo.sTagName!=null && innerInfo.sTagName.length()>0) {
- content = converter.createElement(innerInfo.sTagName);
- heading.appendChild(content);
- applyStyle(innerInfo, content);
- }
- traverseInlineText(onode,content);
-
- // Keep track of current headings for split output
- currentHeading[nLevel] = heading;
- for (int i=nLevel+1; i<=6; i++) {
- currentHeading[i] = null;
- }
+ }
+ else {
+ if (!bInToc) {
+ // Add in external content. For single file output we include all level 1 headings + their target
+ // Targets are added only when the toc level is deeper than the split level
+ if (nLevel<=nExternalTocDepth) {
+ // Add an empty div to use as target, if required
+ String sTarget = null;
+ if (nLevel>nSplit) {
+ Element div = converter.createElement("div");
+ hnode.appendChild(div);
+ sTarget = "toc"+(++nTocIndex);
+ converter.addTarget(div,sTarget);
+ }
+ converter.addContentEntry(sLabel+converter.getPlainInlineText(onode), nLevel, sTarget);
+ }
+ }
+ // Keep track of current headings for split output
+ currentHeading[nLevel] = null;
+ for (int i=nLevel+1; i<=6; i++) {
+ currentHeading[i] = null;
+ }
+
+ }
}
else { // beyond h6 - export as ordinary paragraph
handleParagraph(onode,hnode);