URI::Heuristic (3)
Leading comments
Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35) Standard preamble: ========================================================================
NAME
URI::Heuristic - Expand URI using heuristicsSYNOPSIS
use URI::Heuristic qw(uf_uristr); $u = uf_uristr("perl"); # www.perl.com $u = uf_uristr("www.sol.no/sol"); # www.sol.no/sol $u = uf_uristr("aas"); # www.aas.no $u = uf_uristr("ftp: ftp.funet.fi"); # ftp://ftp.funet.fi $u = uf_uristr("/etc/passwd"); # file:/etc/passwd
DESCRIPTION
This module provides functions that expand strings into real absolute URIs using some built-in heuristics. Strings that already represent absolute URIs (i.e. that start with a "scheme:" part) are never modified and are returned unchanged. The main use of these functions is to allow abbreviated URIs similar to what many web browsers allow for URIs typed in by the user.The following functions are provided:
- uf_uristr($str)
-
Tries to make the argument string
into a proper absolute URIstring. The ``uf_'' prefix stands for ``User Friendly''. Under MacOS, it assumes that any string with a commonURLscheme (http, ftp, etc.) is aURLrather than a local path. So don't name your volumes after commonURLschemes and expect uf_uristr() to construct valid file:URL's on those volumes for you, because it won't.
- uf_uri($str)
- Works the same way as uf_uristr() but returns a "URI" object.
ENVIRONMENT
If the hostname portion of aURI
does not contain any dots, then
certain qualified guesses are made. These guesses are governed by
the following environment variables:
- COUNTRY
-
The two-letter country code (ISO 3166) for your location. If the domain name of your host ends with two letters, then it is taken to be the default country. See also Locale::Country.
- HTTP_ACCEPT_LANGUAGE, LC_ALL, LANG
-
If COUNTRYis not set, these standard environment variables are examined and country (not language) information possibly found in them is used as the default country.
- URL_GUESS_PATTERN
-
Contains a space-separated list of URLpatterns to try. The string ``ACME''is for some reason used as a placeholder for the host name in theURLprovided. Example:
URL_GUESS_PATTERN="www.ACME.no www.ACME.se www.ACME.com" export URL_GUESS_PATTERN
Specifying
URL_GUESS_PATTERNdisables any guessing rules based on country. An emptyURL_GUESS_PATTERNdisables any guessing that involves host name lookups.
COPYRIGHT
Copyright 1997-1998, Gisle AasThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.