GunghoX::FollowLinks::Rule::Allow - Always Allow


GunghoX-FollowLinks documentation Contained in the GunghoX-FollowLinks distribution.

Index


Code Index:

NAME

Top

GunghoX::FollowLinks::Rule::Allow - Always Allow

DESCRIPTION

Top

If you specify this rule, it will always allow a link to be followed.

METHODS

Top

apply

Always returns true


GunghoX-FollowLinks documentation Contained in the GunghoX-FollowLinks distribution.

# $Id: /mirror/perl/GunghoX-FollowLinks/trunk/lib/GunghoX/FollowLinks/Rule/Allow.pm 8894 2007-11-10T15:15:07.379456Z daisuke  $
#
# Copyright (c) 2007 Daisuke Maki <daisuke@endeworks.jp>
# All rights reserved.

package GunghoX::FollowLinks::Rule::Allow;
use strict;
use warnings;
use base qw(GunghoX::FollowLinks::Rule);

sub apply { &GunghoX::FollowLinks::Rule::FOLLOW_ALLOW }

1;

__END__