Localization improvements and removing some unused code

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@143 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2012-03-19 21:01:15 +00:00
parent de74e5ff6b
commit e3a808f820
39 changed files with 435 additions and 1442 deletions

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2001-2010 by Henrik Just
* Copyright: 2001-2012 by Henrik Just
*
* All Rights Reserved.
*
* version 1.2 (2010-03-29)
* version 1.4 (2012-03-19)
*
*/
@ -35,12 +35,12 @@ import org.w3c.dom.Document;
import org.w3c.dom.DocumentType;
import org.w3c.dom.Element;
import writer2latex.xmerge.NewDOMDocument;
import writer2latex.xmerge.DOMDocument;
/** This class creates the required META-INF/container.xml file for an EPUB package
* (see http://www.idpf.org/ocf/ocf1.0/download/ocf10.htm).
*/
public class ContainerWriter extends NewDOMDocument {
public class ContainerWriter extends DOMDocument {
public ContainerWriter() {
super("container", "xml");

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* version 1.2 (2012-02-22)
* version 1.4 (2012-03-19)
*
*/
@ -40,12 +40,12 @@ import org.w3c.dom.Element;
import writer2latex.api.ContentEntry;
import writer2latex.api.ConverterResult;
import writer2latex.util.Misc;
import writer2latex.xmerge.NewDOMDocument;
import writer2latex.xmerge.DOMDocument;
/** This class creates the required NXC file for an EPUB document
* (see http://www.idpf.org/2007/opf/OPF_2.0_final_spec.html#Section2.4).
*/
public class NCXWriter extends NewDOMDocument {
public class NCXWriter extends DOMDocument {
public NCXWriter(ConverterResult cr, String sUUID) {
super("book", "ncx");

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* version 1.2 (2012-02-26)
* version 1.4 (2012-03-19)
*
*/
@ -44,11 +44,11 @@ import writer2latex.api.ContentEntry;
import writer2latex.api.ConverterResult;
import writer2latex.api.OutputFile;
import writer2latex.util.Misc;
import writer2latex.xmerge.NewDOMDocument;
import writer2latex.xmerge.DOMDocument;
/** This class writes an OPF-file for an EPUB document (see http://www.idpf.org/2007/opf/OPF_2.0_final_spec.html).
*/
public class OPFWriter extends NewDOMDocument {
public class OPFWriter extends DOMDocument {
private String sUID=null;
public OPFWriter(ConverterResult cr) {