Migrating wiki contents from Google Code
This commit is contained in:
commit
90390ba508
5 changed files with 179 additions and 0 deletions
8
InternalLinks.md
Normal file
8
InternalLinks.md
Normal file
|
@ -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.
|
108
ProjectHome.md
Normal file
108
ProjectHome.md
Normal file
|
@ -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 <SIZE> for split contents files bigger than <SIZE> 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
|
||||
```
|
6
TODO.md
Normal file
6
TODO.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
# Planned improvements #
|
||||
|
||||
In plan:
|
||||
* improve lists coding
|
||||
* improve tables coding
|
||||
* support external css injection
|
8
Toc.md
Normal file
8
Toc.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Introduction #
|
||||
|
||||
TOC generation
|
||||
|
||||
|
||||
# Details #
|
||||
|
||||
Every ODT's Heading element goes to compose the epub's toc. Nesting headings are supported.
|
49
Usage.md
Normal file
49
Usage.md
Normal file
|
@ -0,0 +1,49 @@
|
|||
# Introduction #
|
||||
|
||||
|
||||
|
||||
|
||||
# Details #
|
||||
|
||||
Simply,
|
||||
* download binary distribution
|
||||
```
|
||||
jotex<VERSION>.jar
|
||||
```
|
||||
* open a Terminal or a DOS prompt
|
||||
* Go to download directory and type:
|
||||
```
|
||||
java -jar jotex<VERSION>.jar <FILENAME>.odt
|
||||
```
|
||||
When the process will be terminated you'll find
|
||||
```
|
||||
<FILENAME>.epub
|
||||
```
|
||||
> in the same original odt's directory.
|
||||
|
||||
Options:
|
||||
```
|
||||
|
||||
usage: java -jar jotex<VERSION>.jar [<OPTIONS>] <FILE_NAME>.odt
|
||||
-b Expose bookmarks (if presents) in
|
||||
alphabetical order, at the end of the TOC
|
||||
-c,--cover <COVER_IMG_FILE> 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 <adobe|idpf> Fonts Encriptyon Method. Used if, for
|
||||
licensing reasons, fonts need to be
|
||||
encrypted.
|
||||
-f,--fp <FONTS_PATH> 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> 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 <SIZE> Max single xhtml's file size in KB
|
||||
|
||||
```
|
Loading…
Reference in a new issue