AminetAminet
Search:
84799 packages online
About
Recent
Browse
Search
Upload
Setup
Services

dev/gg/cpp2html-1.1.lha

Mirror:Random
Showing: m68k-amigaos iconppc-amigaos iconppc-morphos iconi386-aros iconi386-amithlon iconppc-warpup iconppc-powerup icongeneric icon
No screenshot available
Short:Cpp2html v1.1 - C/C++ source code to HTML converter
Author: louise at louise.amiga.hu
Uploader:
Type:dev/gg
Architecture:m68k-amigaos
Date:2001-10-21
Download:dev/gg/cpp2html-1.1.lha - View contents
Readme:dev/gg/cpp2html-1.1.readme
Downloads:1024

Ported by LouiSe

more info and other AMIGA ports at:
http://louise.amiga.hu

-----------------------------------------

GNU cpp2html 1.1

by Lorenzo Bettini

This is a simple program that, given a source C/C++ file, produces an html
source with syntax highlighting.

cpp2html 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).


  This program is based on java2html (whose main site is
  http://www.gnu.org/software/java2html/java2html.html, but locally should
  be here); as I received many requests for a similar program for C++ I
  decided to make a syntax highlighter for C++ as well. This very page is
  also based on the one of Java2html.

Cpp2html is a GNU program, so you can download it also fro GNU's ftp site:
ftp://ftp.gnu.org/gnu/cpp2html/

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).

Cpp2html main home page is at GNU site:
http://www.gnu.org/software/cpp2html/cpp2html.html

you can also get the pacthes (see below for patching from a previous
version).

