home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _ecbebd8d29ae2170ab3e12f61933f4b8 < prev    next >
Text File  |  2000-03-23  |  5KB  |  116 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>uf_uristr - Expand URI using heuristics</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> uf_uristr - Expand URI using heuristics</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#environment">ENVIRONMENT</A></LI>
  26.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  27. </UL>
  28. <!-- INDEX END -->
  29.  
  30. <HR>
  31. <P>
  32. <H1><A NAME="name">NAME</A></H1>
  33. <P>uf_uristr - Expand URI using heuristics</P>
  34. <P>
  35. <HR>
  36. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  37. <UL>
  38. <LI>Linux</LI>
  39. <LI>Solaris</LI>
  40. <LI>Windows</LI>
  41. </UL>
  42. <HR>
  43. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  44. <PRE>
  45.  use URI::Heuristic qw(uf_uristr);
  46.  $u = uf_uristr("perl");             # <A HREF="http://www.perl.com">http://www.perl.com</A>
  47.  $u = uf_uristr("www.sol.no/sol");   # <A HREF="http://www.sol.no/sol">http://www.sol.no/sol</A>
  48.  $u = uf_uristr("aas");              # <A HREF="http://www.aas.no">http://www.aas.no</A>
  49.  $u = uf_uristr("ftp.funet.fi");     # <A HREF="ftp://ftp.funet.fi">ftp://ftp.funet.fi</A>
  50.  $u = uf_uristr("/etc/passwd");      # <A HREF="file:/etc/passwd">file:/etc/passwd</A></PRE>
  51. <P>
  52. <HR>
  53. <H1><A NAME="description">DESCRIPTION</A></H1>
  54. <P>This module provides functions that expand strings into real absolute
  55. URIs using some builtin heuristics.  Strings that already represent
  56. absolute URIs (i.e. start with a <CODE>scheme:</CODE> part) are never modified
  57. and are returned unchanged.  The main use of these functions are to
  58. allow abbreviated URIs similar to what many web browsers allow for URIs
  59. typed in by the user.</P>
  60. <P>The following functions are provided:</P>
  61. <DL>
  62. <DT><STRONG><A NAME="item_uf_uristr"><CODE>uf_uristr($str)</CODE></A></STRONG><BR>
  63. <DD>
  64. The <A HREF="#item_uf_uristr"><CODE>uf_uristr()</CODE></A> function will try to make the string passed as argument 
  65. into a proper absolute URI string.  The ``uf_'' prefix stands for ``User 
  66. Friendly''.  Under MacOS, it assumes that any string with a common URL 
  67. scheme (http, ftp, etc.) is a URL rather than a local path.  So don't name 
  68. your volumes after common URL schemes and expect <A HREF="#item_uf_uristr"><CODE>uf_uristr()</CODE></A> to construct 
  69. valid file: URL's on those volumes for you, because it won't.
  70. <P></P>
  71. <DT><STRONG><A NAME="item_uf_uri"><CODE>uf_uri($str)</CODE></A></STRONG><BR>
  72. <DD>
  73. This functions work the same way as <A HREF="#item_uf_uristr"><CODE>uf_uristr()</CODE></A> but it will
  74. return a <CODE>URI</CODE> object.
  75. <P></P></DL>
  76. <P>
  77. <HR>
  78. <H1><A NAME="environment">ENVIRONMENT</A></H1>
  79. <P>If the hostname portion of a URI does not contain any dots, then
  80. certain qualified guesses will be made.  These guesses are governed be
  81. the following two environment variables.</P>
  82. <DL>
  83. <DT><STRONG><A NAME="item_COUNTRY">COUNTRY</A></STRONG><BR>
  84. <DD>
  85. This is the two letter country code (ISO 3166) for your location.  If
  86. the domain name of your host ends with two letters, then it is taken
  87. to be the default country. See also <A HREF="../../../site/lib/Locale/Country.html">the Locale::Country manpage</A>.
  88. <P></P>
  89. <DT><STRONG><A NAME="item_URL_GUESS_PATTERN">URL_GUESS_PATTERN</A></STRONG><BR>
  90. <DD>
  91. Contain a space separated list of URL patterns to try.  The string
  92. ``ACME'' is for some reason used as a placeholder for the host name in
  93. the URL provided.  Example:
  94. <PRE>
  95.  URL_GUESS_PATTERN="www.ACME.no www.ACME.se www.ACME.com"
  96.  export URL_GUESS_PATTERN</PRE>
  97. <P>Specifying URL_GUESS_PATTERN disables any guessing rules based on
  98. country.  An empty URL_GUESS_PATTERN disables any guessing that
  99. involves host name lookups.</P>
  100. <P></P></DL>
  101. <P>
  102. <HR>
  103. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  104. <P>Copyright 1997-1998, Gisle Aas</P>
  105. <P>This library is free software; you can redistribute it and/or
  106. modify it under the same terms as Perl itself.</P>
  107. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  108. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  109. <STRONG><P CLASS=block> uf_uristr - Expand URI using heuristics</P></STRONG>
  110. </TD></TR>
  111. </TABLE>
  112.  
  113. </BODY>
  114.  
  115. </HTML>
  116.