GNU java2html 1.7
by Lorenzo Bettini
This is a simple program that, given a source java file, produces an html
source with syntax highlighting.
Java2html is free software. Please see the file COPYING for details. For
documentation, please read this file. As it is a GPL program, I provide
sources (~70k), but if you don't fell like compiling it, you can download
Win32 executable (~100k) (new).
Java2html is a GNU program, so you can download it also fro GNU's ftp site:
ftp://ftp.gnu.org/gnu/java2html/
or from here:
* Latest Version (sources, .tar.gz) - md5sum - signature of md5sum
* Latest Version (win32 executable, zipped) - md5sum - signature of
md5sum
* Cygnus DLL for win32 (needed for win32 executable, zipped)
You may also want to check the md5sum of the archives, which are also
digitally signed by me (Lorenzo Bettini) with GNU gpg
(http://www.gnupg.org). My GPG public key can be found at my home page (see
at the end of this doc).
Java2html main home page is at GNU site:
http://www.gnu.org/software/java2html/java2html.html
You can also get the pacthes from the GNU ftp site (see below for patching
from a previous version).
Changes in this release
* Fixed a bug in reading footer and header
* Fixed bug in number scanning (reported by Curtis Weyant
<dylan38@angelfire.com>)
* Added TODO list (thanks Xavier Outhier <xavier.outhier@anfdata.cz>)
Changes in release 1.6
* fixed the bug of /* comment in another environment (notified by Michael
Gasche <mgasche@datacomm.ch>)
* --header and --footer options added by Xavier Outhier
<xouthier@yahoo.fr>, that allow to specify files to be included at the
beginning and at the end of the generated document.
* GNU gengetopt is used for command line parsing.
* hexadecimal and floating point numbers are treated (Tom Hull
<thull@kscable.com>).
* Added TODO list (thanks Xavier Outhier <xavier.outhier@anfdata.cz>)
Changes in release 1.5
* fixed the bug of darkgreen option (which wasn't recognized) (thanx to
Chris Mason <cjmaso@essex.ac.uk>)
* now --tab option is documented (I had forgotten it) (thanx again Chris)
* --enable-warnings added to configure (to enable -Wall option for
develop.)
* docs are installed in (prefix)/share/doc/java2html (in previous version
the docs were not installed in the correct dir if no prefix was
specified).
Changes in release 1.4
* more adeherent to GNU Coding Standards.
* getopt_long used for command line options
* -input changed in -i or --input
* -output changed in -o or --output
* other options changed
* multiple input files accepted (e.g. java2html *.java)
* --version added
* tags.j2h is installed in $(prefix)/share/java2html: it is first checked
in the current dir, and otherwise in that dir.
* 'check' added to Makefile ('test' taken away)
* documentation is installed
see also NEWS file and ChangeLog for the complete list of changes between
versions, or old-changes.html, for previous changes.
Installation
See the file INSTALL for detailed building and installation instructions;
anyway if you're used to compiling Linux software that comes with sources
you may simply follow the usual procedure:
cd <source code main directory>
./configure
make
make install
Note: unless you specify a different install directory by --prefix option of
configure (e.g. ./configure --prefix=<your home>), you must be root to 'make
install'.
Files will be installed in the following directories:
* Executables -> /prefix/bin
* docs and samples -> /prefix/share/doc/java2html
* conf files -> /prefix/share/java2html
=1= |