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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>URI - Uniform Resource Identifiers</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> URI - Uniform Resource Identifiers</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="#constructors">CONSTRUCTORS</A></LI>
  26.     <LI><A HREF="#common methods">COMMON METHODS</A></LI>
  27.     <LI><A HREF="#generic methods">GENERIC METHODS</A></LI>
  28.     <LI><A HREF="#server methods">SERVER METHODS</A></LI>
  29.     <LI><A HREF="#scheme specific support">SCHEME SPECIFIC SUPPORT</A></LI>
  30.     <LI><A HREF="#configuration variables">CONFIGURATION VARIABLES</A></LI>
  31.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  32.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  33.     <LI><A HREF="#authors / acknowledgments">AUTHORS / ACKNOWLEDGMENTS</A></LI>
  34. </UL>
  35. <!-- INDEX END -->
  36.  
  37. <HR>
  38. <P>
  39. <H1><A NAME="name">NAME</A></H1>
  40. <P>URI - Uniform Resource Identifiers (absolute and relative)</P>
  41. <P>
  42. <HR>
  43. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  44. <UL>
  45. <LI>Linux</LI>
  46. <LI>Solaris</LI>
  47. <LI>Windows</LI>
  48. </UL>
  49. <HR>
  50. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  51. <PRE>
  52.  $u1 = URI->new("<A HREF="http://www.perl.com"">http://www.perl.com"</A>;);
  53.  $u2 = URI->new("foo", "http");
  54.  $u3 = $u2->abs($u1);
  55.  $u4 = $u3->clone;
  56.  $u5 = URI->new("<A HREF="HTTP://WWW.perl.com:80"">HTTP://WWW.perl.com:80"</A>;)->canonical;</PRE>
  57. <PRE>
  58.  $str = $u->as_string;
  59.  $str = "$u";</PRE>
  60. <PRE>
  61.  $scheme = $u->scheme;
  62.  $opaque = $u->opaque;
  63.  $path   = $u->path;
  64.  $frag   = $u->fragment;</PRE>
  65. <PRE>
  66.  $u->scheme("ftp");
  67.  $u->host("ftp.perl.com");
  68.  $u->path("cpan/");</PRE>
  69. <P>
  70. <HR>
  71. <H1><A NAME="description">DESCRIPTION</A></H1>
  72. <P>This module implements the <CODE>URI</CODE> class.  Objects of this class
  73. represent ``Uniform Resource Identifier references'' as specified in RFC
  74. 2396.</P>
  75. <P>A Uniform Resource Identifier is a compact string of characters for
  76. identifying an abstract or physical resource.  A Uniform Resource
  77. Identifier can be further classified either a Uniform Resource Locator
  78. (URL) or a Uniform Resource Name (URN).  The distinction between URL
  79. and URN does not matter to the <CODE>URI</CODE> class interface. A
  80. ``URI-reference'' is a URI that may have additional information attached
  81. in the form of a fragment identifier.</P>
  82. <P>An absolute URI reference consists of three parts.  A <EM>scheme</EM>, a
  83. <EM>scheme specific part</EM> and a <EM>fragment</EM> identifier.  A subset of URI
  84. references share a common syntax for hierarchical namespaces.  For
  85. these the scheme specific part is further broken down into
  86. <EM>authority</EM>, <EM>path</EM> and <EM>query</EM> components.  These URI can also
  87. take the form of relative URI references, where the scheme (and
  88. usually also the authority) component is missing, but implied by the
  89. context of the URI reference.  The three forms of URI reference
  90. syntax are summarized as follows:</P>
  91. <PRE>
  92.   <scheme>:<scheme-specific-part>#<fragment>
  93.   <scheme>://<authority><path>?<query>#<fragment>
  94.   <path>?<query>#<fragment></PRE>
  95. <P>The components that a URI reference can be divided into depend on the
  96. <EM>scheme</EM>.  The <CODE>URI</CODE> class provides methods to get and set the
  97. individual components.  The methods available for a specific
  98. <CODE>URI</CODE> object depend on the scheme.</P>
  99. <P>
  100. <HR>
  101. <H1><A NAME="constructors">CONSTRUCTORS</A></H1>
  102. <P>The following methods construct new <CODE>URI</CODE> objects:</P>
  103. <DL>
  104. <DT><STRONG><A NAME="item_new">$uri = URI->new( $str, [$scheme] )</A></STRONG><BR>
  105. <DD>
  106. This class method constructs a new URI object.  The string
  107. representation of a URI is given as argument together with an optional
  108. scheme specification.  Common URI wrappers like ``'' and <>, as well as
  109. leading and trailing white space, are automatically removed from
  110. the $str argument before it is processed further.
  111. <P>The constructor determines the scheme, maps this to an appropriate
  112. URI subclass, constructs a new object of that class and returns it.</P>
  113. <P>The $scheme argument is only used when $str is a
  114. relative URI.  It can either be a simple string that
  115. denotes the scheme, a string containing an absolute URI reference or
  116. an absolute <CODE>URI</CODE> object.  If no $scheme is specified for a relative
  117. URI $str, then $str is simply treated as a generic URI (no scheme
  118. specific methods available).</P>
  119. <P>The set of characters available for building URI references is
  120. restricted (see <A HREF="../../site/lib/URI/Escape.html">the URI::Escape manpage</A>).  Characters outside this set are
  121. automatically escaped by the URI constructor.</P>
  122. <P></P>
  123. <DT><STRONG><A NAME="item_new_abs">$uri = URI->new_abs( $str, $base_uri )</A></STRONG><BR>
  124. <DD>
  125. This constructs a new absolute URI object.  The $str argument can
  126. denote a relative or absolute URI.  If relative, then it will be
  127. absolutized using $base_uri as base. The $base_uri must be an absolute
  128. URI.
  129. <P></P>
  130. <DT><STRONG>$uri = URI::file->new( $filename, [$os] )</STRONG><BR>
  131. <DD>
  132. This constructs a new <EM>file</EM> URI from a file name.  See <A HREF="../../site/lib/URI/file.html">the URI::file manpage</A>.
  133. <P></P>
  134. <DT><STRONG>$uri = URI::file->new_abs( $filename, [$os] )</STRONG><BR>
  135. <DD>
  136. This constructs a new absolute <EM>file</EM> URI from a file name.  See
  137. <A HREF="../../site/lib/URI/file.html">the URI::file manpage</A>.
  138. <P></P>
  139. <DT><STRONG><A NAME="item_cwd">$uri = URI::file->cwd</A></STRONG><BR>
  140. <DD>
  141. This returns the current working directory as a <EM>file</EM> URI.  See
  142. <A HREF="../../site/lib/URI/file.html">the URI::file manpage</A>.
  143. <P></P>
  144. <DT><STRONG><A NAME="item_clone">$uri->clone</A></STRONG><BR>
  145. <DD>
  146. This method returns a copy of the $uri.
  147. <P></P></DL>
  148. <P>
  149. <HR>
  150. <H1><A NAME="common methods">COMMON METHODS</A></H1>
  151. <P>The methods described in this section are available for all <CODE>URI</CODE>
  152. objects.</P>
  153. <P>Methods that give access to components of a URI will always return the
  154. old value of the component.  The value returned will be <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> if the
  155. component was not present.  There is generally a difference between a
  156. component that is empty (represented as <CODE>""</CODE>) and a component that is
  157. missing (represented as <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>).  If an accessor method is given an
  158. argument it will update the corresponding component in addition to
  159. returning the old value of the component.  Passing an undefined
  160. argument will remove the component (if possible).  The description of
  161. the various accessor methods will tell if the component is passed as
  162. an escaped or an unescaped string.  Components that can be futher
  163. divided into sub-parts are usually passed escaped, as unescaping might
  164. change its semantics.</P>
  165. <P>The common methods available for all URI are:</P>
  166. <DL>
  167. <DT><STRONG><A NAME="item_scheme">$uri->scheme( [$new_scheme] )</A></STRONG><BR>
  168. <DD>
  169. This method sets and returns the scheme part of the $uri.  If the $uri is
  170. relative, then $uri->scheme returns <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>.  If called with an
  171. argument, it will update the scheme of $uri, possibly changing the
  172. class of $uri, and return the old scheme value.  The method croaks
  173. if the new scheme name is illegal; scheme names must begin with a
  174. letter and must consist of only US-ASCII letters, numbers, and a few
  175. special marks: ``.'', ``+'', ``-''.  This restriction effectively means
  176. that scheme have to be passed unescaped.  Passing an undefined
  177. argument to the scheme method will make the URI relative (if possible).
  178. <P>Letter case does not matter for scheme names.  The string
  179. returned by $uri->scheme is always lowercase.  If you want the scheme
  180. just as it was written in the URI in its original case,
  181. you can use the $uri->_scheme method instead.</P>
  182. <P></P>
  183. <DT><STRONG><A NAME="item_opaque">$uri->opaque( [$new_opaque] )</A></STRONG><BR>
  184. <DD>
  185. This method sets and returns the scheme specific part of the $uri 
  186. (everything between the scheme and the fragment)
  187. as an escaped string.
  188. <P></P>
  189. <DT><STRONG><A NAME="item_path">$uri->path( [$new_path] )</A></STRONG><BR>
  190. <DD>
  191. This method sets and returns the same value as $uri->opaque unless the URI
  192. supports the generic syntax for hierarchical namespaces.
  193. In that case the generic method is overridden to set and return
  194. the part of the URI between the <EM>host name</EM> and the <EM>fragment</EM>.
  195. <P></P>
  196. <DT><STRONG><A NAME="item_fragment">$uri->fragment( [$new_frag] )</A></STRONG><BR>
  197. <DD>
  198. This method returns the fragment identifier of a URI reference
  199. as an escaped string.
  200. <P></P>
  201. <DT><STRONG><A NAME="item_as_string">$uri->as_string</A></STRONG><BR>
  202. <DD>
  203. This method returns a URI object to a plain string.  URI objects are
  204. also converted to plain strings automatically by overloading.  This
  205. means that $uri objects can be used as plain strings in most Perl
  206. constructs.
  207. <P></P>
  208. <DT><STRONG><A NAME="item_canonical">$uri->canonical</A></STRONG><BR>
  209. <DD>
  210. This method will return a normalized version of the URI.  The rules
  211. for normalization are scheme dependent.  It usually involves
  212. lowercasing of the scheme and the Internet host name components,
  213. removing the explicit port specification if it matches the default port,
  214. uppercasing all escape sequences, and unescaping octets that can be
  215. better represented as plain characters.
  216. <P>For efficiency reasons, if the $uri already was in normalized form,
  217. then a reference to it is returned instead of a copy.</P>
  218. <P></P>
  219. <DT><STRONG><A NAME="item_eq">$uri->eq( $other_uri )</A></STRONG><BR>
  220. <DD>
  221. <DT><STRONG>URI::eq( $first_uri, $other_uri )</STRONG><BR>
  222. <DD>
  223. This method tests whether two URI references are equal.  URI references
  224. that normalize to the same string are considered equal.  The method
  225. can also be used as a plain function which can also test two string
  226. arguments.
  227. <P>If you need to test whether two <CODE>URI</CODE> object references denote the
  228. same object, use the '==' operator.</P>
  229. <P></P>
  230. <DT><STRONG><A NAME="item_abs">$uri->abs( $base_uri )</A></STRONG><BR>
  231. <DD>
  232. This method returns an absolute URI reference.  If $uri already is
  233. absolute, then a reference to it is simply returned.  If the $uri
  234. is relative, then a new absolute URI is constructed by combining the
  235. $uri and the $base_uri, and returned.
  236. <P></P>
  237. <DT><STRONG><A NAME="item_rel">$uri->rel( $base_uri )</A></STRONG><BR>
  238. <DD>
  239. This method returns a relative URI reference if it is possible to
  240. make one that denotes the same resource relative to $base_uri.
  241. If not, then $uri is simply returned.
  242. <P></P></DL>
  243. <P>
  244. <HR>
  245. <H1><A NAME="generic methods">GENERIC METHODS</A></H1>
  246. <P>The following methods are available to schemes that use the
  247. common/generic syntax for hierarchical namespaces.  The description of
  248. schemes below will tell which one these are.  Unknown schemes are
  249. assumed to support the generic syntax, and therefore the following
  250. methods:</P>
  251. <DL>
  252. <DT><STRONG><A NAME="item_authority">$uri->authority( [$new_authority] )</A></STRONG><BR>
  253. <DD>
  254. This method sets and returns the escaped authority component
  255. of the $uri.
  256. <P></P>
  257. <DT><STRONG>$uri->path( [$new_path] )</STRONG><BR>
  258. <DD>
  259. This method sets and returns the escaped path component of
  260. the $uri (the part between the host name and the query or fragment).
  261. The path will never be undefined, but it can be the empty string.
  262. <P></P>
  263. <DT><STRONG><A NAME="item_path_query">$uri->path_query( [$new_path_query] )</A></STRONG><BR>
  264. <DD>
  265. This method sets and returns the escaped path and query
  266. components as a single entity.  The path and the query are
  267. separated by a ``?'' character, but the query can itself contain ``?''.
  268. <P></P>
  269. <DT><STRONG><A NAME="item_path_segments">$uri->path_segments( [$segment,...] )</A></STRONG><BR>
  270. <DD>
  271. This method sets and returns the path.  In scalar context it returns
  272. the same value as $uri->path.  In list context it will return the
  273. unescaped path segments that make up the path.  Path segments that
  274. have parameters are returned as an anonymous array.  The first element
  275. is the unescaped path segment proper.  Subsequent elements are escaped
  276. parameter strings.  Such an anonymous array uses overloading so it can
  277. be treated as a string too, but this string does not include the
  278. parameters.
  279. <P></P>
  280. <DT><STRONG><A NAME="item_query">$uri->query( [$new_query] )</A></STRONG><BR>
  281. <DD>
  282. This method sets and returns the escaped query component of
  283. the $uri.
  284. <P></P>
  285. <DT><STRONG><A NAME="item_query_form">$uri->query_form( [$key => $value,...] )</A></STRONG><BR>
  286. <DD>
  287. This method sets and returns query components that use the
  288. <EM>application/x-www-form-urlencoded</EM> format.  Key/value pairs are
  289. separated by ``&'' and the key is separated from the value with a ``=''
  290. character.
  291. <P></P>
  292. <DT><STRONG><A NAME="item_query_keywords">$uri->query_keywords( [$keywords,...] )</A></STRONG><BR>
  293. <DD>
  294. This method sets and returns query components that use the
  295. keywords separated by ``+'' format.
  296. <P></P></DL>
  297. <P>
  298. <HR>
  299. <H1><A NAME="server methods">SERVER METHODS</A></H1>
  300. <P>Schemes where the <EM>authority</EM> component denotes a Internet host will
  301. have the following methods available in addition to the generic
  302. methods.</P>
  303. <DL>
  304. <DT><STRONG><A NAME="item_userinfo">$uri->userinfo( [$new_userinfo] )</A></STRONG><BR>
  305. <DD>
  306. This method sets and returns the escaped userinfo part of the
  307. authority componenent.
  308. <P>For some schemes this will be a user name and a password separated by
  309. a colon.  This practice is not recommended. Embedding passwords in
  310. clear text (such as URI) has proven to be a security risk in almost
  311. every case where it has been used.</P>
  312. <P></P>
  313. <DT><STRONG><A NAME="item_host">$uri->host( [$new_host] )</A></STRONG><BR>
  314. <DD>
  315. This method sets and returns the unescaped hostname.
  316. <P>If the $new_host string ends with a colon and a number, then this
  317. number will also set the port.</P>
  318. <P></P>
  319. <DT><STRONG><A NAME="item_port">$uri->port( [ $new_port] )</A></STRONG><BR>
  320. <DD>
  321. This method sets and returns the port.  The port is simple integer
  322. that should be greater than 0.
  323. <P>If no explicit port is specified in the URI, then the default port of
  324. the URI scheme is returned. If you don't want the default port
  325. substituted, then you can use the $uri->_port method instead.</P>
  326. <P></P>
  327. <DT><STRONG><A NAME="item_host_port">$uri->host_port( [ $new_host_port ] )</A></STRONG><BR>
  328. <DD>
  329. This method sets and returns the host and port as a single
  330. unit.  The returned value will include a port, even if it matches the
  331. default port.  The host part and the port part is separated with a
  332. colon; ``:''.
  333. <P></P>
  334. <DT><STRONG><A NAME="item_default_port">$uri->default_port</A></STRONG><BR>
  335. <DD>
  336. This method returns the default port of the URI scheme that $uri
  337. belongs to.  For <EM>http</EM> this will be the number 80, for <EM>ftp</EM> this
  338. will be the number 21, etc.  The default port for a scheme can not be
  339. changed.
  340. <P></P></DL>
  341. <P>
  342. <HR>
  343. <H1><A NAME="scheme specific support">SCHEME SPECIFIC SUPPORT</A></H1>
  344. <P>The following URI schemes are specifically supported.  For <CODE>URI</CODE>
  345. objects not belonging to one of these you can only use the common and
  346. generic methods.</P>
  347. <DL>
  348. <DT><STRONG><A NAME="item_data%3A"><STRONG>data</STRONG>:</A></STRONG><BR>
  349. <DD>
  350. The <EM>data</EM> URI scheme is specified in RFC 2397.  It allows inclusion
  351. of small data items as ``immediate'' data, as if it had been included
  352. externally.
  353. <P><CODE>URI</CODE> objects belonging to the data scheme support the common methods
  354. and two new methods to access their scheme specific components;
  355. $uri->media_type and $uri->data.  See <A HREF="../../site/lib/URI/data.html">the URI::data manpage</A> for details.</P>
  356. <P></P>
  357. <DT><STRONG><A NAME="item_file%3A"><STRONG>file</STRONG>:</A></STRONG><BR>
  358. <DD>
  359. An old specification of the <EM>file</EM> URI scheme is found in RFC 1738.
  360. A new RFC 2396 based specification in not available yet, but file URI
  361. references are in common use.
  362. <P><CODE>URI</CODE> objects belonging to the file scheme support the common and
  363. generic methods.  In addition they provide two methods to map file URI
  364. back to local file names; $uri->file and $uri->dir.  See <A HREF="../../site/lib/URI/file.html">the URI::file manpage</A>
  365. for details.</P>
  366. <P></P>
  367. <DT><STRONG><A NAME="item_ftp%3A"><STRONG>ftp</STRONG>:</A></STRONG><BR>
  368. <DD>
  369. An old specification of the <EM>ftp</EM> URI scheme is found in RFC 1738.  A
  370. new RFC 2396 based specification in not available yet, but ftp URI
  371. references are in common use.
  372. <P><CODE>URI</CODE> objects belonging to the ftp scheme support the common,
  373. generic and server methods.  In addition they provide two methods to
  374. access the userinfo sub-components: $uri->user and $uri->password.</P>
  375. <P></P>
  376. <DT><STRONG><A NAME="item_gopher%3A"><STRONG>gopher</STRONG>:</A></STRONG><BR>
  377. <DD>
  378. The <EM>gopher</EM> URI scheme is specified in
  379. <draft-murali-url-gopher-1996-12-04> and will hopefully be available
  380. as a RFC 2396 based specification.
  381. <P><CODE>URI</CODE> objects belonging to the gopher scheme support the common,
  382. generic and server methods. In addition they support some methods to
  383. access gopher specific path components: $uri->gopher_type,
  384. $uri->selector, $uri->search, $uri->string.</P>
  385. <P></P>
  386. <DT><STRONG><A NAME="item_http%3A"><STRONG>http</STRONG>:</A></STRONG><BR>
  387. <DD>
  388. The <EM>http</EM> URI scheme is specified in
  389. <draft-ietf-http-v11-spec-rev-06> (which will become an RFC soon).
  390. The scheme is used to reference resources hosted by HTTP servers.
  391. <P><CODE>URI</CODE> objects belonging to the http scheme support the common,
  392. generic and server methods.</P>
  393. <P></P>
  394. <DT><STRONG><A NAME="item_https%3A"><STRONG>https</STRONG>:</A></STRONG><BR>
  395. <DD>
  396. The <EM>https</EM> URI scheme is a Netscape invention which is commonly
  397. implemented.  The scheme is used to reference HTTP servers through SSL
  398. connections.  It's syntax is the same as http, but the default
  399. port is different.
  400. <P></P>
  401. <DT><STRONG><A NAME="item_ldap%3A"><STRONG>ldap</STRONG>:</A></STRONG><BR>
  402. <DD>
  403. The <EM>ldap</EM> URI scheme is specified in RFC 2255.  LDAP is the
  404. Lightweight Directory Access Protocol.  A ldap URI describes an LDAP
  405. search operation to perform to retrieve information from an LDAP
  406. directory.
  407. <P><CODE>URI</CODE> objects belonging to the ldap scheme support the common,
  408. generic and server methods as well as specific ldap methods; $uri->dn,
  409. $uri->attributes, $uri->scope, $uri->filter, $uri->extensions.  See
  410. <A HREF="../../site/lib/URI/ldap.html">the URI::ldap manpage</A> for details.</P>
  411. <P></P>
  412. <DT><STRONG><A NAME="item_mailto%3A"><STRONG>mailto</STRONG>:</A></STRONG><BR>
  413. <DD>
  414. The <EM>mailto</EM> URI scheme is specified in RFC 2368.  The scheme was
  415. originally used to designate the Internet mailing address of an
  416. individual or service.  It has (in RFC 2368) been extended to allow
  417. setting of other mail header fields and the message body.
  418. <P><CODE>URI</CODE> objects belonging to the mailto scheme support the common
  419. methods and the generic query methods.  In addition they support the
  420. following mailto specific methods: $uri->to, $uri->headers.</P>
  421. <P></P>
  422. <DT><STRONG><A NAME="item_news%3A"><STRONG>news</STRONG>:</A></STRONG><BR>
  423. <DD>
  424. The <EM>news</EM>, <EM>nntp</EM> and <EM>snews</EM> URI schemes are specified in
  425. <draft-gilman-news-url-01> and will hopefully be available as a RFC
  426. 2396 based specification soon.
  427. <P><CODE>URI</CODE> objects belonging to the news scheme support the common,
  428. generic and server methods.  In addition they provide some methods to
  429. access the path: $uri->group and $uri->message.</P>
  430. <P></P>
  431. <DT><STRONG><A NAME="item_nntp%3A"><STRONG>nntp</STRONG>:</A></STRONG><BR>
  432. <DD>
  433. See <EM>news</EM> scheme.
  434. <P></P>
  435. <DT><STRONG><A NAME="item_pop%3A"><STRONG>pop</STRONG>:</A></STRONG><BR>
  436. <DD>
  437. The <EM>pop</EM> URI scheme is specified in RFC 2384. The scheme is used to
  438. reference a POP3 mailbox.
  439. <P><CODE>URI</CODE> objects belonging to the pop scheme support the common, generic
  440. and server methods.  In addition they provide two methods to access the
  441. userinfo components: $uri->user and $uri->auth</P>
  442. <P></P>
  443. <DT><STRONG><A NAME="item_rlogin%3A"><STRONG>rlogin</STRONG>:</A></STRONG><BR>
  444. <DD>
  445. An old speficication of the <EM>rlogin</EM> URI scheme is found in RFC
  446. 1738. <CODE>URI</CODE> objects belonging to the rlogin scheme support the
  447. common, generic and server methods.
  448. <P></P>
  449. <DT><STRONG><A NAME="item_snews%3A"><STRONG>snews</STRONG>:</A></STRONG><BR>
  450. <DD>
  451. See <EM>news</EM> scheme.  It's syntax is the same as news, but the default
  452. port is different.
  453. <P></P>
  454. <DT><STRONG><A NAME="item_telnet%3A"><STRONG>telnet</STRONG>:</A></STRONG><BR>
  455. <DD>
  456. An old speficication of the <EM>telnet</EM> URI scheme is found in RFC
  457. 1738. <CODE>URI</CODE> objects belonging to the telnet scheme support the
  458. common, generic and server methods.
  459. <P></P></DL>
  460. <P>
  461. <HR>
  462. <H1><A NAME="configuration variables">CONFIGURATION VARIABLES</A></H1>
  463. <P>The following configuration variables influence how the class and it's
  464. methods behave:</P>
  465. <DL>
  466. <DT><STRONG><A NAME="item_%24URI%3A%3AABS_ALLOW_RELATIVE_SCHEME">$URI::ABS_ALLOW_RELATIVE_SCHEME</A></STRONG><BR>
  467. <DD>
  468. Some older parsers used to allow the scheme name to be present in the
  469. relative URL if it was the same as the base URL scheme.  RFC 2396 says
  470. that this should be avoided, but you can enable this old behaviour by
  471. setting the $URI::ABS_ALLOW_RELATIVE_SCHEME variable to a TRUE value.
  472. The difference is demonstrated by the following examples:
  473. <PRE>
  474.   URI->new("<A HREF="http:foo"">http:foo"</A>;)->abs("<A HREF="http://host/a/b"">http://host/a/b"</A>;)
  475.       ==>  "<A HREF="http:foo"">http:foo"</A>;</PRE>
  476. <PRE>
  477.   local $URI::ABS_ALLOW_RELATIVE_SCHEME = 1;
  478.   URI->new("<A HREF="http:foo"">http:foo"</A>;)->abs("<A HREF="http://host/a/b"">http://host/a/b"</A>;)
  479.       ==>  "<A HREF="http:/host/a/foo"">http:/host/a/foo"</A>;</PRE>
  480. <P></P>
  481. <DT><STRONG><A NAME="item_%24URI%3A%3AABS_REMOTE_LEADING_DOTS">$URI::ABS_REMOTE_LEADING_DOTS</A></STRONG><BR>
  482. <DD>
  483. You can also have the <A HREF="#item_abs"><CODE>abs()</CODE></A> method ignore excess ``..''
  484. segments in the relative URI by setting $URI::ABS_REMOTE_LEADING_DOTS
  485. to a TRUE value.  The difference is demonstrated by the following
  486. examples:
  487. <PRE>
  488.   URI->new("../../../foo")->abs("<A HREF="http://host/a/b"">http://host/a/b"</A>;)
  489.       ==> "<A HREF="http://host/../../foo"">http://host/../../foo"</A>;</PRE>
  490. <PRE>
  491.   local $URI::URL::ABS_REMOTE_LEADING_DOTS = 1;
  492.   URI->new("../../../foo")->abs("<A HREF="http://host/a/b"">http://host/a/b"</A>;)
  493.       ==> "<A HREF="http://host/foo"">http://host/foo"</A>;</PRE>
  494. <P></P></DL>
  495. <P>
  496. <HR>
  497. <H1><A NAME="see also">SEE ALSO</A></H1>
  498. <P><A HREF="../../site/lib/URI/file.html">the URI::file manpage</A>, <A HREF="../../site/lib/URI/WithBase.html">the URI::WithBase manpage</A>, <A HREF="../../site/lib/URI/Escape.html">the URI::Escape manpage</A>, <A HREF="../../site/lib/URI/Heuristic.html">the URI::Heuristic manpage</A></P>
  499. <P>RFC 2396: ``Uniform Resource Identifiers (URI): Generic Syntax'',
  500. Berners-Lee, Fielding, Masinter, August 1998.</P>
  501. <P>
  502. <HR>
  503. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  504. <P>Copyright 1995-1999 Gisle Aas.</P>
  505. <P>Copyright 1995 Martijn Koster.</P>
  506. <P>This program is free software; you can redistribute it and/or modify
  507. it under the same terms as Perl itself.</P>
  508. <P>
  509. <HR>
  510. <H1><A NAME="authors / acknowledgments">AUTHORS / ACKNOWLEDGMENTS</A></H1>
  511. <P>This module is based on the <CODE>URI::URL</CODE> module, which in turn was
  512. (distantly) based on the <CODE>wwwurl.pl</CODE> code in the libwww-perl for
  513. perl4 developed by Roy Fielding, as part of the Arcadia project at the
  514. University of California, Irvine, with contributions from Brooks
  515. Cutter.</P>
  516. <P><CODE>URI::URL</CODE> was developed by Gisle Aas, Tim Bunce, Roy Fielding and
  517. Martijn Koster with input from other people on the libwww-perl mailing
  518. list.</P>
  519. <P><CODE>URI</CODE> and related subclasses was developed by Gisle Aas.</P>
  520. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  521. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  522. <STRONG><P CLASS=block> URI - Uniform Resource Identifiers</P></STRONG>
  523. </TD></TR>
  524. </TABLE>
  525.  
  526. </BODY>
  527.  
  528. </HTML>
  529.