/usr/share/namazu/pl/var.pl is in namazu2-index-tools 2.0.21-21.
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | # -*- Perl -*-
# $Id: var.pl.in,v 1.12.8.4 2009-01-29 02:29:00 opengl2772 Exp $
# Copyright (C) 1997-1999 Satoru Takabayashi All rights reserved.
# Copyright (C) 2000-2009 Namazu Project All rights reserved.
# This is free software with ABSOLUTELY NO WARRANTY.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either versions 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA
#
# This file must be encoded in EUC-JP encoding
#
package var;
#-----------------------------------------------------------
#
# Software information.
#
$VERSION = "2.0.21";
$COPYRIGHT = "Copyright (C) 1997-1999 Satoru Takabayashi All rights reserved.\nCopyright (C) 2000-2011 Namazu Project All rights reserved."; # should be doublequote
$MAILING_ADDRESS = 'bug-namazu@namazu.org';
$TRAC_URI = 'http://www.namazu.org/trac-namazu/trac.cgi';
#-----------------------------------------------------------
#
# File names of index files.
#
my $base = "NMZ";
%NMZ = ();
$NMZ{'i'} = "$base.i";
$NMZ{'ii'} = "$base.ii";
$NMZ{'r'} = "$base.r";
$NMZ{'head'} = "$base.head";
$NMZ{'foot'} = "$base.foot";
$NMZ{'log'} = "$base.log";
$NMZ{'slog'} = "$base.slog";
$NMZ{'lock'} = "$base.lock";
$NMZ{'lock2'} = "$base.lock2";
$NMZ{'msg'} = "$base.msg";
$NMZ{'body'} = "$base.body";
$NMZ{'err'} = "$base.err";
$NMZ{'w'} = "$base.w";
$NMZ{'wi'} = "$base.wi";
$NMZ{'p'} = "$base.p";
$NMZ{'pi'} = "$base.pi";
$NMZ{'field'} = "$base.field";
$NMZ{'result'} = "$base.result";
$NMZ{'t'} = "$base.t";
$NMZ{'status'} = "$base.status";
$NMZ{'tips'} = "$base.tips";
$NMZ{'version'}= "$base.version";
$NMZ{'_t'} = $NMZ{'t'};
$NMZ{'_i'} = $NMZ{'i'};
$NMZ{'_p'} = $NMZ{'p'};
$NMZ{'_pi'} = $NMZ{'pi'};
$NMZ{'_r'} = $NMZ{'r'};
$NMZ{'_ii'} = $NMZ{'ii'};
$NMZ{'_w'} = $NMZ{'w'};
$NMZ{'_wi'} = $NMZ{'wi'};
$NMZ{'_flist'} = "$base.flist";
$NMZ{'_checkpoint'} = "$base.checkpoint";
$NMZ{'__i'} = "$base.tmp_i";
$NMZ{'__w'} = "$base.tmp_w";
$NMZ{'__p'} = "$base.tmp_p";
$NMZ{'__pi'} = "$base.tmp_pi";
#-----------------------------------------------------------
#
# Options
#
$Opt{'debug'} = 0;
$Opt{'quiet'} = 0;
$Opt{'verbose'} = 0;
$Opt{'robotexclude'} = 0;
$Opt{'htaccessexclude'} = 0;
$Opt{'htmlsplit'} = 0;
$Opt{'uuencode'} = 0;
$Opt{'noheadabst'} = 0;
$Opt{'hiragana'} = 0;
$Opt{'okurigana'} = 0;
$Opt{'noedgesymbol'} = 0;
$Opt{'nosymbol'} = 0;
$Opt{'noencodeuri'} = 0;
$Opt{'nodelete'} = 0;
$Opt{'noupdate'} = 0;
$Opt{'checkfilesize'} = 0;
$Opt{'decodebase64'} = 0;
#-----------------------------------------------------------
#
# Size of `int'
#
{
my $tmp = 0;
$tmp = pack("i", $tmp);
$INTSIZE = length($tmp);
}
#-----------------------------------------------------------
#
# Misc
#
$OUTPUT_DIR = undef;
$NO_TITLE = N_("No title in original");
$USE_NKF_MODULE = 0;
%REQUIRE_ACTIONS = ();
%RECURSIVE_ACTIONS = ();
%REQUIRE_PRE_CODECONV =
(
'text/plain' => 1,
);
%REQUIRE_POST_CODECONV =
(
'text/plain' => 0,
);
%Supported =
(
'text/plain' => "yes",
);
# Dummy function for gettextization.
sub N_ {};
1;
|