The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Revision history for Perl extension CGI::Formalware.

1.16  Sun Feb 21 12:54:37 2010
	- Remove text 'All rights reserved' (for Debian licensing).
	- Remove POD heads 'Required Modules' and 'Changes'.

1.15  Wed Feb 10 14:01:26 2010
	- MANIFEST.SKIP updated to exclude MYMETA.yml. Add MYMETA.yml.

1.14  Fri Nov 13 13:20:00 2009
	- Run dos2unix
	- Rename Changes.txt to CHANGES

1.13  Thu Oct 27 19:40:00 2005
	- Regenerate META.yml with Module::Build V 0.2611 to correct a faulty
		META.yml output by V 0.24 which falsely said 'provides: {}',
		which in turn stopped the PAUSE indexer from finding the module file,
		which in turn meant this module might be omitted from the master index:
		ftp://pause.perl.org/pub/PAUSE/modules/01modules.index.html

1.12  Mon Jul 19 14:10:00 2004
	- Change Makefile.PL to coexist with Module::Build
	- Delete ./test.pl
	- Rewrite t/test.t to use Test::More
	- Add t/pod.t to test all PODs

1.11  Sun Mar 23 11:29:00 2003
	- Move demos into examples/ directory
	- Change test.xml to use CSS /css/test.css rather than /test.css
	- No source code changes in this version
	- Patch to stop shipping blib/ directory in Unix distros, because the
		PAUSE indexer takes this directory to indicate a binary distro,
		which means it does not index the module, and this in turn means
		the module is not listed in the CPAN daily update list, etc.

1.10  Sun May 12 13:12:11 2002
	- Clean up licence and email stuff in all modules, scripts and other docs.
		Upgrading is not necessary

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.