Changes in this release

   * --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>).
   * fixed the bug of /* comment in another environment (notified by Michael
     Gasche <mgasche@datacomm.ch>)

see also NEWS file and ChangeLog for the complete list of changes between
versions.

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/cpp2html
   * conf files           -> /prefix/share/cpp2html

Default value for prefix is /usr/local but you may change it with --prefix
option to configure (see above).


What you need to build cpp2html

Actually you need nothing more than a Unix C/C++ compiler

cpp2html has been developed under Linux, using gcc (C++), and bison (yacc)
and flex (lex), and ported under Win32 with Cygnus C/C++ compiler, available
at http://www.cygnus.com/ (a .DLL is also distributed togheter with the
.exe: you may simply copy it in the same place of the .exe). I used the
excellent GNU Autoconf and Automake. I also used Autotools
(ftp://ftp.ugcs.caltech.edu/pub/elef/autotools) which creates a starting
source tree (according to GNU standards) with autoconf, automake starting
files. Finally I used GNU gengetopt (http://www.gnu.org/software/gengetopt),
for command line parsing.

Actually, unless you want to develop cpp2html, you don't need all these
tools to build cpp2html because I provide generated sources; you don't need
neither bison (yacc) nor flex (lex), for the same reason. Actually programs
that use lex generated files need to link with library libfl (or libl for
lex); anyway configuration phase can discover if this library is missing and
in that case it sets the program to link with a source file I provide. This
hack works for flex: I don't know about lex generated scanners. But, again,
this is a problem only if you develop cpp2html and you use lex.

Patching from a previous version

If you downloaded a pacth, say cpp2html-1.3-1.3.1-patch.gz (i.e. the pacth
to go from version 1.3 to version 1.3.1), cd to the directory with sources
from the previous version (cpp2html-1.3) and type:

gunzip -cd ../cpp2html-1.3-1.3.1.patch.gz | patch -p1

and restart the compilation process (if you had already run configure a
simple make will do).

Usage

cpp2html only does a lexical analisys of the source code, so the C++ program
is assumed to be correct !

here's how to run it:

cpp2html --input <file (a C++ prog)> --output <file (an html)>

If you do not specify the name of the output file, the name will be the one
of the source file with a .html appended.
if you want a real html document, specify --doc option at the end. Otherwise
you just get some text to copy and paste in you own html pages. If you
choose -doc option the page will have a white background and your source
file name as title. --tab n option apply a substitution of tab characters
with n spaces. You also may want to specify the title of the page with
--title "my title" option (this implies -doc). Now you can also generate an
html with CSS format, by using --css "url of .css" (try some .css files
included in the package). The order of the options is not relevant. You may
also want to customize the produced document: you can use --header and
--footer options that allow you to specify files to be included,
respectively, at the beginning and at the end of the document.

Here are some links to some of the sources of cpp2html colored with cpp2html
itself:

   * main.cc.html
   * generators.cc.html
   * tags.cc.html
   * messages.cc.html

These files have been generated with the following commands:

cpp2html --doc main.cc
cpp2html --doc generators.cc
cpp2html --doc tags.cc
cpp2html --doc messages.cc

Obviosly it works with C files as well:

   * cmdline.c.html

Created with the command:

cpp2html -i cmdline.c -o cmdline.c.html --css="cpp2html.css"
            --header="./header.html" --footer="./footer.html"

And obviously it works with header files as well (which we colored in black
and white :-)

   * main.h.html
   * decorators.h.html
   * generators.h.html
   * list.h.html
   * tags.h.html
   * cmdline.h.html

created with the command:

cpp2html *.h --css="mono.css"

And here's the output of `cpp2html -help`

Usage: cpp2html [OPTION]... [INPUT-FILE]...
       cpp2html < INPUT-FILE > OUTPUT-FILE [OPTION]...

given a source C/C++ file, produces an html source with syntax highlighting.

  -v, --verbose           verbose mode on
  -d, --doc               creates html with title, header...
  -c, --css=URL           use a css for formatting (implies --doc)
  -T, --title=TITLE       give title to the html (implies --doc)
  -i, --input=FILE        input file (default standard input)
  -o, --output=FILE       output file (default standard output)
  -t, --tab=TABLEN        specify tab length (default 8)
  -V, --version           print version

As it handles standard output and input you may also run it like

cat MyFile.cpp | cpp2html | lpr

You may want to specify your options for syntax highlighting in the file
tags.j2h. If this file is not present in the current directory, some default
colors will be used. Here's the tags.j2h file that comes with this
distribution:

keyword blue b ;
type green ;
string red ;
comment brown i ;
number purple ;

as you might see the syntax of this file is quite straightforward:

   * b = bold
   * i = italics
   * u = underline

You may also specify more than on of these options separated by commas
e.g.
keyword blue u, b ;

you may see all possible colors in the file colors.html

if something goes wrong with your options try to run cpp2html with --verbose
option enabled.

Credits

These people helped me with java2html, and I used such features in cpp2html
as well, so:

   * Marcus G. Daniels <marcusd@gnu.org> who gave me some good advices about
     GNU standards,
   * Osvaldo Pinali Doederlein <osvaldo@visionnaire.com.br> for tab option
     idea,
   * Richard Freedman <rich_freedman@chiinc.com> for feed back and bugs
     signalations
   * John Constantine <John.Constantine@mail.cc.trincoll.edu> for some great
     suggestions I'll surely apply.
   * Raymond Lambe <rlambe@morgan.ucs.mun.ca>, for quotation bug signalation
   * Robert J. Clark <clark@klgroup.com> for adding -input, -output, -title
     options
   * Hans-Peter Bischof <hpb@cs.rit.edu> for suggestions (to apply).
   * Luc Maisonobe <Luc.Maisonobe@cnes.fr> for the patch for const char * in
     order to make it work under gcc 2.95
   * Jari Korva <jari.korva@iki.fi> for the bug of \" inside a string and &
     treatme nt, and especially for adding CSS options and handling
   * Kaloian Doganov <kaloian@stones.com> for .css suggestion and for
     providing some nice .css files
   * Ziv Caspi <zivc@peach-networks.com> found the bug of \\ in chars
   * Chris Mason <cjmaso@essex.ac.uk> found the darkgreen bug, and that
     --tab was not documented
   * Michael Gasche <mgasche@datacomm.ch> found the bug of /* comment inside
     another environment
   * Xavier Outhier <xouthier@yahoo.fr> added --header and --footer options
   * Tom Hull <thull@kscable.com> added hexadecimal and floating point
     handling

See also THANKS  :-)

Feedback

Tell me if you like this software :-)

Actually I want to extend it, so if you have some ideas...
The most import one will be to make cpp2html more customizable :-)

Please send all bug reports by electronic mail to:
bug-cpp2html@gnu.org

Mailing Lists

The following mailing lists are available:

   * help-cpp2html@gnu.org, for generic discussions about the program and
     for asking for help about it (open mailing list),
     http://mail.gnu.org/mailman/listinfo/help-cpp2html
   * info-cpp2html@gnu.org, for receiving information about new releases and
     features (read-only mailing list),
     http://mail.gnu.org/mailman/listinfo/info-cpp2html

if you want to subscribe to a mailing list just go to the URL and follow the
instructions, or send me an e-mail and I'll subscribe you.

My home page is
http://w3.newnet.it/bettini  or
http://infostud.dsi.unifi.it/~bettini (very fast if you're in University)

cpp2html is free software. See the file COPYING for copying conditions.
Anyway I won't get offended if you send me a postcard :-)

  ------------------------------------------------------------------------

Return to GNU's home page.

Please send FSF & GNU inquiries & questions to gnu@gnu.org. There are also
other ways to contact the FSF.

Please send comments on these web pages to webmasters@www.gnu.org, send
other questions to gnu@gnu.org.

Copyright (C) 1999 Free Software Foundation, Inc., 59 Temple Place - Suite
330, Boston, MA 02111, USA

Verbatim copying and distribution of this entire article is permitted in any
medium, provided this notice is preserved.

 Updated: 27 Mar 1999 jonas
  ------------------------------------------------------------------------


Contents of dev/gg/cpp2html-1.1.lha
 PERMSSN    UID  GID    PACKED    SIZE  RATIO     CRC       STAMP          NAME
---------- ----------- ------- ------- ------ ---------- ------------ -------------
[generic]                 4841   11380  42.5% -lh5- 9099 Oct 18  2001 cpp2html-1.1.readme
[generic]                   93     131  71.0% -lh5- a04b Oct 18  2001 cpp2html-1.1/acconfig.h
[generic]                 1157    2492  46.4% -lh5- 1f36 Oct 18  2001 cpp2html-1.1/acinclude.m4
[generic]                 3143    7309  43.0% -lh5- 3805 Oct 18  2001 cpp2html-1.1/aclocal.m4
[generic]                  211     329  64.1% -lh5- 50ec Oct 18  2001 cpp2html-1.1/AUTHORS
[generic]                  770    1608  47.9% -lh5- 57d9 Oct 18  2001 cpp2html-1.1/ChangeLog
[generic]                  724    2011  36.0% -lh5- 3c5b Oct 18  2001 cpp2html-1.1/config.cache
[generic]                  375     846  44.3% -lh5- 7966 Oct 18  2001 cpp2html-1.1/config.h
[generic]                  337     738  45.7% -lh5- 3f14 Oct 18  2001 cpp2html-1.1/config.h.in
[generic]                 1514    4869  31.1% -lh5- bbc2 Oct 18  2001 cpp2html-1.1/config.log
[generic]                 3086    9716  31.8% -lh5- dbca Oct 18  2001 cpp2html-1.1/config.status
[generic]                18384   76667  24.0% -lh5- 2d7f Oct 18  2001 cpp2html-1.1/configure
[generic]                 1630    3513  46.4% -lh5- 2f5c Oct 18  2001 cpp2html-1.1/configure.in
[generic]                 6993   17982  38.9% -lh5- dc3e Oct 18  2001 cpp2html-1.1/COPYING
[generic]                  525    1224  42.9% -lh5- aae8 Oct 18  2001 cpp2html-1.1/doc/colors.html
[generic]                 6034   15946  37.8% -lh5- 6941 Oct 18  2001 cpp2html-1.1/doc/cpp2html.html
[generic]                 6042   15988  37.8% -lh5- ad3e Oct 18  2001 cpp2html-1.1/doc/cpp2html.html.in
[generic]                 2110    6085  34.7% -lh5- cba6 Oct 18  2001 cpp2html-1.1/doc/Makefile
[generic]                  378     581  65.1% -lh5- 7e85 Oct 18  2001 cpp2html-1.1/doc/Makefile.am
[generic]                 2051    5973  34.3% -lh5- 3465 Oct 18  2001 cpp2html-1.1/doc/Makefile.in
[generic]                 3337    8094  41.2% -lh5- 6282 Oct 18  2001 cpp2html-1.1/INSTALL
[generic]                 2233    5598  39.9% -lh5- a21f Oct 18  2001 cpp2html-1.1/install-sh
[generic]                 3660    8329  43.9% -lh5- 62a5 Oct 18  2001 cpp2html-1.1/mails.txt
[generic]                 3784   12654  29.9% -lh5- 1e6f Oct 18  2001 cpp2html-1.1/Makefile
[generic]                  431     636  67.8% -lh5- fa6f Oct 18  2001 cpp2html-1.1/Makefile.am
[generic]                 2876    8175  35.2% -lh5- edbc Oct 18  2001 cpp2html-1.1/Makefile.in
[generic]                 2135    6283  34.0% -lh5- b90d Oct 18  2001 cpp2html-1.1/missing
[generic]                  380     722  52.6% -lh5- c7b6 Oct 18  2001 cpp2html-1.1/mkinstalldirs
[generic]                  641    1275  50.3% -lh5- cf09 Oct 18  2001 cpp2html-1.1/NEWS
[generic]                 4704   11066  42.5% -lh5- b7d2 Oct 18  2001 cpp2html-1.1/README
[generic]                  464     779  59.6% -lh5- b27e Oct 18  2001 cpp2html-1.1/reconf
[generic]                 1956    7995  24.5% -lh5- 4169 Oct 18  2001 cpp2html-1.1/src/cmdline.c
[generic]                 2338   14713  15.9% -lh5- 19e6 Oct 18  2001 cpp2html-1.1/src/cmdline.c.html
[generic]                  783    2027  38.6% -lh5- a554 Oct 18  2001 cpp2html-1.1/src/cmdline.ggo
[generic]                  471    1422  33.1% -lh5- 4d0c Oct 18  2001 cpp2html-1.1/src/cmdline.h
[generic]                  867    3549  24.4% -lh5- 803f Oct 18  2001 cpp2html-1.1/src/cmdline.h.html
[generic]                 4054    9641  42.0% -lh5- 730f Oct 18  2001 cpp2html-1.1/src/cmdline.o
[generic]                  333     833  40.0% -lh5- ffe4 Oct 18  2001 cpp2html-1.1/src/colors.h
[generic]                  137     209  65.6% -lh5- 8438 Oct 18  2001 cpp2html-1.1/src/copyright.h
[generic]                  261     398  65.6% -lh5- aa0b Oct 18  2001 cpp2html-1.1/src/copyright.text
[generic]               208986  557464  37.5% -lh5- 0263 Oct 18  2001 cpp2html-1.1/src/cpp2html
[generic]                  164     284  57.7% -lh5- b55f Oct 18  2001 cpp2html-1.1/src/cpp2html.css
[generic]                  894    2228  40.1% -lh5- cffb Oct 18  2001 cpp2html-1.1/src/decorators.h
[generic]                 1305    4724  27.6% -lh5- eacd Oct 18  2001 cpp2html-1.1/src/decorators.h.html
[generic]                  291     609  47.8% -lh5- 16fb Oct 18  2001 cpp2html-1.1/src/footer.html
[generic]                 1000    2631  38.0% -lh5- 1242 Oct 18  2001 cpp2html-1.1/src/generators.cc
[generic]                 1369    4372  31.3% -lh5- d10d Oct 18  2001 cpp2html-1.1/src/generators.cc.html
[generic]                  147     383  38.4% -lh5- 8289 Oct 18  2001 cpp2html-1.1/src/generators.h
[generic]                  482    1269  38.0% -lh5- 3e75 Oct 18  2001 cpp2html-1.1/src/generators.h.html
[generic]                10519   29107  36.1% -lh5- 02f3 Oct 18  2001 cpp2html-1.1/src/generators.o
[generic]                 7038   20876  33.7% -lh5- edb0 Oct 18  2001 cpp2html-1.1/src/getopt.c
[generic]                 1807    4412  41.0% -lh5- 9fdc Oct 18  2001 cpp2html-1.1/src/getopt.h
[generic]                 4626    9827  47.1% -lh5- 2f5e Oct 18  2001 cpp2html-1.1/src/getopt.o
[generic]                 1678    4142  40.5% -lh5- 6fb6 Oct 18  2001 cpp2html-1.1/src/getopt1.c
[generic]                 1574    3608  43.6% -lh5- 9e5b Oct 18  2001 cpp2html-1.1/src/getopt1.o
[generic]                  310     546  56.8% -lh5- c3e6 Oct 18  2001 cpp2html-1.1/src/header.html
[generic]                  133     203  65.5% -lh5- 5823 Oct 18  2001 cpp2html-1.1/src/helptext.h
[generic]                  109     159  68.6% -lh5- a500 Oct 18  2001 cpp2html-1.1/src/keys.h
[generic]                 1921    5672  33.9% -lh5- 47b0 Oct 18  2001 cpp2html-1.1/src/list.h
[generic]                 2453   10555  23.2% -lh5- 69db Oct 18  2001 cpp2html-1.1/src/list.h.html
[generic]                 3372    9991  33.8% -lh5- 89d1 Oct 18  2001 cpp2html-1.1/src/main.cc
[generic]                 4168   20621  20.2% -lh5- 2718 Oct 18  2001 cpp2html-1.1/src/main.cc.html
[generic]                  404    1247  32.4% -lh5- cc0a Oct 18  2001 cpp2html-1.1/src/main.h
[generic]                  810    4119  19.7% -lh5- 929e Oct 18  2001 cpp2html-1.1/src/main.h.html
[generic]                13330   33861  39.4% -lh5- 61b7 Oct 18  2001 cpp2html-1.1/src/main.o
[generic]                 4036   13917  29.0% -lh5- 5f45 Oct 18  2001 cpp2html-1.1/src/Makefile
[generic]                 1120    3177  35.3% -lh5- 7e9d Oct 18  2001 cpp2html-1.1/src/Makefile.am
[generic]                 3985   13859  28.8% -lh5- fbee Oct 18  2001 cpp2html-1.1/src/Makefile.in
[generic]                  605    1277  47.4% -lh5- fb5e Oct 18  2001 cpp2html-1.1/src/messages.cc
[generic]                  959    2277  42.1% -lh5- de10 Oct 18  2001 cpp2html-1.1/src/messages.cc.html
[generic]                  301     983  30.6% -lh5- f42e Oct 18  2001 cpp2html-1.1/src/messages.h
[generic]                 2455    6067  40.5% -lh5- de99 Oct 18  2001 cpp2html-1.1/src/messages.o
[generic]                  155     315  49.2% -lh5- fd20 Oct 18  2001 cpp2html-1.1/src/mono-alt.css
[generic]                  157     299  52.5% -lh5- 9032 Oct 18  2001 cpp2html-1.1/src/mono.css
[generic]                  374    1291  29.0% -lh5- 7286 Oct 18  2001 cpp2html-1.1/src/options_defs.sed
[generic]                 8141   27292  29.8% -lh5- 340b Oct 18  2001 cpp2html-1.1/src/optparser.cc
[generic]                  182     257  70.8% -lh5- 8680 Oct 18  2001 cpp2html-1.1/src/optparser.h
[generic]                12251   29784  41.1% -lh5- ee9f Oct 18  2001 cpp2html-1.1/src/optparser.o
[generic]                   10      10 100.0% -lh0- f5e3 Oct 18  2001 cpp2html-1.1/src/optparser.stamp
[generic]                 1373    3300  41.6% -lh5- c1fc Oct 18  2001 cpp2html-1.1/src/optparser.yy
[generic]                12596   42560  29.6% -lh5- 4763 Oct 18  2001 cpp2html-1.1/src/optscanner.cc
[generic]                  817    1554  52.6% -lh5- c634 Oct 18  2001 cpp2html-1.1/src/optscanner.ll
[generic]                14059   41917  33.5% -lh5- 9edc Oct 18  2001 cpp2html-1.1/src/optscanner.o
[generic]                   10      10 100.0% -lh0- f5e3 Oct 18  2001 cpp2html-1.1/src/optscanner.stamp
[generic]                16496   58052  28.4% -lh5- 8dff Oct 18  2001 cpp2html-1.1/src/scanner.cc
[generic]                 1632    4398  37.1% -lh5- 1ca4 Oct 18  2001 cpp2html-1.1/src/scanner.ll
[generic]                16623   48441  34.3% -lh5- b4b9 Oct 18  2001 cpp2html-1.1/src/scanner.o
[generic]                  774    1650  46.9% -lh5- 3a46 Oct 18  2001 cpp2html-1.1/src/tags.cc
[generic]                 1127    2804  40.2% -lh5- eb04 Oct 18  2001 cpp2html-1.1/src/tags.cc.html
[generic]                  806    2435  33.1% -lh5- 468d Oct 18  2001 cpp2html-1.1/src/tags.h
[generic]                 1281    6417  20.0% -lh5- 07ae Oct 18  2001 cpp2html-1.1/src/tags.h.html
[generic]                   64      77  83.1% -lh5- 03e0 Oct 18  2001 cpp2html-1.1/src/tags.j2h
[generic]                 6478   16564  39.1% -lh5- 9513 Oct 18  2001 cpp2html-1.1/src/tags.o
[generic]                  884    2308  38.3% -lh5- 0d58 Oct 18  2001 cpp2html-1.1/src/textgen.h
[generic]                   65      85  76.5% -lh5- 5a4c Oct 18  2001 cpp2html-1.1/src/tokens.h
[generic]                   88     115  76.5% -lh5- fd4a Oct 18  2001 cpp2html-1.1/src/version.h
[generic]                 1580    3274  48.3% -lh5- 7a6f Oct 18  2001 cpp2html-1.1/src/ylwrap
[generic]                  247     401  61.6% -lh5- d842 Oct 18  2001 cpp2html-1.1/src/yywrap.c
[generic]                   10      10 100.0% -lh0- f5e3 Oct 18  2001 cpp2html-1.1/stamp-h
[generic]                   10      10 100.0% -lh0- f5e3 Oct 18  2001 cpp2html-1.1/stamp-h.in
[generic]                  587     972  60.4% -lh5- d47b Oct 18  2001 cpp2html-1.1/THANKS
[generic]                 1539    3722  41.3% -lh5- 550a Oct 18  2001 cpp2html-1.1/txtc.sh
[generic]                 1544    3728  41.4% -lh5- 481b Oct 18  2001 cpp2html-1.1/txtc.sh.in
[generic]                  333     550  60.5% -lh5- 98a1 Oct 18  2001 cpp2html-1.1/WARNINGS
---------- ----------- ------- ------- ------ ---------- ------------ -------------
 Total       104 files  480887 1368855  35.1%            Oct 20  2001
Page generated in 0.02 seconds
Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>