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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>MIME::QuotedPrint - Encoding and decoding of quoted-printable strings</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> MIME::QuotedPrint - Encoding and decoding of quoted-printable strings</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="#copyright">COPYRIGHT</A></LI>
  26. </UL>
  27. <!-- INDEX END -->
  28.  
  29. <HR>
  30. <P>
  31. <H1><A NAME="name">NAME</A></H1>
  32. <P>MIME::QuotedPrint - Encoding and decoding of quoted-printable strings</P>
  33. <P>
  34. <HR>
  35. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  36. <UL>
  37. <LI>Linux</LI>
  38. <LI>Solaris</LI>
  39. <LI>Windows</LI>
  40. </UL>
  41. <HR>
  42. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  43. <PRE>
  44.  use MIME::QuotedPrint;</PRE>
  45. <PRE>
  46.  $encoded = encode_qp($decoded);
  47.  $decoded = decode_qp($encoded);</PRE>
  48. <P>
  49. <HR>
  50. <H1><A NAME="description">DESCRIPTION</A></H1>
  51. <P>This module provides functions to encode and decode strings into the
  52. Quoted-Printable encoding specified in RFC 2045 - <EM>MIME (Multipurpose
  53. Internet Mail Extensions)</EM>.  The Quoted-Printable encoding is intended
  54. to represent data that largely consists of bytes that correspond to
  55. printable characters in the ASCII character set.  Non-printable
  56. characters (as defined by english americans) are represented by a
  57. triplet consisting of the character ``='' followed by two hexadecimal
  58. digits.</P>
  59. <P>The following functions are provided:</P>
  60. <DL>
  61. <DT><STRONG><A NAME="item_encode_qp"><CODE>encode_qp($str)</CODE></A></STRONG><BR>
  62. <DD>
  63. This function will return an encoded version of the string given as
  64. argument.
  65. <P>Note that <A HREF="#item_encode_qp"><CODE>encode_qp()</CODE></A> does not change newlines <CODE>"\n"</CODE> to the CRLF
  66. sequence even though this might be considered the right thing to do
  67. (RFC 2045 (Q-P Rule #4)).</P>
  68. <P></P>
  69. <DT><STRONG><A NAME="item_decode_qp">decode_qp($str);</A></STRONG><BR>
  70. <DD>
  71. This function will return the plain text version of the string given
  72. as argument.
  73. <P></P></DL>
  74. <P>If you prefer not to import these routines into your namespace you can
  75. call them as:</P>
  76. <PRE>
  77.   use MIME::QuotedPrint ();
  78.   $encoded = MIME::QuotedPrint::encode($decoded);
  79.   $decoded = MIME::QuotedPrint::decode($encoded);</PRE>
  80. <P>
  81. <HR>
  82. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  83. <P>Copyright 1995-1997 Gisle Aas.</P>
  84. <P>This library is free software; you can redistribute it and/or
  85. modify it under the same terms as Perl itself.</P>
  86. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  87. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  88. <STRONG><P CLASS=block> MIME::QuotedPrint - Encoding and decoding of quoted-printable strings</P></STRONG>
  89. </TD></TR>
  90. </TABLE>
  91.  
  92. </BODY>
  93.  
  94. </HTML>
  95.