K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / share / perl / 5.18.2 / Pod / Simple /
server ip : 172.67.156.115

your ip : 172.69.130.154

H O M E


Filename/usr/share/perl/5.18.2/Pod/Simple/TranscodeDumb.pm
Size1.16 kb
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 10:10
Last modified21-Nov-2018 01:11
Last accessed06-Jul-2025 21:17
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image

require 5;
## This module is to be use()'d only by Pod::Simple::Transcode

package Pod::Simple::TranscodeDumb;
use strict;
use vars qw($VERSION %Supported);
$VERSION = '3.28';
# This module basically pretends it knows how to transcode, except
# only for null-transcodings! We use this when Encode isn't
# available.

%Supported = (
'ascii' => 1,
'ascii-ctrl' => 1,
'iso-8859-1' => 1,
'null' => 1,
'latin1' => 1,
'latin-1' => 1,
%Supported,
);

sub is_dumb {1}
sub is_smart {0}

sub all_encodings {
return sort keys %Supported;
}

sub encoding_is_available {
return exists $Supported{lc $_[1]};
}

sub encmodver {
return __PACKAGE__ . " v" .($VERSION || '?');
}

sub make_transcoder {
my($e) = $_[1];
die "WHAT ENCODING!?!?" unless $e;
my $x;
return sub {;
#foreach $x (@_) {
# if(Pod::Simple::ASCII and !Pod::Simple::UNICODE and $] > 5.005) {
# # We're in horrible gimp territory, so we need to knock out
# # all the highbit things
# $x =
# pack 'C*',
# map {; ($_ < 128) ? $_ : 0x7e }
# unpack "C*",
# $x
# ;
# }
#}
#
#return;
};
}


1;