| GunghoX-FollowLinks documentation | Contained in the GunghoX-FollowLinks distribution. |
GunghoX::FollowLinks::Rule::Deny - Always Deny
If you specify this rule, it will links will not be followed.
Always returns FOLLOW_DENY
| GunghoX-FollowLinks documentation | Contained in the GunghoX-FollowLinks distribution. |
# $Id: /mirror/perl/GunghoX-FollowLinks/trunk/lib/GunghoX/FollowLinks/Rule/Deny.pm 8894 2007-11-10T15:15:07.379456Z daisuke $ # # Copyright (c) 2007 Daisuke Maki <daisuke@endeworks.jp> # All rights reserved. package GunghoX::FollowLinks::Rule::Deny; use strict; use warnings; use base qw(GunghoX::FollowLinks::Rule); sub apply { &GunghoX::FollowLinks::Rule::FOLLOW_DENY } 1; __END__