diff --git a/source/distro/changelog.txt b/source/distro/changelog.txt index 15fdc2c..74e29a1 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.2 ---------- +[all] API change: Added the method readStyleSheet to the Converter interface + [w2x] The custom configuration now supports an optional xhtml template (writer2xhtml-template.xhtml) in the same directory as writer2xhtml.xml diff --git a/source/java/org/openoffice/da/comp/w2lcommon/filter/FilterDataParser.java b/source/java/org/openoffice/da/comp/w2lcommon/filter/FilterDataParser.java index 31fa970..b679b6e 100644 --- a/source/java/org/openoffice/da/comp/w2lcommon/filter/FilterDataParser.java +++ b/source/java/org/openoffice/da/comp/w2lcommon/filter/FilterDataParser.java @@ -16,11 +16,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * - * Copyright: 2002-2008 by Henrik Just + * Copyright: 2002-2010 by Henrik Just * * All Rights Reserved. * - * Version 1.0 (2008-11-22) + * Version 1.2 (2010-04-12) * */ @@ -108,7 +108,7 @@ public class FilterDataParser { PropertyHelper props = new PropertyHelper(filterData); - // Get the special properties TemplateURL, ConfigURL and AutoCreate + // Get the special properties TemplateURL, StyleSheetURL, ConfigURL and AutoCreate Object tpl = props.get("TemplateURL"); String sTemplate = null; if (tpl!=null && AnyConverter.isString(tpl)) { @@ -120,6 +120,17 @@ public class FilterDataParser { } } + Object styles = props.get("StyleSheetURL"); + String sStyleSheet = null; + if (styles!=null && AnyConverter.isString(styles)) { + try { + sStyleSheet = substituteVariables(AnyConverter.toString(styles)); + } + catch (com.sun.star.lang.IllegalArgumentException e) { + // Failed to convert to String; should not happen - ignore + } + } + Object auto = props.get("AutoCreate"); boolean bAutoCreate = false; if (auto!=null && AnyConverter.isString(auto)) { @@ -169,6 +180,31 @@ public class FilterDataParser { } } + // Load the style sheet from the specified URL, if any + if (sfa2!=null && sStyleSheet!=null && sStyleSheet.length()>0) { + try { + XInputStream xIs = sfa2.openFileRead(sStyleSheet); + if (xIs!=null) { + InputStream is = new XInputStreamToInputStreamAdapter(xIs); + converter.readStyleSheet(is); + is.close(); + xIs.closeInput(); + } + } + catch (IOException e) { + // ignore + } + catch (NotConnectedException e) { + // ignore + } + catch (CommandAbortedException e) { + // ignore + } + catch (com.sun.star.uno.Exception e) { + // ignore + } + } + // Create config if required try { if (bAutoCreate && sfa2!=null && sConfig!=null && !sConfig.startsWith("*") && !sfa2.exists(sConfig)) { @@ -235,7 +271,7 @@ public class FilterDataParser { Enumeration keys = props.keys(); while (keys.hasMoreElements()) { String sKey = keys.nextElement(); - if (!"ConfigURL".equals(sKey) && !"TemplateURL".equals(sKey) && !"AutoCreate".equals(sKey)) { + if (!"ConfigURL".equals(sKey) && !"TemplateURL".equals(sKey) && !"StyleSheetURL".equals(sKey) && !"AutoCreate".equals(sKey)) { Object value = props.get(sKey); if (AnyConverter.isString(value)) { try { diff --git a/source/java/org/openoffice/da/comp/w2lcommon/filter/OptionsDialogBase.java b/source/java/org/openoffice/da/comp/w2lcommon/filter/OptionsDialogBase.java index d14022c..d847d5e 100644 --- a/source/java/org/openoffice/da/comp/w2lcommon/filter/OptionsDialogBase.java +++ b/source/java/org/openoffice/da/comp/w2lcommon/filter/OptionsDialogBase.java @@ -16,11 +16,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * - * Copyright: 2002-2019 by Henrik Just + * Copyright: 2002-2010 by Henrik Just * * All Rights Reserved. * - * Version 1.2 (2010-03-12) + * Version 1.2 (2010-04-12) * */ @@ -401,6 +401,7 @@ public abstract class OptionsDialogBase extends DialogBase implements MacroExpander expander = new MacroExpander(xContext); filterData.put("ConfigURL",expander.expandMacros(XPropertySetHelper.getPropertyValueAsString(xCfgProps,"ConfigURL"))); filterData.put("TemplateURL",expander.expandMacros(XPropertySetHelper.getPropertyValueAsString(xCfgProps,"TargetTemplateURL"))); + filterData.put("StyleSheetURL",expander.expandMacros(XPropertySetHelper.getPropertyValueAsString(xCfgProps,"StyleSheetURL"))); XPropertySetHelper.setPropertyValue(xProps,"ConfigName",sConfigNames[i]); bFound = true; } diff --git a/source/java/org/openoffice/da/comp/writer2xhtml/XhtmlOptionsDialog.java b/source/java/org/openoffice/da/comp/writer2xhtml/XhtmlOptionsDialog.java index 8adf009..e37be27 100644 --- a/source/java/org/openoffice/da/comp/writer2xhtml/XhtmlOptionsDialog.java +++ b/source/java/org/openoffice/da/comp/writer2xhtml/XhtmlOptionsDialog.java @@ -20,7 +20,7 @@ * * All Rights Reserved. * - * Version 1.2 (2010-04-11) + * Version 1.2 (2010-04-12) * */ @@ -109,13 +109,12 @@ public class XhtmlOptionsDialog extends OptionsDialogBase { case 6: case 7: case 8: helper.put("ConfigURL","*cleanxhtml.xml"); - helper.put("custom_stylesheet", - "http://www.w3.org/StyleSheets/Core/"+sCoreStyles[nConfig-1]); + helper.put("custom_stylesheet", "http://www.w3.org/StyleSheets/Core/"+sCoreStyles[nConfig-1]); break; case 9: helper.put("ConfigURL","$(user)/writer2xhtml.xml"); + helper.put("AutoCreate","true"); helper.put("TemplateURL", "$(user)/writer2xhtml-template.xhtml"); - //helper.put("StyleSheetURL", "$(user)/writer2xhtml-style.css"); - helper.put("AutoCreate","true"); + helper.put("StyleSheetURL", "$(user)/writer2xhtml-styles.css"); } saveCheckBoxOption(xProps, helper, "ConvertToPx", "convert_to_px"); diff --git a/source/java/writer2latex/Application.java b/source/java/writer2latex/Application.java index 4eabb13..1c2d331 100644 --- a/source/java/writer2latex/Application.java +++ b/source/java/writer2latex/Application.java @@ -20,7 +20,7 @@ * * All Rights Reserved. * - * Version 1.2 (2010-03-29) + * Version 1.2 (2010-04-12) * */ @@ -58,6 +58,7 @@ import writer2latex.util.Misc; * -pdfprint, -cleanxhtml *
  • -config[=]filename *
  • -template[=]filename + *
  • -stylesheet[=]filename *
  • -option[=]value * *

    where option can be any simple option known to Writer2LaTeX @@ -70,6 +71,7 @@ public final class Application { private boolean bRecurse = false; private Vector configFileNames = new Vector(); private String sTemplateFileName = null; + private String sStyleSheetFileName = null; private Hashtable options = new Hashtable(); private String sSource = null; private String sTarget = null; @@ -155,7 +157,7 @@ public final class Application { batchCv.setConverter(converter); } - // Step 5: Read template + // Step 5a: Read template if (sTemplateFileName!=null) { try { System.out.println("Reading template "+sTemplateFileName); @@ -176,6 +178,23 @@ public final class Application { } } + // Step 5b: Read style sheet + if (sStyleSheetFileName!=null) { + try { + System.out.println("Reading style sheet "+sStyleSheetFileName); + byte [] styleSheetBytes = Misc.inputStreamToByteArray(new FileInputStream(sStyleSheetFileName)); + converter.readStyleSheet(new ByteArrayInputStream(styleSheetBytes)); + } + catch (FileNotFoundException e) { + System.out.println("--> This file does not exist!"); + System.out.println(" "+e.getMessage()); + } + catch (IOException e) { + System.out.println("--> Failed to read the style sheet file!"); + System.out.println(" "+e.getMessage()); + } + } + // Step 6: Read config for (int i=0; i"); + System.out.println(" -stylesheet[=]