SILENT KILLERPanel

Current Path: > > usr > > share > perl5 > vendor_perl > Pod > Simple


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //usr//share/perl5/vendor_perl/Pod/Simple

NameTypeSizeLast ModifiedActions
BlackBox.pm File 72598 bytes November 29 2016 23:14:16.
Checker.pm File 5339 bytes November 29 2016 23:14:16.
Debug.pm File 4625 bytes November 29 2016 23:14:16.
DumpAsText.pm File 4035 bytes November 29 2016 23:14:16.
DumpAsXML.pm File 4560 bytes November 29 2016 23:14:16.
HTML.pm File 34614 bytes November 29 2016 23:14:16.
HTMLBatch.pm File 40144 bytes November 29 2016 23:14:16.
HTMLLegacy.pm File 2758 bytes November 29 2016 23:14:16.
LinkSection.pm File 4344 bytes November 29 2016 23:14:16.
Methody.pm File 3571 bytes November 29 2016 23:14:16.
Progress.pm File 2413 bytes November 29 2016 23:14:16.
PullParser.pm File 25729 bytes November 29 2016 23:14:16.
PullParserEndToken.pm File 2884 bytes November 29 2016 23:14:16.
PullParserStartToken.pm File 4146 bytes November 29 2016 23:14:16.
PullParserTextToken.pm File 3363 bytes November 29 2016 23:14:16.
PullParserToken.pm File 4004 bytes November 29 2016 23:14:16.
RTF.pm File 22484 bytes November 29 2016 23:14:16.
Search.pm File 35108 bytes November 29 2016 23:14:16.
SimpleTree.pm File 4632 bytes November 29 2016 23:14:16.
Subclassing.pod File 33294 bytes November 29 2016 23:14:16.
Text.pm File 5103 bytes November 29 2016 23:14:16.
TextContent.pm File 2518 bytes November 29 2016 23:14:16.
TiedOutFH.pm File 2751 bytes November 29 2016 23:14:16.
Transcode.pm File 736 bytes November 29 2016 23:14:16.
TranscodeDumb.pm File 2693 bytes November 29 2016 23:14:16.
TranscodeSmart.pm File 715 bytes November 29 2016 23:14:16.
XHTML.pm File 26400 bytes November 29 2016 23:14:16.
XMLOutStream.pm File 4666 bytes November 29 2016 23:14:16.

Reading File: //usr//share/perl5/vendor_perl/Pod/Simple/TranscodeDumb.pm

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.35';
# 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,
  'cp1252'      => 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;
    # No-op for all but CP1252.
    return sub {;} if $e !~ /^cp-?1252$/i;

    # Replace CP1252 nerbles with their ASCII equivalents.
    return sub {
        # Copied from Encode::ZapCP1252.
        my %ascii_for = (
            # http://en.wikipedia.org/wiki/Windows-1252
            "\x80" => 'e',    # EURO SIGN
            "\x82" => ',',    # SINGLE LOW-9 QUOTATION MARK
            "\x83" => 'f',    # LATIN SMALL LETTER F WITH HOOK
            "\x84" => ',,',   # DOUBLE LOW-9 QUOTATION MARK
            "\x85" => '...',  # HORIZONTAL ELLIPSIS
            "\x86" => '+',    # DAGGER
            "\x87" => '++',   # DOUBLE DAGGER
            "\x88" => '^',    # MODIFIER LETTER CIRCUMFLEX ACCENT
            "\x89" => '%',    # PER MILLE SIGN
            "\x8a" => 'S',    # LATIN CAPITAL LETTER S WITH CARON
            "\x8b" => '<',    # SINGLE LEFT-POINTING ANGLE QUOTATION MARK
            "\x8c" => 'OE',   # LATIN CAPITAL LIGATURE OE
            "\x8e" => 'Z',    # LATIN CAPITAL LETTER Z WITH CARON
            "\x91" => "'",    # LEFT SINGLE QUOTATION MARK
            "\x92" => "'",    # RIGHT SINGLE QUOTATION MARK
            "\x93" => '"',    # LEFT DOUBLE QUOTATION MARK
            "\x94" => '"',    # RIGHT DOUBLE QUOTATION MARK
            "\x95" => '*',    # BULLET
            "\x96" => '-',    # EN DASH
            "\x97" => '--',   # EM DASH
            "\x98" => '~',    # SMALL TILDE
            "\x99" => '(tm)', # TRADE MARK SIGN
            "\x9a" => 's',    # LATIN SMALL LETTER S WITH CARON
            "\x9b" => '>',    # SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
            "\x9c" => 'oe',   # LATIN SMALL LIGATURE OE
            "\x9e" => 'z',    # LATIN SMALL LETTER Z WITH CARON
            "\x9f" => 'Y',    # LATIN CAPITAL LETTER Y WITH DIAERESIS
        );

        s{([\x80-\x9f])}{$ascii_for{$1} || $1}emxsg for @_;
  };
}


1;



SILENT KILLER Tool