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; i