From 4ed841195d6a6902f687f96e354661de783586c8 Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Thu, 30 Apr 2009 18:17:24 +0000 Subject: [PATCH] added gotcha and testEnvironment modules --- docs/gotcha.txt | 2 ++ sbin/testEnvironment.pl | 3 +++ 2 files changed, 5 insertions(+) diff --git a/docs/gotcha.txt b/docs/gotcha.txt index da246e218..ece664d62 100644 --- a/docs/gotcha.txt +++ b/docs/gotcha.txt @@ -24,6 +24,8 @@ save you many hours of grief. site uses a different parser for this template it will need to be manually upgraded. + * WebGUI now requires HTML::Packer, JavaScript::Packer, and CSS::Packer + 7.7.4 -------------------------------------------------------------------- * WebGUI now requires XML::FeedPP version 0.40 or greater. diff --git a/sbin/testEnvironment.pl b/sbin/testEnvironment.pl index a7f54f7b8..0a130bbc6 100755 --- a/sbin/testEnvironment.pl +++ b/sbin/testEnvironment.pl @@ -123,6 +123,9 @@ checkModule("Module::Find", "0.06" ); checkModule("Class::C3", "0.19" ); checkModule("Params::Validate", "0.81" ); checkModule("Clone", "0.31" ); +checkModule('HTML::Packer', "0.4" ); +checkModule('JavaScript::Packer', '0.02' ); +checkModule('CSS::Packer', '0.2' ); failAndExit("Required modules are missing, running no more checks.") if $missingModule;