PATH:
usr
/
share
/
perl5
/
vendor_perl
/
Pod
/
Simple
require 5; use 5.008; ## Anything before 5.8.0 is GIMPY! ## This module is to be use()'d only by Pod::Simple::Transcode package Pod::Simple::TranscodeSmart; use strict; use Pod::Simple; require Encode; use vars qw($VERSION ); $VERSION = '3.28'; sub is_dumb {0} sub is_smart {1} sub all_encodings { return Encode::->encodings(':all'); } sub encoding_is_available { return Encode::resolve_alias($_[1]); } sub encmodver { return "Encode.pm v" .($Encode::VERSION || '?'); } sub make_transcoder { my $e = Encode::find_encoding($_[1]); die "WHAT ENCODING!?!?" unless $e; my $x; return sub { foreach $x (@_) { $x = $e->decode($x) unless Encode::is_utf8($x); } return; }; } 1;
[-] Checker.pm
[edit]
[-] Methody.pm
[edit]
[-] TranscodeDumb.pm
[edit]
[-] Text.pm
[edit]
[-] Debug.pm
[edit]
[-] PullParserTextToken.pm
[edit]
[+]
..
[-] DumpAsXML.pm
[edit]
[-] LinkSection.pm
[edit]
[-] DumpAsText.pm
[edit]
[-] Transcode.pm
[edit]
[-] Search.pm
[edit]
[-] XMLOutStream.pm
[edit]
[-] TextContent.pm
[edit]
[-] TiedOutFH.pm
[edit]
[-] PullParser.pm
[edit]
[-] PullParserToken.pm
[edit]
[-] TranscodeSmart.pm
[edit]
[-] PullParserEndToken.pm
[edit]
[-] HTMLBatch.pm
[edit]
[-] XHTML.pm
[edit]
[-] SimpleTree.pm
[edit]
[-] Subclassing.pod
[edit]
[-] HTMLLegacy.pm
[edit]
[-] RTF.pm
[edit]
[-] PullParserStartToken.pm
[edit]
[-] HTML.pm
[edit]
[-] Progress.pm
[edit]
[-] BlackBox.pm
[edit]