1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
Copyright (C) 1999, 2000 Florian Schintke
02MAY2000 perl2html 0.9.2 released
* Bug in documentation of -h and -b option in man-page (swapped)...fixed.
Thanks to Kai Engelhardt <kaie@cse.unsw.edu.au> for his hint.
15APR2000 perl2html 0.9.1 released
* Added personalized Copyright informations. Thanks to Josip Rodin for
his hint:
[...] licenses are worthless without actual copyright owners to
give them :) Currently, from a legal standpoint, the software
doesn't have a proper license for distribution.
23MAR2000 perl2html 0.9 released
* can run configure, make, and make install
in an other directory than the source directory
* updated documentation
* switch -V outputs to stdout now and no longer to stderr
* changed all HTML tags to lower case, because XHTML requires this.
We don't support XHTML at the moment, but it is a tiny step in its
direction.
* added some checkings in configure (proposed by autoscan)
* some minor code changes
* incorrect highlighting of lines with 'use' and '::' and '$'...fixed.
Thanks to David Smith <davidhsmith@home.com> for reporting this bug.
20JAN2000 perl2html 0.8 ('on-my-birthday' edition) released
* added support for 'File Hierarchy Standard 2.0'
use with
./configure --enable-fhs
to get help call:
./configure --help
* now 'make install' copies documentation that is not in
manpage format, too.
07DEC99 perl2html 0.7.2 released
* updated documentation (configuration of default
parameters if called as cgi script to convert files on the fly)
* bug: -n option switched -c option too...fixed.
06DEC99 perl2html 0.7.1 released
* uncorrect highlighting after empty lines in comments if linelabeling
is enabled...fixed.
Thanks to Mathieu Coquerelle <coquerelle@8x8.com> for reporting this bug.
06DEC99 perl2html 0.7 released
* created homepage for this program:
http://user.cs.tu-berlin.de/~schintke/x2html/index.html
* Meta tags <META name="generator" content="...">
and <META name="date" content="..."> will be inserted.
the date is the last modification time of the source file
in iso8601 date format.
Thanks to Martin Kammerhofer <mkamm@gmx.net> for his patch.
* portability bug in printf usage: printf("%s", NULL)...workaround inserted
Seen on Solaris 4.6 with gcc.
28AUG99 perl2html 0.6.3 released
* bug while parsing \\ in strings...fixed
05AUG99 perl2html 0.6.2 released
* bug in creating HTML labels for function names
behaviour before bugfix:
the name of a function is found when a character
other than [A-Za-z0-9] occurs
behaviour after bugfix:
the name of a function is found when a character
other than [A-Za-z0-9_] occurs
Thanks to Michael Leslie <mles@kastenchase.com> for his tiny patch.
26MAY99 perl2html 0.6.1 released
* # was interpreted as begin of comment in too many cases...fixed
Now "begin of line" or whitespace must precede a comment.
s/#.*$//; #test comment highlighting
22MAY99 perl2html 0.6 released
* skipping 0.1 through 0.5 version numbers to get version
like c2html has with corresponding functionality
* initial release
|