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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>HTTP::Headers - Class encapsulating HTTP Message headers</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> HTTP::Headers - Class encapsulating HTTP Message headers</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="#convenience methods">CONVENIENCE METHODS</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>HTTP::Headers - Class encapsulating HTTP Message headers</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.  require HTTP::Headers;
  46.  $h = new HTTP::Headers;</PRE>
  47. <P>
  48. <HR>
  49. <H1><A NAME="description">DESCRIPTION</A></H1>
  50. <P>The <CODE>HTTP::Headers</CODE> class encapsulates HTTP-style message headers.
  51. The headers consist of attribute-value pairs, which may be repeated,
  52. and which are printed in a particular order.</P>
  53. <P>Instances of this class are usually created as member variables of the
  54. <CODE>HTTP::Request</CODE> and <CODE>HTTP::Response</CODE> classes, internal to the
  55. library.</P>
  56. <P>The following methods are available:</P>
  57. <DL>
  58. <DT><STRONG><A NAME="item_%24h_%3D_new_HTTP%3A%3AHeaders">$h = new HTTP::Headers</A></STRONG><BR>
  59. <DD>
  60. Constructs a new <CODE>HTTP::Headers</CODE> object.  You might pass some initial
  61. attribute-value pairs as parameters to the constructor.  <EM>E.g.</EM>:
  62. <PRE>
  63.  $h = new HTTP::Headers
  64.      Date         => 'Thu, 03 Feb 1994 00:00:00 GMT',
  65.      Content_Type => 'text/html; version=3.2',
  66.      Content_Base => '<A HREF="http://www.sn.no/">http://www.sn.no/</A>';</PRE>
  67. <P></P>
  68. <DT><STRONG><A NAME="item_header">$h->header($field [=> $value],...)</A></STRONG><BR>
  69. <DD>
  70. Get or set the value of a header.  The header field name is not case
  71. sensitive.  To make the life easier for perl users who wants to avoid
  72. quoting before the => operator, you can use '_' as a synonym for '-'
  73. in header names (this behaviour can be suppressed by setting
  74. $HTTP::Headers::TRANSLATE_UNDERSCORE to a FALSE value).
  75. <P>The <A HREF="#item_header"><CODE>header()</CODE></A> method accepts multiple ($field => $value) pairs, so you
  76. can update several fields with a single invocation.</P>
  77. <P>The optional $value argument may be a scalar or a reference to a list
  78. of scalars. If the $value argument is undefined or not given, then the
  79. header is not modified.</P>
  80. <P>The old value of the last of the $field values is returned.
  81. Multi-valued fields will be concatenated with ``,'' as separator in
  82. scalar context.</P>
  83. <PRE>
  84.  $header->header(MIME_Version => '1.0',
  85.                  User_Agent   => 'My-Web-Client/0.01');
  86.  $header->header(Accept => "text/html, text/plain, image/*");
  87.  $header->header(Accept => [qw(text/html text/plain image/*)]);
  88.  @accepts = $header->header('Accept');</PRE>
  89. <P></P>
  90. <DT><STRONG><A NAME="item_scan">$h-><CODE>scan(\&doit)</CODE></A></STRONG><BR>
  91. <DD>
  92. Apply a subroutine to each header in turn.  The callback routine is
  93. called with two parameters; the name of the field and a single value.
  94. If the header has more than one value, then the routine is called once
  95. for each value.  The field name passed to the callback routine has
  96. case as suggested by HTTP Spec, and the headers will be visited in the
  97. recommended ``Good Practice'' order.
  98. <P></P>
  99. <DT><STRONG><A NAME="item_as_string">$h-><CODE>as_string([$endl])</CODE></A></STRONG><BR>
  100. <DD>
  101. Return the header fields as a formatted MIME header.  Since it
  102. internally uses the <A HREF="#item_scan"><CODE>scan()</CODE></A> method to build the string, the result
  103. will use case as suggested by HTTP Spec, and it will follow
  104. recommended ``Good Practice'' of ordering the header fieds.  Long header
  105. values are not folded.
  106. <P>The optional parameter specifies the line ending sequence to use.  The
  107. default is <CODE>"\n"</CODE>.  Embedded ``\n'' characters in the header will be
  108. substitued with this line ending sequence.</P>
  109. <P></P>
  110. <DT><STRONG><A NAME="item_push_header">$h->push_header($field, $val)</A></STRONG><BR>
  111. <DD>
  112. Add a new field value of the specified header.  The header field name
  113. is not case sensitive.  The field need not already have a
  114. value. Previous values for the same field are retained.  The argument
  115. may be a scalar or a reference to a list of scalars.
  116. <PRE>
  117.  $header->push_header(Accept => 'image/jpeg');</PRE>
  118. <P></P>
  119. <DT><STRONG><A NAME="item_remove_header">$h-><CODE>remove_header($field,...)</CODE></A></STRONG><BR>
  120. <DD>
  121. This function removes the headers with the specified names.
  122. <P></P>
  123. <DT><STRONG><A NAME="item_clone">$h->clone</A></STRONG><BR>
  124. <DD>
  125. Returns a copy of this HTTP::Headers object.
  126. <P></P></DL>
  127. <P>
  128. <HR>
  129. <H1><A NAME="convenience methods">CONVENIENCE METHODS</A></H1>
  130. <P>The most frequently used headers can also be accessed through the
  131. following convenience methods.  These methods can both be used to read
  132. and to set the value of a header.  The header value is set if you pass
  133. an argument to the method.  The old header value is always returned.</P>
  134. <P>Methods that deal with dates/times always convert their value to system
  135. time (seconds since Jan 1, 1970) and they also expect this kind of
  136. value when the header value is set.</P>
  137. <DL>
  138. <DT><STRONG><A NAME="item_date">$h->date</A></STRONG><BR>
  139. <DD>
  140. This header represents the date and time at which the message was
  141. originated. <EM>E.g.</EM>:
  142. <PRE>
  143.   $h->date(time);  # set current date</PRE>
  144. <P></P>
  145. <DT><STRONG><A NAME="item_expires">$h->expires</A></STRONG><BR>
  146. <DD>
  147. This header gives the date and time after which the entity should be
  148. considered stale.
  149. <P></P>
  150. <DT><STRONG><A NAME="item_if_modified_since">$h->if_modified_since</A></STRONG><BR>
  151. <DD>
  152. <DT><STRONG><A NAME="item_if_unmodified_since">$h->if_unmodified_since</A></STRONG><BR>
  153. <DD>
  154. This header is used to make a request conditional.  If the requested
  155. resource has (not) been modified since the time specified in this field,
  156. then the server will return a <CODE>"304 Not Modified"</CODE> response instead of
  157. the document itself.
  158. <P></P>
  159. <DT><STRONG><A NAME="item_last_modified">$h->last_modified</A></STRONG><BR>
  160. <DD>
  161. This header indicates the date and time at which the resource was last
  162. modified. <EM>E.g.</EM>:
  163. <PRE>
  164.   # check if document is more than 1 hour old
  165.   if ($h->last_modified < time - 60*60) {
  166.         ...
  167.   }</PRE>
  168. <P></P>
  169. <DT><STRONG><A NAME="item_content_type">$h->content_type</A></STRONG><BR>
  170. <DD>
  171. The Content-Type header field indicates the media type of the message
  172. content. <EM>E.g.</EM>:
  173. <PRE>
  174.   $h->content_type('text/html');</PRE>
  175. <P>The value returned will be converted to lower case, and potential
  176. parameters will be chopped off and returned as a separate value if in
  177. an array context.  This makes it safe to do the following:</P>
  178. <PRE>
  179.   if ($h->content_type eq 'text/html') {
  180.      # we enter this place even if the real header value happens to
  181.      # be 'TEXT/HTML; version=3.0'
  182.      ...
  183.   }</PRE>
  184. <P></P>
  185. <DT><STRONG><A NAME="item_content_encoding">$h->content_encoding</A></STRONG><BR>
  186. <DD>
  187. The Content-Encoding header field is used as a modifier to the
  188. media type.  When present, its value indicates what additional
  189. encoding mechanism has been applied to the resource.
  190. <P></P>
  191. <DT><STRONG><A NAME="item_content_length">$h->content_length</A></STRONG><BR>
  192. <DD>
  193. A decimal number indicating the size in bytes of the message content.
  194. <P></P>
  195. <DT><STRONG><A NAME="item_content_language">$h->content_language</A></STRONG><BR>
  196. <DD>
  197. The natural <CODE>language(s)</CODE> of the intended audience for the message
  198. content.  The value is one or more language tags as defined by RFC
  199. 1766.  Eg. ``no'' for Norwegian and ``en-US'' for US-English.
  200. <P></P>
  201. <DT><STRONG><A NAME="item_title">$h->title</A></STRONG><BR>
  202. <DD>
  203. The title of the document.  In libwww-perl this header will be
  204. initialized automatically from the <TITLE>...</TITLE> element
  205. of HTML documents.  <EM>This header is no longer part of the HTTP
  206. standard.</EM>
  207. <P></P>
  208. <DT><STRONG><A NAME="item_user_agent">$h->user_agent</A></STRONG><BR>
  209. <DD>
  210. This header field is used in request messages and contains information
  211. about the user agent originating the request.  <EM>E.g.</EM>:
  212. <PRE>
  213.   $h->user_agent('Mozilla/1.2');</PRE>
  214. <P></P>
  215. <DT><STRONG><A NAME="item_server">$h->server</A></STRONG><BR>
  216. <DD>
  217. The server header field contains information about the software being
  218. used by the originating server program handling the request.
  219. <P></P>
  220. <DT><STRONG><A NAME="item_from">$h->from</A></STRONG><BR>
  221. <DD>
  222. This header should contain an Internet e-mail address for the human
  223. user who controls the requesting user agent.  The address should be
  224. machine-usable, as defined by RFC822.  E.g.:
  225. <PRE>
  226.   $h->from('Gisle Aas <aas@sn.no>');</PRE>
  227. <P></P>
  228. <DT><STRONG><A NAME="item_referer">$h->referer</A></STRONG><BR>
  229. <DD>
  230. Used to specify the address (URI) of the document from which the
  231. requested resouce address was obtained.
  232. <P></P>
  233. <DT><STRONG><A NAME="item_www_authenticate">$h->www_authenticate</A></STRONG><BR>
  234. <DD>
  235. This header must be included as part of a ``401 Unauthorized'' response.
  236. The field value consist of a challenge that indicates the
  237. authentication scheme and parameters applicable to the requested URI.
  238. <P></P>
  239. <DT><STRONG><A NAME="item_proxy_authenticate">$h->proxy_authenticate</A></STRONG><BR>
  240. <DD>
  241. This header must be included in a ``407 Proxy Authentication Required''
  242. response.
  243. <P></P>
  244. <DT><STRONG><A NAME="item_authorization">$h->authorization</A></STRONG><BR>
  245. <DD>
  246. <DT><STRONG><A NAME="item_proxy_authorization">$h->proxy_authorization</A></STRONG><BR>
  247. <DD>
  248. A user agent that wishes to authenticate itself with a server or a
  249. proxy, may do so by including these headers.
  250. <P></P>
  251. <DT><STRONG><A NAME="item_authorization_basic">$h->authorization_basic</A></STRONG><BR>
  252. <DD>
  253. This method is used to get or set an authorization header that use the
  254. ``Basic Authentication Scheme''.  In array context it will return two
  255. values; the user name and the password.  In scalar context it will
  256. return <EM>``uname:password''</EM> as a single string value.
  257. <P>When used to set the header value, it expects two arguments.  <EM>E.g.</EM>:</P>
  258. <PRE>
  259.   $h->authorization_basic($uname, $password);</PRE>
  260. <P>The method will croak if the $uname contains a colon ':'.</P>
  261. <P></P>
  262. <DT><STRONG><A NAME="item_proxy_authorization_basic">$h->proxy_authorization_basic</A></STRONG><BR>
  263. <DD>
  264. Same as <A HREF="#item_authorization_basic"><CODE>authorization_basic()</CODE></A> but will set the ``Proxy-Authorization''
  265. header instead.
  266. <P></P></DL>
  267. <P>
  268. <HR>
  269. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  270. <P>Copyright 1995-1998 Gisle Aas.</P>
  271. <P>This library is free software; you can redistribute it and/or
  272. modify it under the same terms as Perl itself.</P>
  273. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  274. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  275. <STRONG><P CLASS=block> HTTP::Headers - Class encapsulating HTTP Message headers</P></STRONG>
  276. </TD></TR>
  277. </TABLE>
  278.  
  279. </BODY>
  280.  
  281. </HTML>
  282.