OXIESEC PANEL
- Current Dir:
/
/
snap
/
core
/
17210
/
usr
/
share
/
perl5
/
Debconf
/
Element
/
Editor
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/02/2024 07:52:55 PM
rwxr-xr-x
📄
Boolean.pm
1009 bytes
05/08/2019 06:33:33 PM
rw-r--r--
📄
Error.pm
165 bytes
05/08/2019 06:33:33 PM
rw-r--r--
📄
Multiselect.pm
916 bytes
05/08/2019 06:33:33 PM
rw-r--r--
📄
Note.pm
164 bytes
05/08/2019 06:33:33 PM
rw-r--r--
📄
Password.pm
171 bytes
05/08/2019 06:33:33 PM
rw-r--r--
📄
Progress.pm
235 bytes
05/08/2019 06:33:33 PM
rw-r--r--
📄
Select.pm
834 bytes
05/08/2019 06:33:33 PM
rw-r--r--
📄
String.pm
439 bytes
05/08/2019 06:33:33 PM
rw-r--r--
📄
Text.pm
316 bytes
05/08/2019 06:33:33 PM
rw-r--r--
Editing: String.pm
Close
#!/usr/bin/perl -w # This file was preprocessed, do not edit! package Debconf::Element::Editor::String; use strict; use base qw(Debconf::Element); sub show { my $this=shift; $this->frontend->comment($this->question->extended_description."\n\n". $this->question->description."\n"); my $default=''; $default=$this->question->value if defined $this->question->value; $this->frontend->item($this->question->name, $default); } 1