commit 90390ba508007f510336f699669225977a757ca3 Author: Google Code Exporter Date: Fri Mar 13 13:25:00 2015 -0400 Migrating wiki contents from Google Code diff --git a/InternalLinks.md b/InternalLinks.md new file mode 100644 index 0000000..bdcdf69 --- /dev/null +++ b/InternalLinks.md @@ -0,0 +1,8 @@ +# Introduction # + +How to implements internal "jumps" + + +# Details # + +Jotex supports odt's internal document jumps (Internal Links in epub). In a ODT file an internal link is a combination of bookmarks and local hyperlinks (Insert->Link). Local hyperlink is the jump starting point, the bookmark is the target point. \ No newline at end of file diff --git a/ProjectHome.md b/ProjectHome.md new file mode 100644 index 0000000..b512395 --- /dev/null +++ b/ProjectHome.md @@ -0,0 +1,108 @@ +A command line tool written in java useful to export odt documents into epub documents. + +For help, suggestions, bug or infos: luca.conteATgmail.com + +Project URL: + +Sources: http://code.google.com/p/jotex + +Binaries: http://goo.gl/MzLdKK + +**CHANGELOG** + +``` +------------------------------------------------------------------------------- + 0.4.1 - 23/May/2014 +------------------------------------------------------------------------------ + - Added support for users defined style classes + +----------------------------------------------------------------------------- + 0.4 - 30/Aug/2013 +------------------------------------------------------------------------------ +First release with improvements after a long development stop. In this release +has been implemented a CSS optimization that avoid the redundancy of css +classes definition... + - CSS Optimization + - Solved underline text bug (Issue 1) + +------------------------------------------------------------------------------ + 0.3.50 - 28/Aug/2013 +------------------------------------------------------------------------------ + - Minor bugfixing + - Code restyling for Maven porting + - Removed dependency with Xerces + +------------------------------------------------------------------------------ + 0.3.47 - 22/Feb/2013 +------------------------------------------------------------------------------ + - improve image frames handling (centering images) + +------------------------------------------------------------------------------ + 0.3.46 - 27/Jan/2012 +------------------------------------------------------------------------------ + - improve cover handling (following common best practice rules) + +------------------------------------------------------------------------------ + 0.3.43 - 25/Jan/2012 +------------------------------------------------------------------------------ + - possibility to expose bookmarks at the end of TOC (new command line param) + - added epub cover image support (new command line param) + +------------------------------------------------------------------------------ + 0.3.39 - 12/Oct/2011 +------------------------------------------------------------------------------ + - Tables are rendered with borders + - minor bugs fixing + +------------------------------------------------------------------------------ + 0.3.37 - 08/Aug/2011 +------------------------------------------------------------------------------ + - Multi CSS classes support (flat mode): epub documents' styles are more + closer to original odt's styles + - bugs fixing + +------------------------------------------------------------------------------ + 0.3.30 - 29/Jul/2011 +------------------------------------------------------------------------------ + - solved an image exporting bug + +------------------------------------------------------------------------------ + 0.3.29 - 29/Jul/2011 +------------------------------------------------------------------------------ + - java compliance level to 1.5 + - binary java jar optimization + +------------------------------------------------------------------------------ + 0.3.23 - 28/Jul/2011 +------------------------------------------------------------------------------ + - implemented font embedding + +------------------------------------------------------------------------------ + 0.3.21 - 27/Jul/2011 +------------------------------------------------------------------------------ + - added command line options support + * s for split contents files bigger than in KB + * d for debug mode + - solved a footnotes margins bug + +------------------------------------------------------------------------------ + 0.3.18 - Jul/2011 +------------------------------------------------------------------------------ + - Support for text-align right + - Support for empty paragraphs + - Support for margins + +------------------------------------------------------------------------------ + 0.3.17 - Jul/2011 +------------------------------------------------------------------------------ + - Improved Footnotes handling + - General refactoring + - Update LGPL source files' headers + - Added paragraphs margin-left/right support + +------------------------------------------------------------------------------ + 0.3.5 - Jul/2011 +------------------------------------------------------------------------------ + - Added metadata support + - Improved images support +``` \ No newline at end of file diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..9f45a2d --- /dev/null +++ b/TODO.md @@ -0,0 +1,6 @@ +# Planned improvements # + +In plan: + * improve lists coding + * improve tables coding + * support external css injection \ No newline at end of file diff --git a/Toc.md b/Toc.md new file mode 100644 index 0000000..b0513c2 --- /dev/null +++ b/Toc.md @@ -0,0 +1,8 @@ +# Introduction # + +TOC generation + + +# Details # + +Every ODT's Heading element goes to compose the epub's toc. Nesting headings are supported. \ No newline at end of file diff --git a/Usage.md b/Usage.md new file mode 100644 index 0000000..e7a50fb --- /dev/null +++ b/Usage.md @@ -0,0 +1,49 @@ +# Introduction # + + + + +# Details # + +Simply, + * download binary distribution +``` + jotex.jar +``` + * open a Terminal or a DOS prompt + * Go to download directory and type: +``` + java -jar jotex.jar .odt +``` +When the process will be terminated you'll find +``` + .epub +``` +> in the same original odt's directory. + +Options: +``` + +usage: java -jar jotex.jar [] .odt + -b Expose bookmarks (if presents) in + alphabetical order, at the end of the TOC + -c,--cover Full path to the epub cover (gif or jpg or + png). If not present no cover will be used + -d Enable debug mode + -e,--fem Fonts Encriptyon Method. Used if, for + licensing reasons, fonts need to be + encrypted. + -f,--fp Fonts Path. A path in which Jotex looks for + Fonts files that need to be embedded (in an + encrypted form [see "fem" option]) into the + epub. + Without this param NO FONT will be included + into the epub + -h,--help Print Jotex comman line help + -o,--output Output file. If not present, Jotex will + create an epub file in the same original + odt's directory with the same original + odt's file name + -s,--max-file-size Max single xhtml's file size in KB + +``` \ No newline at end of file