summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2017-11-26 09:09:44 +0100
committerYorhel <git@yorhel.nl>2017-11-26 09:09:44 +0100
commit86534ca48e27ccfbffd4cdffd9fa10df0b53dfa2 (patch)
tree744784078ad4352f760a8348a55cd4c505959609
parent1d24ff9a2f245dc997cf7fc6c85dd4adc53f9b3b (diff)
Version 1.1v1.1
-rw-r--r--Build.PL6
-rw-r--r--COPYING2
-rw-r--r--ChangeLog7
-rw-r--r--lib/TUWF.pm2
-rw-r--r--lib/TUWF.pod6
-rw-r--r--lib/TUWF/DB.pm2
-rw-r--r--lib/TUWF/DB.pod2
-rw-r--r--lib/TUWF/Misc.pm2
-rw-r--r--lib/TUWF/Misc.pod2
-rw-r--r--lib/TUWF/Request.pm2
-rw-r--r--lib/TUWF/Request.pod2
-rw-r--r--lib/TUWF/Response.pm2
-rw-r--r--lib/TUWF/Response.pod2
-rw-r--r--lib/TUWF/XML.pm2
-rw-r--r--lib/TUWF/XML.pod2
15 files changed, 25 insertions, 18 deletions
diff --git a/Build.PL b/Build.PL
index 3637b78..f3769c6 100644
--- a/Build.PL
+++ b/Build.PL
@@ -4,8 +4,8 @@ use Module::Build;
Module::Build->new(
dist_name => 'TUWF',
- dist_version => '1.0',
- dist_author => 'Yoran Heling <yorhel@cpan.org>',
+ dist_version => '1.1',
+ dist_author => 'Yoran Heling <projects@yorhel.nl>',
dist_abstract => 'The Ultimate Website Framework',
license => 'mit',
requires => {
@@ -18,7 +18,7 @@ Module::Build->new(
},
meta_merge => {
resources => {
- repository => 'http://g.blicky.net/tuwf.git/'
+ repository => 'https://g.blicky.net/tuwf.git/'
},
},
create_makefile_pl => 'traditional',
diff --git a/COPYING b/COPYING
index eff61c8..4c6d9eb 100644
--- a/COPYING
+++ b/COPYING
@@ -1,4 +1,4 @@
-Copyright (c) 2008-2015 Yoran Heling
+Copyright (c) 2008-2017 Yoran Heling
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
diff --git a/ChangeLog b/ChangeLog
index 999709a..cfb7203 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+1.1 - 2017-11-26
+ - Disallow exclamation mark in email address validation
+ - Add reqProtocol() method
+ - Add reqFCGI() method
+ - Remove 'X-Powered-By' header
+ - Fix handling of space character in load_recursive()
+
1.0 - 2015-09-17
- !! Some backwards-imcompatible changes, marked * !!
- kv_validate() improvements:
diff --git a/lib/TUWF.pm b/lib/TUWF.pm
index 35e7cdf..baf80f0 100644
--- a/lib/TUWF.pm
+++ b/lib/TUWF.pm
@@ -7,7 +7,7 @@ use strict;
use warnings;
use Carp 'croak';
-our $VERSION = '1.0';
+our $VERSION = '1.1';
# Store the object in a global variable for some functions that don't get it
diff --git a/lib/TUWF.pod b/lib/TUWF.pod
index b2b2f9e..44d20b3 100644
--- a/lib/TUWF.pod
+++ b/lib/TUWF.pod
@@ -598,15 +598,15 @@ FastCGI:
L<TUWF::DB>, L<TUWF::Misc>, L<TUWF::Request>, L<TUWF::Response>, L<TUWF::XML>.
The homepage of TUWF can be found at
-L<http://dev.yorhel.nl/tuwf|http://dev.yorhel.nl/tuwf>.
+L<https://dev.yorhel.nl/tuwf|https://dev.yorhel.nl/tuwf>.
TUWF is available on a git repository at
-L<http://g.blicky.net/tuwf.git/|http://g.blicky.net/tuwf.git/>.
+L<https://g.blicky.net/tuwf.git/|https://g.blicky.net/tuwf.git/>.
=head1 COPYRIGHT
-Copyright (c) 2008-2015 Yoran Heling.
+Copyright (c) 2008-2017 Yoran Heling.
This module is part of the TUWF framework and is free software available under
the liberal MIT license. See the COPYING file in the TUWF distribution for the
diff --git a/lib/TUWF/DB.pm b/lib/TUWF/DB.pm
index 9c4e594..0463a2c 100644
--- a/lib/TUWF/DB.pm
+++ b/lib/TUWF/DB.pm
@@ -6,7 +6,7 @@ use warnings;
use Carp 'croak';
use Exporter 'import';
-our $VERSION = '1.0';
+our $VERSION = '1.1';
our @EXPORT = qw|
dbInit dbh dbCheck dbDisconnect dbCommit dbRollBack
dbExec dbRow dbAll dbPage
diff --git a/lib/TUWF/DB.pod b/lib/TUWF/DB.pod
index 6afe1e1..34157cc 100644
--- a/lib/TUWF/DB.pod
+++ b/lib/TUWF/DB.pod
@@ -243,7 +243,7 @@ L<TUWF>
=head1 COPYRIGHT
-Copyright (c) 2008-2015 Yoran Heling.
+Copyright (c) 2008-2017 Yoran Heling.
This module is part of the TUWF framework and is free software available under
the liberal MIT license. See the COPYING file in the TUWF distribution for the
diff --git a/lib/TUWF/Misc.pm b/lib/TUWF/Misc.pm
index 1112816..16236b6 100644
--- a/lib/TUWF/Misc.pm
+++ b/lib/TUWF/Misc.pm
@@ -11,7 +11,7 @@ use Encode 'encode_utf8';
use Scalar::Util 'looks_like_number';
-our $VERSION = '1.0';
+our $VERSION = '1.1';
our @EXPORT = ('formValidate', 'mail');
our @EXPORT_OK = ('uri_escape', 'kv_validate');
diff --git a/lib/TUWF/Misc.pod b/lib/TUWF/Misc.pod
index 6838f5a..ca141ad 100644
--- a/lib/TUWF/Misc.pod
+++ b/lib/TUWF/Misc.pod
@@ -280,7 +280,7 @@ L<TUWF>, L<URI::Escape>.
=head1 COPYRIGHT
-Copyright (c) 2008-2015 Yoran Heling.
+Copyright (c) 2008-2017 Yoran Heling.
This module is part of the TUWF framework and is free software available under
the liberal MIT license. See the COPYING file in the TUWF distribution for the
diff --git a/lib/TUWF/Request.pm b/lib/TUWF/Request.pm
index 7081ae0..9595663 100644
--- a/lib/TUWF/Request.pm
+++ b/lib/TUWF/Request.pm
@@ -7,7 +7,7 @@ use Encode 'decode_utf8', 'encode_utf8';
use Exporter 'import';
use Carp 'croak';
-our $VERSION = '1.0';
+our $VERSION = '1.1';
our @EXPORT = qw|
reqInit reqGets reqGet reqPosts reqPost reqParams reqParam
reqUploadMIMEs reqUploadMIME reqUploadRaws reqUploadRaw reqSaveUpload
diff --git a/lib/TUWF/Request.pod b/lib/TUWF/Request.pod
index 1d65dbc..62eeb64 100644
--- a/lib/TUWF/Request.pod
+++ b/lib/TUWF/Request.pod
@@ -201,7 +201,7 @@ L<TUWF>
=head1 COPYRIGHT
-Copyright (c) 2008-2015 Yoran Heling.
+Copyright (c) 2008-2017 Yoran Heling.
This module is part of the TUWF framework and is free software available under
the liberal MIT license. See the COPYING file in the TUWF distribution for the
diff --git a/lib/TUWF/Response.pm b/lib/TUWF/Response.pm
index bae1b2c..d29aa81 100644
--- a/lib/TUWF/Response.pm
+++ b/lib/TUWF/Response.pm
@@ -8,7 +8,7 @@ use Exporter 'import';
use POSIX 'strftime';
-our $VERSION = '1.0';
+our $VERSION = '1.1';
our @EXPORT = qw|
resInit resHeader resCookie resBuffer resFd resStatus resRedirect resNotFound resFinish
|;
diff --git a/lib/TUWF/Response.pod b/lib/TUWF/Response.pod
index 2277c4c..52a5c28 100644
--- a/lib/TUWF/Response.pod
+++ b/lib/TUWF/Response.pod
@@ -189,7 +189,7 @@ L<TUWF>
=head1 COPYRIGHT
-Copyright (c) 2008-2015 Yoran Heling.
+Copyright (c) 2008-2017 Yoran Heling.
This module is part of the TUWF framework and is free software available under
the liberal MIT license. See the COPYING file in the TUWF distribution for the
diff --git a/lib/TUWF/XML.pm b/lib/TUWF/XML.pm
index e48b341..51d9b2a 100644
--- a/lib/TUWF/XML.pm
+++ b/lib/TUWF/XML.pm
@@ -10,7 +10,7 @@ use Exporter 'import';
use Carp 'carp', 'croak';
-our $VERSION = '1.0';
+our $VERSION = '1.1';
our(@EXPORT_OK, %EXPORT_TAGS, @htmltags, @htmlexport, @xmlexport, %htmlbool, $OBJ);
diff --git a/lib/TUWF/XML.pod b/lib/TUWF/XML.pod
index 7ae0f5f..82b83ab 100644
--- a/lib/TUWF/XML.pod
+++ b/lib/TUWF/XML.pod
@@ -274,7 +274,7 @@ but less convenient.
=head1 COPYRIGHT
-Copyright (c) 2008-2015 Yoran Heling.
+Copyright (c) 2008-2017 Yoran Heling.
This module is part of the TUWF framework and is free software available under
the liberal MIT license. See the COPYING file in the TUWF distribution for the