libcgi-tiny-perl 1.002-2 source package in Ubuntu

Changelog

libcgi-tiny-perl (1.002-2) unstable; urgency=medium

  * Source only upload to allow migration to testing

 -- Nick Morrott <email address hidden>  Sat, 24 Feb 2024 04:49:39 +0000

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libcgi-tiny-perl_1.002-2.dsc 2.1 KiB 1a0cecbe1a39f359f53b7d3ccbc77620fa366437cce42f6f6dd48f81b1d8f92a
libcgi-tiny-perl_1.002.orig.tar.gz 63.1 KiB 769e90b2a0e155f06edaf2a42740ebd6d56429b0825692d3675663c63e3661b0
libcgi-tiny-perl_1.002-2.debian.tar.xz 5.5 KiB 564d5b2ecee91c736d914add14bbb4cd2e90185eaaf9b00b1c5ad3112bc8c204

Available diffs

No changes file available.

Binary packages built by this source

libcgi-tiny-perl: module providing a modern interface to write CGI scripts

 CGI::Tiny provides a modern interface to write CGI scripts to dynamically
 respond to HTTP requests as defined in RFC 3875. It is intended to be:
 .
  * Minimal
  CGI::Tiny contains a small amount of code and (on modern Perls) no non-core
  requirements. No framework needed.
 .
  * Simple
  CGI::Tiny is straightforward to use, avoids anything magical or surprising,
  and provides easy access to the most commonly needed features.
 .
  * Robust
  CGI::Tiny's interface is designed to help the developer follow best
  practices and avoid common pitfalls and vulnerabilities by default.
 .
  * Lazy
  CGI::Tiny only loads code or processes information once it is needed,
  so simple requests can be handled without unnecessary overhead.
 .
  * Restrained
  CGI::Tiny is designed for the CGI protocol which executes the program again
  for every request. It is not suitable for persistent protocols like FastCGI
  or PSGI.
 .
  * Flexible
  CGI::Tiny can be used with other modules to handle tasks like routing and
  templating, and doesn't impose unnecessary constraints to reading input or
  rendering output.