OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
perl5
/
Debconf
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 06:50:33 AM
rwxr-xr-x
📄
AutoSelect.pm
1.85 KB
05/06/2019 04:30:30 PM
rw-r--r--
📄
Base.pm
499 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📁
Client
-
10/21/2019 03:48:56 PM
rwxr-xr-x
📄
ConfModule.pm
15.27 KB
05/06/2019 04:30:30 PM
rw-r--r--
📄
Config.pm
6.86 KB
05/06/2019 04:30:30 PM
rw-r--r--
📄
Db.pm
1.17 KB
05/06/2019 04:30:30 PM
rw-r--r--
📁
DbDriver
-
10/21/2019 03:48:56 PM
rwxr-xr-x
📄
DbDriver.pm
2.3 KB
05/06/2019 04:30:30 PM
rw-r--r--
📁
Element
-
10/21/2019 03:48:56 PM
rwxr-xr-x
📄
Element.pm
196 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Encoding.pm
1.45 KB
05/06/2019 04:30:30 PM
rw-r--r--
📁
Format
-
10/21/2019 03:48:56 PM
rwxr-xr-x
📄
Format.pm
133 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📁
FrontEnd
-
10/21/2019 03:48:56 PM
rwxr-xr-x
📄
FrontEnd.pm
2.8 KB
05/06/2019 04:30:30 PM
rw-r--r--
📄
Gettext.pm
301 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Iterator.pm
198 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Log.pm
914 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Path.pm
291 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Priority.pm
642 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Question.pm
5.73 KB
05/06/2019 04:30:30 PM
rw-r--r--
📁
Template
-
10/21/2019 03:48:56 PM
rwxr-xr-x
📄
Template.pm
8.01 KB
05/06/2019 04:30:30 PM
rw-r--r--
📄
TmpFile.pm
374 bytes
05/06/2019 04:30:30 PM
rw-r--r--
Editing: Gettext.pm
Close
#!/usr/bin/perl -w # This file was preprocessed, do not edit! package Debconf::Gettext; use strict; BEGIN { eval 'use Locale::gettext'; if ($@) { eval q{ sub gettext { return shift; } }; } else { textdomain('debconf'); } } use base qw(Exporter); our @EXPORT=qw(gettext); 1