2009-02-20 09:37:06 +00:00
|
|
|
/************************************************************************
|
|
|
|
*
|
|
|
|
* Converter.java
|
|
|
|
*
|
2015-06-22 10:59:48 +00:00
|
|
|
* Copyright: 2001-2015 by Henrik Just
|
2009-02-20 09:37:06 +00:00
|
|
|
*
|
2018-03-06 20:06:05 +00:00
|
|
|
* This file is part of Writer2LaTeX.
|
|
|
|
*
|
|
|
|
* Writer2LaTeX is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Writer2LaTeX 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Writer2LaTeX. If not, see <http://www.gnu.org/licenses/>.
|
2009-02-20 09:37:06 +00:00
|
|
|
*
|
2015-06-22 10:59:48 +00:00
|
|
|
* Version 1.6 (2015-06-22)
|
2009-02-20 09:37:06 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
package writer2latex.bibtex;
|
|
|
|
|
|
|
|
import writer2latex.api.Config;
|
|
|
|
import writer2latex.base.ConverterBase;
|
|
|
|
import writer2latex.latex.LaTeXConfig;
|
|
|
|
import writer2latex.util.Misc;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
2015-06-22 10:59:48 +00:00
|
|
|
/** This class exports bibliographic information from an OpenDocument text file to a BibTeX data file
|
2009-02-20 09:37:06 +00:00
|
|
|
*/
|
|
|
|
public final class Converter extends ConverterBase {
|
|
|
|
|
2015-06-22 10:59:48 +00:00
|
|
|
// Implement converter API
|
|
|
|
|
|
|
|
// TODO: Doesn't really use the configuration - should use some fake config
|
2009-02-20 09:37:06 +00:00
|
|
|
private LaTeXConfig config;
|
2015-06-22 10:59:48 +00:00
|
|
|
|
2009-02-20 09:37:06 +00:00
|
|
|
public Converter() {
|
|
|
|
super();
|
|
|
|
config = new LaTeXConfig();
|
|
|
|
}
|
2015-06-22 10:59:48 +00:00
|
|
|
|
2018-03-04 09:57:38 +00:00
|
|
|
public Config getConfig() {
|
2015-06-22 10:59:48 +00:00
|
|
|
return config;
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
|
2015-06-22 10:59:48 +00:00
|
|
|
// Extend converter base
|
|
|
|
|
|
|
|
/** Convert the document into BibTeX format.</p>
|
2009-02-20 09:37:06 +00:00
|
|
|
*
|
2015-06-22 10:59:48 +00:00
|
|
|
* @throws IOException If any I/O error occurs.
|
2009-02-20 09:37:06 +00:00
|
|
|
*/
|
2015-06-22 10:59:48 +00:00
|
|
|
@Override public void convertInner() throws IOException {
|
2009-02-20 09:37:06 +00:00
|
|
|
sTargetFileName = Misc.trimDocumentName(sTargetFileName,".bib");
|
|
|
|
|
2015-06-22 10:59:48 +00:00
|
|
|
BibTeXDocument bibDoc = new BibTeXDocument(sTargetFileName,true,ofr);
|
2009-02-20 09:37:06 +00:00
|
|
|
|
2010-03-29 11:07:24 +00:00
|
|
|
converterResult.addDocument(bibDoc);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|