File: pkgreport_options_include_exclude.tmpl

package info (click to toggle)
debbugs 2.6.4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,800 kB
  • sloc: perl: 19,270; makefile: 81; sh: 75
file content (16 lines) | stat: -rw-r--r-- 492 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<input type="hidden" name="_fo_concatenate_into_{$incexc}_fo_{$incexc}key_fo_{$incexc}value" value="1">
{ my $output = '';
  our $value_index = 0;
  our $key1 = '';
  our $key2 = '';
  for my $field (make_list($param{$incexc})) {
    ($key1,$key2) = $field =~ m/^([^:]+)\:(.+)/;
    next unless defined $key2;
    $output .= include('cgi/pkgreport_options_include_exclude_key');
  }
  $key1 = '';
  $key2 = '';
  $output .= include('cgi/pkgreport_options_include_exclude_key');
  $output;
}