Name: Matthew Allum
Email: [EMAIL PROTECTED]
UserID: MALLUM
Planned Contributions;
Constants.pm ( name yet to be decided )
A module that imports a number constants into a script from a simple
rc like file. Works like;
use Something::Constants '/path/to/rcfile';
where rcfile looks something like
....
A_CONSTANT = 'a string'
ANOTHER_CONST = 10
# A comment
....
HTML::QPTE.pm
A _very_ simple easy to use templating system designed for systems
where only CGI is available ( no mod_perl ). Is useful as you can
quickly change a html page to a CGI script. looks like
....
#!/usr/bin/perl
use HTML::QPTE
<html>
<head>
<title><? print "some Perl code to be evaled" ?></title>
</head>
<body>
<? $a_var = "hello world" ?>
<h1><$ $a_var $></h1> <!-- a_var is printed -->
<! a comment not in final html !>
</body>
</html>
Works similar to that of Acme::Bleach .
Many thanks;
Matthew Allum