File: control

package info (click to toggle)
libhtml-template-perl 2.97-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 744 kB
  • ctags: 112
  • sloc: perl: 2,572; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 1,584 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
Source: libhtml-template-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Florian Schlichting <fsfs@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: libcgi-pm-perl | perl (<< 5.19),
                     libipc-sharedcache-perl,
                     perl
Standards-Version: 4.1.1
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libhtml-template-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libhtml-template-perl.git
Homepage: https://metacpan.org/release/HTML-Template

Package: libhtml-template-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libcgi-pm-perl | perl (<< 5.19)
Suggests: libipc-sharedcache-perl
Description: module for using HTML templates with Perl
 HTML::Template attempts to make using HTML templates simple and
 natural. It extends standard HTML with the pseudo tags <TMPL_VAR>,
 <TMPL_LOOP>, <TMPL_INCLUDE>, <TMPL_IF> and <TMPL_ELSE>. These are used
 to implement some basic logic - variable substitution, loops,
 conditional branches - inside the HTML template, while leaving the more
 complex computations to separate Perl code. This keeps the template
 accessible for designers and other non-Perl people, without limiting
 the programmer.
 .
 HTML::Template optionally stores its cache in shared memory using the
 IPC::SharedCache module. Please install libipc-sharedcache-perl and
 pass the shared_cache option to HTML::Template if you want to make use
 of this.