This file is indexed.

/usr/share/perl5/Debian/DocBase/Programs/Dwww.pm is in doc-base 0.10.5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
# vim:cindent:ts=2:sw=2:et:fdm=marker:cms=\ #\ %s
#
# $Id: Dwww.pm 222 2011-02-28 22:18:55Z robert $
#

package Debian::DocBase::Programs::Dwww;

use Exporter();
use strict;
use warnings;

use vars qw(@ISA @EXPORT);
@ISA = qw(Exporter);
@EXPORT = qw(RegisterDwww);

use Debian::DocBase::Common;
use Debian::DocBase::Utils;
use Debian::DocBase::Gettext;

our $dwww_build_menu = "/usr/sbin/dwww-build-menu";

# Registering to dwww:
sub RegisterDwww($@) { # {{{
  my $showinfo = shift;
  my @documents = @_;

  Debug(_g("%s started."), "RegisterDwww");

  if (-x $dwww_build_menu) {
    Inform(_g("Registering documents with %s..."), "dwww") if $showinfo and $opt_update_menus;
    Execute($dwww_build_menu) if $opt_update_menus;
  } else {
    Debug(_g("Skipping execution of %s - %s package doesn't seem to be installed."), $dwww_build_menu, "dwww");
  }
  Debug(_g("%s finished."), "RegisterDwww");

} # }}}