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.47
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
Apache
[ DIR ]
drwxr-xr-x
Cache
[ DIR ]
drwxr-xr-x
Compiler
[ DIR ]
drwxr-xr-x
Component
[ DIR ]
drwxr-xr-x
Plugin
[ DIR ]
drwxr-xr-x
Resolver
[ DIR ]
drwxr-xr-x
Admin.pod
38.91
KB
-rw-r--r--
ApacheHandler.pm
35.64
KB
-rw-r--r--
ApacheUserDirHandler.pm
3.5
KB
-rw-r--r--
CGIHandler.pm
18.75
KB
-rw-r--r--
Compiler.pm
28.23
KB
-rw-r--r--
Component.pm
17
KB
-rw-r--r--
ComponentSource.pm
5.27
KB
-rw-r--r--
Devel.pod
75.65
KB
-rw-r--r--
Escapes.pm
2.82
KB
-rw-r--r--
Exceptions.pm
16.24
KB
-rw-r--r--
FAQ.pod
56.01
KB
-rw-r--r--
FakeApache.pm
11.72
KB
-rw-r--r--
Handler.pm
970
B
-rw-r--r--
Interp.pm
45.93
KB
-rw-r--r--
Lexer.pm
18.47
KB
-rw-r--r--
MethodMaker.pm
5.68
KB
-rw-r--r--
Params.pod
33.54
KB
-rw-r--r--
Parser.pm
483
B
-rw-r--r--
Plugin.pm
5.41
KB
-rw-r--r--
Request.pm
77.58
KB
-rw-r--r--
Resolver.pm
3.38
KB
-rw-r--r--
Subclassing.pod
9.78
KB
-rw-r--r--
Tests.pm
24.22
KB
-rw-r--r--
Tools.pm
9.43
KB
-rw-r--r--
Utils.pm
2.46
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Resolver.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; $HTML::Mason::Resolver::VERSION = '1.59'; use strict; use warnings; use HTML::Mason::Exceptions( abbr => ['param_error', 'virtual_error'] ); use Params::Validate qw(:all); Params::Validate::validation_options( on_fail => sub { param_error join '', @_ } ); use HTML::Mason::ComponentSource; use Class::Container; use base qw(Class::Container); # Returns HTML::Mason::ComponentSource object sub get_info { shift->_virtual; } sub glob_path { shift->_virtual; } sub _virtual { my $self = shift; my $sub = (caller(1))[3]; $sub =~ s/.*::(.*?)$/$1/; virtual_error "$sub is a virtual method and must be overridden in " . ref($self); } 1; __END__ =head1 NAME HTML::Mason::Resolver - Component path resolver base class =head1 SYNOPSIS # make a subclass and use it =head1 DESCRIPTION The resolver is responsible for translating a component path like /foo/index.html into a component. By default, Mason expects components to be stored on the filesystem, and uses the HTML::Mason::Resolver::File class to get information on these components. The HTML::Mason::Resolver provides a virtual parent class from which all resolver implementations should inherit. =head1 Class::Container This class is used by most of the Mason object's to manage constructor parameters and has-a relationships with other objects. See the documentation on this class for details on how to declare what parameters are valid for your subclass's constructor. HTML::Mason::Resolver is a subclass of Class::Container so you do not need to subclass it yourself. =head1 METHODS If you are interested in creating a resolver subclass, you must implement the following methods. =over 4 =item new This method is optional. The new method included in this class is simply inherited from C<Class::Container>. If you need something more complicated done in your new method you will need to override it in your subclass. =item get_info Takes three arguments: an absolute component path, a component root key, and a component root path. Returns a new L<HTML::Mason::ComponentSource|HTML::Mason::ComponentSource> object. =item glob_path Takes two arguments: a path glob pattern, something like "/foo/*" or "/foo/*/bar", and a component root path. Returns a list of component paths for components which match this glob pattern. For example, the filesystem resolver simply appends this pattern to the component root path and calls the Perl C<glob()> function to find matching files on the filesystem. =back =head2 Using a Resolver with HTML::Mason::ApacheHandler If you are creating a new resolver that you intend to use with the L<HTML::Mason::ApacheHandler|HTML::Mason::ApacheHandler> module, then you must implement the following method as well. =over 4 =item apache_request_to_comp_path ($r, @comp_root_array) This method, given an Apache object and a list of component root pairs, should return a component path or undef if none exists. This method is used by the L<HTML::Mason::ApacheHandler|HTML::Mason::ApacheHandler> class to translate web requests into component paths. You can omit this method if your resolver subclass will never be used in conjunction with L<HTML::Mason::ApacheHandler|HTML::Mason::ApacheHandler>. =back =cut
Close