libcatalyst-plugin-smarturi-perl 0.041-2 source package in Ubuntu

Changelog

libcatalyst-plugin-smarturi-perl (0.041-2) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  * debian/upstream/metadata: change GitHub/CPAN URL(s) to HTTPS.
  * debian/upstream/metadata: use HTTPS for GitHub URLs.

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Bump debhelper from old 9 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata
    (already present in machine-readable debian/copyright).

 -- Jelmer Vernooij <email address hidden>  Thu, 09 Jun 2022 22:16:29 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libcatalyst-plugin-smarturi-perl_0.041-2.dsc 2.4 KiB a33fd75c827f28ccee00320b48537786846a65819664d5c9fe1c70e41c779143
libcatalyst-plugin-smarturi-perl_0.041.orig.tar.gz 16.4 KiB cb882186985451203d923d7df9020aa042da8dc19496d823e16535b7051f5f57
libcatalyst-plugin-smarturi-perl_0.041-2.debian.tar.xz 2.6 KiB d3c4fddc0e5110deca1c20a06b9bd7cec4ee9864beb65c3abd3ffff3b3316c42

Available diffs

No changes file available.

Binary packages built by this source

libcatalyst-plugin-smarturi-perl: module providing configurable URIs for Catalyst

 Configure whether $c->uri_for and $c->req->uri_with return absolute, hostless
 or relative URIs, or URIs based on the 'Host' header. Also allows configuring
 which URI class to use. Works on application-wide or per-request basis.
 .
 Catalyst::Plugin::SmartURI is useful in situations where you're for example,
 redirecting to a lighttpd from a firewall rule, instead of a real proxy, and
 you want your links and redirects to still work correctly.
 .
 To use your own URI class, just subclass URI::SmartURI and set uri_class, or
 write a class that follows the same interface.
 .
 This plugin installs a custom $c->request_class, however it does so in a way
 that won't break if you've already set $c->request_class yourself, ie. by
 using Catalyst::Action::REST (thanks mst!).