Search results for "module:CGI::Carp"
CGI::Carp - CGI routines for writing to the HTTPD (or other) error log
CGI scripts have a nasty habit of leaving warning messages in the error logs that are neither time stamped nor fully identified. Tracking down the script that caused the error is a pain. This fixes that. Replace the usual use Carp; with use CGI::Carp...
LEEJO/CGI-4.57 - 02 May 2023 13:16:01 UTC
CGI::Carp::Throw - CGI::Carp exceptions that don't look like errors.
Extend CGI::Carp, without breaking CGI::Carp's functionality, to allow die and croak calls to be selectively changed to throw_browser exceptions that are displayed in the user's browser as application messages rather than errors with trace informatio...
RONALDWS/CGI-Carp-Throw-0.04 - 17 Sep 2008 12:18:05 UTC
CGI::Carp::Fatals - fatalsToBrowser on steroids
This module extends CGI::Carp by adding perlinfo information (from HTML::Perlinfo) to fatal errors handled by CGI::Carp's fatalsToBrowser....
ACCARDO/CGI-Carp-Fatals-0.02 - 20 Apr 2009 03:57:07 UTC
CGI::Carp::StackTrace - install a Devel::StackTrace::AsHTML error screen for your CGI app
Add a modern error screen to your CGI application, like Plack::Middleware::StackTrace. Uses CGI::Carp in conjunction with Devel::StackTrace::WithLexicals and Devel::StackTrace::AsHTML....
RKITOVER/CGI-Carp-StackTrace-0.01 - 11 Feb 2013 20:56:13 UTC
CGI::Carp::DebugScreen - provides a decent debug screen for Web applications
"CGI::Carp qw/fatalsToBrowser/" is very useful for debugging. But the error screen it provides is a bit too plain; something you don't want to see, and you don't want your boss and colleagues and users to see. You might know CGI::Carp has a wonderful...
ISHIGAKI/CGI-Carp-DebugScreen-0.16 - 28 Jul 2009 07:18:47 UTC
CGI::Carp::DebugScreen::TT - CGI::Carp::DebugScreen Renderer with Template Toolkit
One of the ready-made view (renderer) classes for CGI::Carp::DebugScreen....
ISHIGAKI/CGI-Carp-DebugScreen-0.16 - 28 Jul 2009 07:18:47 UTC
CGI::Carp::WarningsToBrowser - A version of CGI::Carp's warningsToBrowser() that displays the warnings loudly and boldly
DEENEWCUM/CGI-Carp-WarningsToBrowser-0.02
-
09 Jun 2022 21:47:07 UTC
CGI::Carp::DebugScreen::Dumper - Dump a variable as an HTML table
This module dumps the contents of a variable (supposedly, a reference) as an HTML table. If the variable has something unfit for an HTML output, it dumps alternative texts such as '*BINARY*', '*CODE*', or '*GLOB*'. It also escapes every key and value...
ISHIGAKI/CGI-Carp-DebugScreen-0.16 - 28 Jul 2009 07:18:47 UTC
CGI::Carp::DebugScreen::DefaultView - CGI::Carp::DebugScreen Renderer without template engines
One of the ready-made view (renderer) classes for CGI::Carp::DebugScreen. Note that this doesn't support template overriding....
ISHIGAKI/CGI-Carp-DebugScreen-0.16 - 28 Jul 2009 07:18:47 UTC
CGI::Carp::DebugScreen::HTML::Template - CGI::Carp::DebugScreen Renderer with HTML::Template
One of the ready-made view (renderer) classes for CGI::Carp::DebugScreen....
ISHIGAKI/CGI-Carp-DebugScreen-0.16 - 28 Jul 2009 07:18:47 UTC
CGI::LogCarp - Error, log and debug streams, httpd style format
CGI::LogCarp is a Perl package defining methods for directing the existing STDERR stream as well as creating and directing two new messaging streams, STDBUG and STDLOG. Their use was intended mainly for a CGI development environment, or where separat...
MIKEKING/LogCarp-4.48 - 06 Jun 2020 20:05:35 UTC
CGI::Ex::Die - A CGI::Carp::FatalsToBrowser type utility.
This module is intended for showing more useful messages to the developer, should errors occur. This is a stub phase module. More features (error notification, custom error page, etc) will be added later....
CCM/CGI-Ex-2.54 - 11 Mar 2022 22:01:22 UTC
CGI::Out - buffer output when building CGI programs
This is a helper routine for building CGI programs. It buffers stdout until you're completed building your output. If you should get an error before you are finished, then it will display a nice error message (in HTML), log the error, and send email ...
MUIR/CGI-Out-2006.0215 - 16 Feb 2006 16:12:00 UTC
CGI::Wrap - buffer output when building CGI programs
This is a helper routine for building CGI programs. It buffers stdout until you're completed building your output. If you should get an error before you are finished, then it will display a nice error message (in HTML), log the error, and send email ...
MUIR/CGI-Out-2006.0215 - 16 Feb 2006 16:12:00 UTC
JRPC::CGI - JSON-RPC 2.0 Processing for CGI and HTTP::Server::Simple::CGI
This package provides JSON-RPC 2.0 services processor for 2 runtimes based on: * CGI (CGI.pm) Plain old CGI scripting (or mod_perl ModPerl::Registry mode) * HTTP::Server::Simple::CGI - a fast and lightweight runtime with a Perl embedded httpd (web se...
OHOLLMEN/JRPC-0.61 - 21 Dec 2014 17:14:48 UTC
CGI::Fast - CGI Interface for Fast CGI
CGI::Fast is a subclass of the CGI object created by CGI.pm. It is specialized to work with the FCGI module, which greatly speeds up CGI scripts by turning them into persistently running server processes. Scripts that perform time-consuming initializ...
LEEJO/CGI-Fast-2.16 - 01 Sep 2021 07:12:30 UTC
CGI::Push - Simple Interface to Server Push
CGI::Push is a subclass of the CGI object created by CGI.pm. It is specialized for server push operations, which allow you to create animated pages whose content changes at regular intervals. You provide CGI::Push with a pointer to a subroutine that ...
LEEJO/CGI-4.57 - 02 May 2023 13:16:01 UTC
CGI::Cookie - Interface to HTTP Cookies
CGI::Cookie is an interface to HTTP/1.1 cookies, a mechanism that allows Web servers to store persistent information on the browser's side of the connection. Although CGI::Cookie is intended to be used in conjunction with CGI.pm (and is in fact used ...
LEEJO/CGI-4.57 - 02 May 2023 13:16:01 UTC
CGI::Header - Handle CGI.pm-compatible HTTP header properties
This module is a utility class to manipulate a hash reference received by CGI.pm's "header()" method. This module isn't the replacement of the "header()" method, but complements CGI.pm. This module can be used in the following situation: 1. $header i...
ANAZAWA/CGI-Header-0.63 - 01 Aug 2013 08:19:26 UTC