From 7ef36c7f5e56a405ee0fcb0d40c68b190a81170d Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Tue, 19 Nov 2013 03:26:49 +0100 Subject: [PATCH] v3.24 release --- Changes | 7 +++++++ MANIFEST | 45 +++++++++++++++++++++++++++++++++++++++++++++ META.yml | 6 +++--- TODO | 4 ++-- lib/PLP.pm | 2 +- 5 files changed, 58 insertions(+), 6 deletions(-) diff --git a/Changes b/Changes index d549769..92f61c2 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,10 @@ +3.24 - November 20, 2013: +- Avoid tie replacement broken in Perl >= 5.18 + - Test correct %post behaviour +- Various test fixes and improvements +- Document %header defaults and encoding +- Update META.yml to v1.4 specs + 3.23 - October 21, 2009: - Make tests pass on various systems - Fix header output using say() on Perl >= 5.10.1 diff --git a/MANIFEST b/MANIFEST index ac86acd..eb4a946 100644 --- a/MANIFEST +++ b/MANIFEST @@ -21,6 +21,51 @@ bin/plp.fcgi t/10-functions.t t/15-escape.t t/50-cgi.t +t/50-cgi/01-404+not+found.html +t/50-cgi/05-403+permission+denied.html +t/50-cgi/10-static.html +t/50-cgi/10-static.plp +t/50-cgi/11-print.html +t/50-cgi/11-print.plp +t/50-cgi/12-%3c%3a%3d.html +t/50-cgi/12-%3c%3a%3d.plp +t/50-cgi/17-exit.html +t/50-cgi/17-exit.plp +t/50-cgi/18-PLP_END.html +t/50-cgi/18-PLP_END.plp +t/50-cgi/20-no+warnings+by+default.html +t/50-cgi/20-no+warnings+by+default.plp +t/50-cgi/24-include.html +t/50-cgi/24-include.plp +t/50-cgi/29-fatal+error.html +t/50-cgi/29-fatal+error.plp +t/50-cgi/30-warnings.html +t/50-cgi/30-warnings.plp +t/50-cgi/31-%24PLP%3a%3aERROR.html +t/50-cgi/31-%24PLP%3a%3aERROR.plp +t/50-cgi/32-%24PLP%3a%3aDEBUG.html +t/50-cgi/32-%24PLP%3a%3aDEBUG.plp +t/50-cgi/40-utf8.html +t/50-cgi/40-utf8.plp +t/50-cgi/42-apache+%25ENV.html +t/50-cgi/42-apache+%25ENV.plp +t/50-cgi/50-%25get.html +t/50-cgi/50-%25get.plp +t/50-cgi/51-%25get+array.html +t/50-cgi/51-%25get+array.plp +t/50-cgi/55-%25header.html +t/50-cgi/55-%25header.plp +t/50-cgi/56-%25header+repetition.html +t/50-cgi/56-%25header+repetition.plp +t/50-cgi/60-empty+%25post.html +t/50-cgi/60-empty+%25post.plp +t/50-cgi/61-%25post+set.html +t/50-cgi/61-%25post+set.plp +t/50-cgi/62-%25post+data.html +t/50-cgi/62-%25post+data.plp +t/50-cgi/62-%25post+data.txt +t/50-cgi/80-lighttpd+%25ENV.html +t/50-cgi/80-lighttpd+%25ENV.plp t/91-meta.t t/92-pod.t t/93-podcover.t diff --git a/META.yml b/META.yml index 0f653bf..dc4750a 100644 --- a/META.yml +++ b/META.yml @@ -1,7 +1,7 @@ --- #YAML:1.0 name: PLP abstract: Perl in HTML pages -version: 3.23 +version: 3.24 version_from: PLP.pm author: - Mischa POSLAWSKY @@ -32,10 +32,10 @@ optional_features: provides: PLP: file: lib/PLP.pm - version: 3.23 + version: 3.24 PLP::Functions: file: lib/PLP/Functions.pm - version: 1.00 + version: 1.01 PLP::Backend::Apache: file: lib/PLP/Backend/Apache.pm version: 1.00 diff --git a/TODO b/TODO index c29369e..8e8ea37 100644 --- a/TODO +++ b/TODO @@ -1,6 +1,6 @@ In no particular order or significance: -- lvalue %cookie (similar to AddCookie) [3.23] -- multipart posts [3.24?] +- lvalue %cookie (similar to AddCookie) [3.25?] +- multipart posts [3.25] - install rules for servers - complete plp parsing tests [3.23] - redisplay include errors [3.23] diff --git a/lib/PLP.pm b/lib/PLP.pm index 112eefd..4afb904 100644 --- a/lib/PLP.pm +++ b/lib/PLP.pm @@ -14,7 +14,7 @@ use File::Spec; use strict; use warnings; -our $VERSION = '3.23'; +our $VERSION = '3.24'; # Subs in this package: # _default_error($plain, $html) Default error handler -- 2.30.0