SYNOPSIS

    use Regexp::Common qw /URI/;

    while (<>) {
        /$RE{URI}{gopher}/       and  print "Contains a gopher URI.\n";
    }

DESCRIPTION

Gopher URIs are poorly defined. Originally, \s-1RFC\s0 1738 defined gopher URIs, but they were later redefined in an internet draft. One that was expired in June 1997.

The internet draft for gopher URIs defines them as follows:

"gopher:" "//" host [ ":" port ] "/" gopher-type selector [ "%09" search [ "%09" gopherplus_string ]]

Unfortunally, a selector is defined in such a way that characters may be escaped using the \s-1URI\s0 escape mechanism. This includes tabs, which escaped are %09. Hence, the syntax cannot distinguish between a \s-1URI\s0 that has both a selector and a search part, and an \s-1URI\s0 where the selector includes an escaped tab. (The text of the draft forbids tabs to be present in the selector though).

$RE{URI}{gopher} follows the defined syntax. To disallow escaped tabs in the selector and search parts, use $RE{URI}{gopher}{-notab}.

There are other differences between the text and the given syntax. According to the text, selector strings cannot have tabs, linefeeds or carriage returns in them. The text also allows the entire gopher-path, (the part after the slash following the hostport) to be empty; if this is empty the slash may be omitted as well. However, this isn't reflected in the syntax.

Under \*(C`{-keep}\*(C', the following are returned: The entire \s-1URI\s0. The scheme. The host (name or address). The port (if any). The \*(L"gopher-path\*(R", the part after the / following the host and port. The gopher-type. The selector. (When no \*(C`{-notab}\*(C' is used, this includes the search and gopherplus_string, including the separating escaped tabs). The search, if given. (Only when \*(C`{-notab}\*(C' is given). The gopherplus_string, if given. (Only when \*(C`{-notab}\*(C' is given).

head1 \s-1REFERENCES\s0

[\s-1RFC\s0 1738]

Berners-Lee, Tim, Masinter, L., McCahill, M.: Uniform Resource Locators (\s-1URL\s0). December 1994.

[\s-1RFC\s0 1808]

Fielding, R.: Relative Uniform Resource Locators (\s-1URL\s0). June 1995.

[\s-1GOPHER\s0 \s-1URL\s0]

Krishnan, Murali R., Casey, James: \*(L"A Gopher \s-1URL\s0 Format\*(R". Expired Internet draft draft-murali-url-gopher. December 1996.

RELATED TO Regexp::Common::URI::gopher…

Regexp::Common::URI for other supported URIs.

AUTHOR

Damian Conway ([email protected])

MAINTAINANCE

This package is maintained by Abigail ([email protected]).

BUGS AND IRRITATIONS

Bound to be plenty.

LICENSE and COPYRIGHT

This software is Copyright (c) 2001 - 2009, Damian Conway and Abigail.

This module is free software, and maybe used under any of the following licenses:

1) The Perl Artistic License. See the file COPYRIGHT.AL. 2) The Perl Artistic License 2.0. See the file COPYRIGHT.AL2. 3) The BSD Licence. See the file COPYRIGHT.BSD. 4) The MIT Licence. See the file COPYRIGHT.MIT.