libdata-uriencode-perl 0.11-3 source package in Ubuntu

Changelog

libdata-uriencode-perl (0.11-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + libdata-uriencode-perl: Add Multi-Arch: foreign.
  * Update standards version to 4.6.1, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Thu, 13 Oct 2022 23:15:09 +0100

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
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libdata-uriencode-perl_0.11-3.dsc 2.1 KiB f73719e8fbf49bbbd27f0a997651d5e32b8ffad1f571644ab112972cedc4f86e
libdata-uriencode-perl_0.11.orig.tar.gz 8.7 KiB 51c9efbf8423853616eaa24841e4d1996b2db0036900617fb1dbc76c75a1f360
libdata-uriencode-perl_0.11-3.debian.tar.xz 1.8 KiB 079803e8dbadd155eb21fb9ad888788960409ae4e380156b96f5bdd7e2925db1

Available diffs

No changes file available.

Binary packages built by this source

libdata-uriencode-perl: module to encode and decode data structures for use in URI's

 The world of the web works off of URI's. The Query string portion of
 URIs already support encoding of key/value paired data - they just
 don't natively allow for complex data structures.
 .
 There are modules or encodings that do support arbitrarily complex
 data structures. JSON, YAML and Data::Dumper all have their own way
 of encoding complex structures. But then to pass them across the web,
 you usually still have to URL encode them and pass them via a form
 parameter.
 .
 Data::URIEncode allows for encoding and decoding complex (multi
 level) data structures using native Query String manipulators (such
 as CGI.pm). It takes complex data and turns it into a flat hashref
 which can then be turned into a URI query string using URL
 encoding. It also takes a flat hashref of data passed in and
 translates it back to a complex structure.