From ce61f7bc3b6d378c821d205320a8ac9d15ca66eb Mon Sep 17 00:00:00 2001 From: henrikjust Date: Mon, 29 Mar 2010 11:07:24 +0000 Subject: [PATCH] Writer2xhtml custom config ui + EPUB export git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@55 f0f2a975-2e09-46c8-9428-3b39399b9f3c --- build.xml | 1 + source/distro/changelog.txt | 17 +- .../filter/ConfigurationDialogBase.java | 6 +- .../writer2xhtml/ConfigurationDialog.java | 59 ++++- source/java/writer2latex/Application.java | 10 +- .../writer2latex/api/ConverterFactory.java | 17 +- .../writer2latex/api/ConverterResult.java | 42 +++- source/java/writer2latex/api/MIMETypes.java | 7 +- source/java/writer2latex/api/OutputFile.java | 10 +- .../writer2latex/base/ContentEntryImpl.java | 60 +++++ .../java/writer2latex/base/ConverterBase.java | 22 +- .../base/ConverterResultImpl.java | 211 +++++++++++------- .../writer2latex/bibtex/BibTeXDocument.java | 11 +- .../java/writer2latex/bibtex/Converter.java | 8 +- .../writer2latex/epub/ContainerWriter.java | 77 +++++++ .../java/writer2latex/epub/EPUBConverter.java | 55 +++++ source/java/writer2latex/epub/EPUBWriter.java | 122 ++++++++++ source/java/writer2latex/epub/NCXWriter.java | 141 ++++++++++++ source/java/writer2latex/epub/OPFWriter.java | 159 +++++++++++++ .../java/writer2latex/latex/BibConverter.java | 8 +- .../writer2latex/latex/ConverterPalette.java | 8 +- .../writer2latex/latex/LaTeXDocument.java | 12 +- .../writer2latex/latex/SectionConverter.java | 4 +- source/java/writer2latex/office/MetaData.java | 6 +- source/java/writer2latex/xhtml/Converter.java | 35 ++- .../writer2latex/xhtml/TextConverter.java | 15 +- .../writer2latex/xhtml/XhtmlDocument.java | 4 + .../xmerge/BinaryGraphicsDocument.java | 6 +- .../java/writer2latex/xmerge/DOMDocument.java | 6 +- .../writer2latex/xmerge/OfficeDocument.java | 6 +- source/oxt/writer2xhtml/OptionPages.xcu | 40 +++- .../W2XDialogs2/ConfigurationRoot.xdl | 2 +- .../oxt/writer2xhtml/W2XDialogs2/Content.xdl | 2 +- .../writer2xhtml/W2XDialogs2/Formatting.xdl | 2 +- .../oxt/writer2xhtml/W2XDialogs2/Styles1.xdl | 38 ++++ .../{StylesPartII.xdl => Styles2.xdl} | 7 +- .../writer2xhtml/W2XDialogs2/StylesPartI.xdl | 44 ---- .../writer2xhtml/W2XDialogs2/Stylesheets.xdl | 19 ++ .../oxt/writer2xhtml/W2XDialogs2/dialog.xlb | 5 +- source/oxt/writer2xhtml/w2x_filters.xcu | 14 ++ source/oxt/writer2xhtml/w2x_types.xcu | 12 + 41 files changed, 1118 insertions(+), 212 deletions(-) create mode 100644 source/java/writer2latex/base/ContentEntryImpl.java create mode 100644 source/java/writer2latex/epub/ContainerWriter.java create mode 100644 source/java/writer2latex/epub/EPUBConverter.java create mode 100644 source/java/writer2latex/epub/EPUBWriter.java create mode 100644 source/java/writer2latex/epub/NCXWriter.java create mode 100644 source/java/writer2latex/epub/OPFWriter.java create mode 100644 source/oxt/writer2xhtml/W2XDialogs2/Styles1.xdl rename source/oxt/writer2xhtml/W2XDialogs2/{StylesPartII.xdl => Styles2.xdl} (67%) delete mode 100644 source/oxt/writer2xhtml/W2XDialogs2/StylesPartI.xdl create mode 100644 source/oxt/writer2xhtml/W2XDialogs2/Stylesheets.xdl diff --git a/build.xml b/build.xml index 4243d97..aac1115 100644 --- a/build.xml +++ b/build.xml @@ -161,6 +161,7 @@ + diff --git a/source/distro/changelog.txt b/source/distro/changelog.txt index fa2ed47..cad93e9 100644 --- a/source/distro/changelog.txt +++ b/source/distro/changelog.txt @@ -2,12 +2,19 @@ Changelog for Writer2LaTeX version 1.0 -> 1.2 ---------- version 1.1.2 ---------- -[all] API change: The interface ConverterResult supports additional methods - to access the main document flow as a List, an "external" table of contents - and meta data of the source document. New interfaces TocEntry and MetaData - have been introduced to support this. +[w2x] Added EPUB export -[all] API change: New method getMIMEType() added to the OutputFile interface +[all] API change: The interface ConverterResult supports an additional method + to access the meta data of the source document. A new interface MetaData has + been introduced to support this + +[all] API change: The interface ConverterResult supports additional methods + providing pointers to headings and index tables in the document. + A new interface TocEntry has been introduced to support this + +[all] API change: New methods getMIMEType() and isMasterDocument() added to the OutputFile + interface. The latter is used to identify files that are part of the main document flow + (only the XHTML export generates more that one master document currently) [w2x] Added user interface to edit custom configuration diff --git a/source/java/org/openoffice/da/comp/w2lcommon/filter/ConfigurationDialogBase.java b/source/java/org/openoffice/da/comp/w2lcommon/filter/ConfigurationDialogBase.java index 7b3ce23..43e59e1 100644 --- a/source/java/org/openoffice/da/comp/w2lcommon/filter/ConfigurationDialogBase.java +++ b/source/java/org/openoffice/da/comp/w2lcommon/filter/ConfigurationDialogBase.java @@ -20,7 +20,7 @@ * * All Rights Reserved. * -* Version 1.2 (2010-03-22) +* Version 1.2 (2010-03-26) * */ @@ -354,11 +354,11 @@ public abstract class ConfigurationDialogBase extends WeakBase implements XConta config.setOption(sConfigName, Boolean.toString(dlg.getCheckBoxStateAsBoolean(sCheckBoxName))); } - protected void textBoxFromConfig(DialogAccess dlg, String sTextBoxName, String sConfigName) { + protected void textFieldFromConfig(DialogAccess dlg, String sTextBoxName, String sConfigName) { dlg.setTextFieldText(sTextBoxName, config.getOption(sConfigName)); } - protected void textBoxToConfig(DialogAccess dlg, String sTextBoxName, String sConfigName) { + protected void textFieldToConfig(DialogAccess dlg, String sTextBoxName, String sConfigName) { config.setOption(sConfigName, dlg.getTextFieldText(sTextBoxName)); } diff --git a/source/java/org/openoffice/da/comp/writer2xhtml/ConfigurationDialog.java b/source/java/org/openoffice/da/comp/writer2xhtml/ConfigurationDialog.java index 74a4fb2..bcb7d36 100644 --- a/source/java/org/openoffice/da/comp/writer2xhtml/ConfigurationDialog.java +++ b/source/java/org/openoffice/da/comp/writer2xhtml/ConfigurationDialog.java @@ -20,7 +20,7 @@ * * All Rights Reserved. * -* Version 1.2 (2010-03-22) +* Version 1.2 (2010-03-26) * */ package org.openoffice.da.comp.writer2xhtml; @@ -69,9 +69,11 @@ public class ConfigurationDialog extends ConfigurationDialogBase implements XSer pageHandlers.put("General", new GeneralHandler()); //pageHandlers.put("Template", new TemplateHandler()); + pageHandlers.put("Stylesheets", new StylesheetsHandler()); + pageHandlers.put("Formatting", new FormattingHandler()); + //pageHandlers.put("Styles1", new StylesPartIHandler()); + //pageHandlers.put("Styles2", new StylesPartIIHandler()); pageHandlers.put("Formatting", new FormattingHandler()); - //pageHandlers.put("StylesPartI", new StylesPartIHandler()); - //pageHandlers.put("StylesPartII", new StylesPartIIHandler()); pageHandlers.put("Content", new ContentHandler()); } @@ -133,6 +135,57 @@ public class ConfigurationDialog extends ConfigurationDialogBase implements XSer } + private class StylesheetsHandler extends PageHandler { + + @Override protected void setControls(DialogAccess dlg) { + dlg.setCheckBoxStateAsBoolean("UseCustomStylesheet", config.getOption("custom_stylesheet").length()>0); + textFieldFromConfig(dlg, "CustomStylesheet", "custom_stylesheet"); + + useCustomStylesheetChange(dlg); + includeCustomStylesheetChange(dlg); + } + + @Override protected void getControls(DialogAccess dlg) { + if (dlg.getCheckBoxStateAsBoolean("UseCustomStylesheet")) { + textFieldToConfig(dlg, "CustomStylesheet", "custom_stylesheet"); + } + else { + config.setOption("custom_stylesheet", ""); + } + } + + @Override protected boolean handleEvent(DialogAccess dlg, String sMethod) { + if (sMethod.equals("UseCustomStylesheetChange")) { + useCustomStylesheetChange(dlg); + return true; + } + else if (sMethod.equals("IncludeCustomStylesheetChange")) { + includeCustomStylesheetChange(dlg); + return true; + } + else if (sMethod.equals("LoadButtonClick")) { + loadButtonClick(dlg); + return true; + } + return false; + } + + private void useCustomStylesheetChange(DialogAccess dlg) { + boolean bUseCustomStylesheet = dlg.getCheckBoxStateAsBoolean("UseCustomStylesheet"); + dlg.setControlEnabled("CustomStylesheetLabel", bUseCustomStylesheet); + dlg.setControlEnabled("CustomStylesheet", bUseCustomStylesheet); + } + + private void includeCustomStylesheetChange(DialogAccess dlg) { + dlg.setControlEnabled("IncludedCustomStylesheet", dlg.getCheckBoxStateAsBoolean("IncludeCustomStylesheet")); + } + + private void loadButtonClick(DialogAccess dlg) { + // TODO + } + + } + private class FormattingHandler extends PageHandler { private final String[] sExportValues = { "convert_all", "ignore_styles", "ignore_hard", "ignore_all" }; diff --git a/source/java/writer2latex/Application.java b/source/java/writer2latex/Application.java index 9b544f8..4eabb13 100644 --- a/source/java/writer2latex/Application.java +++ b/source/java/writer2latex/Application.java @@ -16,11 +16,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * - * Copyright: 2002-2009 by Henrik Just + * Copyright: 2002-2010 by Henrik Just * * All Rights Reserved. * - * Version 1.2 (2009-06-11) + * Version 1.2 (2010-03-29) * */ @@ -46,13 +46,13 @@ import writer2latex.api.MIMETypes; import writer2latex.util.Misc; /** - *

Commandline utility to convert an OpenOffice.org Writer XML file into XHTML/LaTeX/BibTeX

+ *

Command line utility to convert an OpenOffice.org Writer XML file into XHTML/LaTeX/BibTeX

*

The utility is invoked with the following command line:

*
java -jar writer2latex.jar [options] source [target]
*

Where the available options are *

    *
  • -latex, -bibtex, -xhtml, - -xhtml+mathml, -xhtml+mathml+xsl + -xhtml+mathml, -xhtml+mathml+xsl, -epub *
  • -recurse *
  • -ultraclean, -clean, -pdfscreen, * -pdfprint, -cleanxhtml @@ -279,6 +279,7 @@ public final class Application { System.out.println(" -xhtml11"); System.out.println(" -xhtml+mathml"); System.out.println(" -xhtml+mathml+xsl"); + System.out.println(" -epub"); System.out.println(" -recurse"); System.out.println(" -template[=]