66 lines
1.9 KiB
Text
66 lines
1.9 KiB
Text
=pod
|
|
|
|
TUWF is a very small and lightweight web development framework for Perl. It has
|
|
evolved from being a few abstraction layers in two large websites to a separate
|
|
set of modules. While initially designed to be used for large and complex
|
|
websites, it is also perfectly suited for small single-file websites.
|
|
|
|
=head2 Main features
|
|
|
|
=over
|
|
|
|
=item * Very small, and no extra modules required,
|
|
|
|
=item * Easy URI-to-function mapping using regular expressions,
|
|
|
|
=item * Handy form validation functions,
|
|
|
|
=item * Easy XML/XHTML output generation functions,
|
|
|
|
=item * Response buffering and output compression,
|
|
|
|
=item * Easy access to GET/POST data and cookies,
|
|
|
|
=item * Support for CGI and FastCGI - optimized for FastCGI,
|
|
|
|
=item * Uses UTF-8 for all text,
|
|
|
|
=item * Convenient SQL execution functions and correct transaction handling,
|
|
|
|
=item * Promotes code re-use,
|
|
|
|
=item * Open source (duh!) and available under a liberal MIT license.
|
|
|
|
=back
|
|
|
|
Read the L<description|TUWF/DESCRIPTION> in the documentation for more
|
|
information and details.
|
|
|
|
|
|
=head2 Download
|
|
|
|
B<Latest packaged version:> 1.1 ([dllink TUWF-1.1.tar.gz download]
|
|
- L<CPAN mirror|http://search.cpan.org/dist/TUWF/>)
|
|
|
|
TUWF is also available on a git repository at L<https://g.blicky.net/tuwf.git/>.
|
|
|
|
|
|
=head2 Websites using TUWF
|
|
|
|
(Not a whole lot)
|
|
|
|
=over
|
|
|
|
=item * L<VNDB.org|https://vndb.org/> (the site that spawned TUWF - L<open source|https://g.blicky.net/vndb.git/>)
|
|
|
|
=item * L<Manned.org|https://manned.org/> (L<open source|https://g.blicky.net/manned.git/>)
|
|
|
|
=item * L<This website|https://dev.yorhel.nl/> (L<open source|https://g.blicky.net/yorhel-dev.git/tree/index.cgi>)
|
|
|
|
=item * L<Blicky.net Pastebin|https://p.blicky.net/> (L<open source|https://g.blicky.net/bpaste.git/tree/index.cgi>)
|
|
|
|
=item * The website embedded in the L<D&R Axum|http://www.d-r.nl/axum.html> mixing console.
|
|
|
|
=item * L<333networks|http://333networks.com/>
|
|
|
|
=back
|