From fe1b3e2fc59c5d4ae13e067d39a17223929e78bc Mon Sep 17 00:00:00 2001 From: henrikjust Date: Sun, 8 Mar 2009 13:43:50 +0000 Subject: [PATCH] Some fixes for 1.0 beta git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@8 f0f2a975-2e09-46c8-9428-3b39399b9f3c --- source/distro/changelog.txt | 6 + .../da/comp/w2lcommon/filter/EPSCleaner.java | 87 ++++++++++++ .../filter/GraphicConverterImpl1.java | 58 ++------ .../filter/GraphicConverterImpl2.java | 24 ++-- .../writer2latex/api/ConverterFactory.java | 4 +- .../writer2latex/bibtex/BibTeXDocument.java | 4 +- .../writer2latex/latex/DrawConverter.java | 10 +- .../writer2latex/xhtml/DrawConverter.java | 8 +- source/java/writer2latex/xhtml/L10n.java | 18 ++- .../W2LDialogs/DialogStrings_es_ES.properties | 111 +++++++++++++++ source/oxt/writer2latex/desc_es.txt | 1 + source/oxt/writer2latex/description.xml | 4 +- .../W2XDialogs/DialogStrings_es_ES.properties | 131 ++++++++++++++++++ source/oxt/writer2xhtml/desc_es.txt | 1 + source/oxt/writer2xhtml/description.xml | 2 + 15 files changed, 391 insertions(+), 78 deletions(-) create mode 100644 source/java/org/openoffice/da/comp/w2lcommon/filter/EPSCleaner.java create mode 100644 source/oxt/writer2latex/W2LDialogs/DialogStrings_es_ES.properties create mode 100644 source/oxt/writer2latex/desc_es.txt create mode 100644 source/oxt/writer2xhtml/W2XDialogs/DialogStrings_es_ES.properties create mode 100644 source/oxt/writer2xhtml/desc_es.txt diff --git a/source/distro/changelog.txt b/source/distro/changelog.txt index 949a7dd..ae0968d 100644 --- a/source/distro/changelog.txt +++ b/source/distro/changelog.txt @@ -2,6 +2,12 @@ Changelog for Writer2LaTeX version 0.5 -> 1.0 ---------- version 1.0 beta ---------- +[w2l] Bugfix: Added missing hyperlink targets for frames and graphics + +[w2x] Bugfix: Fixed null pointer exception for text frames without height attribute + +[w2l] Added spanish translation from Emilio José Juárez Pérez + [w2l] Added support for bitmap graphics with backend=dvips [all] No longer create source distribution (SourceForge provides tarballs generated diff --git a/source/java/org/openoffice/da/comp/w2lcommon/filter/EPSCleaner.java b/source/java/org/openoffice/da/comp/w2lcommon/filter/EPSCleaner.java new file mode 100644 index 0000000..745a7f5 --- /dev/null +++ b/source/java/org/openoffice/da/comp/w2lcommon/filter/EPSCleaner.java @@ -0,0 +1,87 @@ +/************************************************************************ + * + * EPSCleaner.java + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * Copyright: 2002-2009 by Henrik Just + * + * All Rights Reserved. + * + * Version 1.0 (2009-03-09) + */ + +package org.openoffice.da.comp.w2lcommon.filter; + +/** This class removes redundant binary information from EPS files created by OOo. + * See the issue http://qa.openoffice.org/issues/show_bug.cgi?id=25256 + * According to this message http://markmail.org/message/dc6rprmtktxuq35v + * on dev@openoffice.org the binary data is an EPSI preview in TIFF format + * TODO: Is it possible to avoid this export? + */ +public class EPSCleaner { + + // Signatures for start and end in eps + private byte[] psStart; + private byte[] psEnd; + + public EPSCleaner() { + try { + psStart = "%!PS-Adobe".getBytes("US-ASCII"); + psEnd = "%%EOF".getBytes("US-ASCII"); + } + catch (java.io.UnsupportedEncodingException ex) { + // US-ASCII *is* supported :-) + } + + } + + // + public byte[] cleanEps(byte[] blob) { + int n = blob.length; + + int nStart = 0; + for (int i=0; i=blob.length) { return false; } + for (int i=0; i=blob.length) { return false; } - for (int i=0; i