File: control

package info (click to toggle)
libparams-callbackrequest-perl 1.20-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 252 kB
  • sloc: perl: 1,541; makefile: 2
file content (46 lines) | stat: -rw-r--r-- 2,171 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Source: libparams-callbackrequest-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jonas Genannt <jonas.genannt@capi2name.de>,
           gregor herrmann <gregoa@debian.org>,
           Peter Pentchev <roam@ringlet.net>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 8),
               libmodule-build-perl
Build-Depends-Indep: perl,
                     libclass-isa-perl,
                     libattribute-handlers-perl,
                     libexception-class-perl,
                     libparams-validate-perl,
                     libtest-pod-perl
Standards-Version: 3.9.2
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libparams-callbackrequest-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libparams-callbackrequest-perl.git
Homepage: https://metacpan.org/release/Params-CallbackRequest
Testsuite: autopkgtest-pkg-perl

Package: libparams-callbackrequest-perl
Architecture: all
Depends: ${perl:Depends},
         ${misc:Depends},
         perl,
         libclass-isa-perl,
         libattribute-handlers-perl,
         libexception-class-perl,
         libparams-validate-perl
Description: handler for functional and object-oriented callbacks in Perl
 Params::CallbackRequest provides functional and object-oriented callbacks to
 method and function parameters. Callbacks may be either code references
 provided to the new() constructor, or methods defined in subclasses of
 Params::Callback. Callbacks are triggered either for every call to the
 Params::CallbackRequest request() method, or by specially named keys in the
 parameters to request().
 .
 The idea behind this module is to provide a sort of plugin architecture for
 Perl templating systems. Callbacks are triggered by the contents of a request
 to the Perl templating server, before the templating system itself executes.
 This approach allows you to carry out logical processing of data submitted
 from a form, to affect the contents of the request parameters before they're
 passed to the templating system for processing, and even to redirect or abort
 the request before the templating system handles it.