Revision history for Perl extension CGI::Formalware.

1.09 29-Jun-2000
----------------
o	Tested under Apache 1.3.12 for Windows, with ActivePerl and with mod_perl.

o	The Table of Contents is now 'live', meaning you can click on a page's
	name to jump to that page.

o	Paragraphs can now have a text attribute. So, both of the following are
	accepted:
		<paragraph />
		<paragraph text = 'Some string' />

o	The number of columns in a radio group can be controlled. So, both of the
	following are accepted:
		<radioGroup
			name		= 'serverName'
			prompt		= 'Server name: '
			value		= 'Example|Simple|Test'
		/>
		<radioGroup
			name		= 'serverName'
			prompt		= 'Server name: '
			value		= 'Example|Simple|Test'
			columns		= '1' # Optional. Default: '1'. A string, not a digit
		/>

o	A file browse button is now available. Use it like this:
		<fileField
			name		= 'fileName'
			prompt		= 'Filename: '
			size		= '60'
			override	= '0'
		/>
	This change requires the use of start_multipart_form(), rather than
	start_form().

o	The initial page, which asks for the name of the XML file, now contains
	more explanatory text.

o	The output of local and remote scripts now have the '<' and '>' characters
	encoded as &lt; and &gt;. This applies particularly to the output of DOS
	directory listings.

o	The documentation has been expanded to spell out exactly which CGI
	functions are supported. These are:
		<fileField ...>
		<horizontalRule ...>
		<paragraph ...>
		<radioGroup ...>
		<textField ...>

o	General code clean-up: Hash items which were 'X' => Y, are now X => Y.

1.08 31-Jan-2000
----------------
o Change usage of radio_buttons to avoid a bug in CGI.pm V 2.56
o Fix bugs which occurred when scripts are numbered
o Change my email address to ron@savage.net.au & add the URI of the package

1.07 25-May-99
--------------
o Put Todo.txt text into POD
o Ensure POD survives buggy pod2man

1.06 19-Apr-99
--------------
o Patch Makefile.PL to support ActivePerl's ppm.

1.05  1-Apr-99
--------------
o Add details to Makefile.PL.
o Change die to croak, but we don't die anyway.

1.04 19-Mar-99
--------------
o Remove references to projectLib.pl from the docs.
o Clean up the docs.

1.03 12-Mar-99
--------------
o Add constructor options and documentation to match.
o Change die to croak.
o Add support for cascading style sheets.
o Add tables for main stuff and an optional Table of Contents for page TOCs.
o Change all references from page to form.

1.02 17-Feb-99
--------------
o Add 'use constant'.

1.01 10-Feb-99
--------------
o Change name from xml2HtmlGenerator.pl to xml2CgiForm.pl.
	It's shorter :-).
o Change start up screen's button to say 'Submit', not 'Next page'.
o Fix error message which referred to textField instead of radioGroup.
o Script headings must be unique per page, no longer unique overall.
o radioGroup and textField names must be unique per page.
	This is for macros (%..%).
o Expand macro handling to accept all field names on a form.
o Remove special handling of %version% whenever %tag% was found.

1.00 2-Feb-99
-------------
o First version.

