File: control

package info (click to toggle)
libmasonx-interp-withcallbacks-perl 1.19-3.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 232 kB
  • sloc: perl: 1,789; makefile: 2
file content (46 lines) | stat: -rw-r--r-- 2,302 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: libmasonx-interp-withcallbacks-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jonas Genannt <jonas.genannt@capi2name.de>,
           gregor herrmann <gregoa@debian.org>,
           Niko Tyni <ntyni@debian.org>,
           Fabrizio Regalli <fabreg@fabreg.it>,
           Florian Schlichting <fschlich@zedat.fu-berlin.de>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 8),
               libmodule-build-perl
Build-Depends-Indep: libcgi-pm-perl | perl (<< 5.19),
                     libclass-container-perl,
                     libhtml-mason-perl,
                     libparams-callbackrequest-perl,
                     libtest-pod-perl,
                     perl
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmasonx-interp-withcallbacks-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libmasonx-interp-withcallbacks-perl.git
Homepage: https://metacpan.org/release/MasonX-Interp-WithCallbacks

Package: libmasonx-interp-withcallbacks-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libclass-container-perl,
         libhtml-mason-perl,
         libparams-callbackrequest-perl
Suggests: libapache2-mod-perl2
Description: Mason callback support via Params::CallbackRequest
 MasonX::Interp::WithCallbacks subclasses HTML::Mason::Interp in order to
 provide a Mason callback system built on Params::CallbackRequest.
 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 request or by specially named keys in the Mason request
 arguments, and all callbacks are executed at the beginning of a request, just
 before Mason creates and executes the request component stack.
 .
 This module brings support for a sort of plugin architecture based on
 Params::CallbackRequest to Mason. Mason then executes code before executing
 any components. This approach allows you to carry out logical processing of
 data submitted from a form, to affect the contents of the Mason request
 arguments (and thus the %ARGS hash in components), and even to redirect or
 abort the request before Mason handles it.