OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
perl5
/
Debconf
/
Element
/
Dialog
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/21/2019 03:48:56 PM
rwxr-xr-x
📄
Boolean.pm
729 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Error.pm
331 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Multiselect.pm
1.79 KB
05/06/2019 04:30:30 PM
rw-r--r--
📄
Note.pm
330 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Password.pm
690 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Progress.pm
1.8 KB
05/06/2019 04:30:30 PM
rw-r--r--
📄
Select.pm
1.32 KB
05/06/2019 04:30:30 PM
rw-r--r--
📄
String.pm
788 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Text.pm
330 bytes
05/06/2019 04:30:30 PM
rw-r--r--
Editing: Error.pm
Close
#!/usr/bin/perl -w # This file was preprocessed, do not edit! package Debconf::Element::Dialog::Error; use strict; use base qw(Debconf::Element); sub show { my $this=shift; $this->frontend->showtext($this->question, $this->question->description."\n\n". $this->question->extended_description ); $this->value(''); } 1