View Single Post
Old 04-09-2012, 07:50 AM   #3
mmat1
Berti
mmat1 ought to be getting tired of karma fortunes by now.mmat1 ought to be getting tired of karma fortunes by now.mmat1 ought to be getting tired of karma fortunes by now.mmat1 ought to be getting tired of karma fortunes by now.mmat1 ought to be getting tired of karma fortunes by now.mmat1 ought to be getting tired of karma fortunes by now.mmat1 ought to be getting tired of karma fortunes by now.mmat1 ought to be getting tired of karma fortunes by now.mmat1 ought to be getting tired of karma fortunes by now.mmat1 ought to be getting tired of karma fortunes by now.mmat1 ought to be getting tired of karma fortunes by now.
 
mmat1's Avatar
 
Posts: 1,197
Karma: 4985964
Join Date: Jan 2012
Location: Zischebattem
Device: Acer Lumiread
Quote:
Originally Posted by elibrarian View Post
http://www.pagina-online.de/software/epub-checker/
- it's an offline java GUI for the "official" epub-check tools, and partly checks for some other things than Sigil.
Is this actually something more than a gui for epubcheck ? They don't write anything about addons to epubcheck, a spellcheck in css would be nice...

To run epubcheck, i made a simple alternative which somebody maybe find reasonable.
Spoiler:
@echo off
set Pfad="C:\<Pfad>"

echo . >Check.log
FOR /R %Pfad% %%i IN (*.epub) DO (
echo %%i>> Check.log
echo %%i
java -jar epubcheck-3.0b4.jar "%%i" 2>> Check.log
echo . >> Check.log
)

call notepad Check.log

Its just a *.cmd which checks all the books in the Path given in the second line. It should be dropped in the directory, where epubcheck is installed.
mmat1 is offline   Reply With Quote