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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>CGI::Pretty - module to produce nicely formatted HTML code</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> CGI::Pretty - module to produce nicely formatted HTML code</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.     <UL>
  26.  
  27.         <LI><A HREF="#tags that won't be formatted">Tags that won't be formatted</A></LI>
  28.         <LI><A HREF="#customizing the indenting">Customizing the Indenting</A></LI>
  29.     </UL>
  30.  
  31.     <LI><A HREF="#bugs">BUGS</A></LI>
  32.     <LI><A HREF="#author">AUTHOR</A></LI>
  33.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  34. </UL>
  35. <!-- INDEX END -->
  36.  
  37. <HR>
  38. <P>
  39. <H1><A NAME="name">NAME</A></H1>
  40. <P>CGI::Pretty - module to produce nicely formatted HTML code</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.     use CGI::Pretty qw( :html3 );</PRE>
  53. <PRE>
  54.     # Print a table with a single data element
  55.     print table( TR( td( "foo" ) ) );</PRE>
  56. <P>
  57. <HR>
  58. <H1><A NAME="description">DESCRIPTION</A></H1>
  59. <P>CGI::Pretty is a module that derives from CGI.  It's sole function is to
  60. allow users of CGI to output nicely formatted HTML code.</P>
  61. <P>When using the CGI module, the following code:
  62.     print table( TR( td( ``foo'' ) ) );</P>
  63. <P>produces the following output:
  64.     <TABLE><TR><TD>foo</TD></TR></TABLE></P>
  65. <P>If a user were to create a table consisting of many rows and many columns,
  66. the resultant HTML code would be quite difficult to read since it has no
  67. carriage returns or indentation.</P>
  68. <P>CGI::Pretty fixes this problem.  What it does is add a carriage
  69. return and indentation to the HTML code so that one can easily read
  70. it.</P>
  71. <PRE>
  72.     print table( TR( td( "foo" ) ) );</PRE>
  73. <P>now produces the following output:
  74.     <TABLE>
  75.        <TR>
  76.           <TD>
  77.              foo
  78.           </TD>
  79.        </TR>
  80.     </TABLE></P>
  81. <P>
  82. <H2><A NAME="tags that won't be formatted">Tags that won't be formatted</A></H2>
  83. <P>The <A> and <PRE> tags are not formatted.  If these tags were formatted, the
  84. user would see the extra indentation on the web browser causing the page to
  85. look different than what would be expected.  If you wish to add more tags to
  86. the list of tags that are not to be touched, push them onto the <CODE>@AS_IS</CODE> array:</P>
  87. <PRE>
  88.     push @CGI::Pretty::AS_IS,qw(CODE XMP);</PRE>
  89. <P>
  90. <H2><A NAME="customizing the indenting">Customizing the Indenting</A></H2>
  91. <P>If you wish to have your own personal style of indenting, you can change the
  92. <CODE>$INDENT</CODE> variable:</P>
  93. <PRE>
  94.     $CGI::Pretty::INDENT = "\t\t";</PRE>
  95. <P>would cause the indents to be two tabs.</P>
  96. <P>Similarly, if you wish to have more space between lines, you may change the
  97. <CODE>$LINEBREAK</CODE> variable:</P>
  98. <PRE>
  99.     $CGI::Pretty::LINEBREAK = "\n\n";</PRE>
  100. <P>would create two carriage returns between lines.</P>
  101. <P>If you decide you want to use the regular CGI indenting, you can easily do 
  102. the following:</P>
  103. <PRE>
  104.     $CGI::Pretty::INDENT = $CGI::Pretty::LINEBREAK = "";</PRE>
  105. <P>
  106. <HR>
  107. <H1><A NAME="bugs">BUGS</A></H1>
  108. <P>This section intentionally left blank.</P>
  109. <P>
  110. <HR>
  111. <H1><A NAME="author">AUTHOR</A></H1>
  112. <P>Brian Paulsen <<A HREF="mailto:Brian@ThePaulsens.com">Brian@ThePaulsens.com</A>>, with minor modifications by
  113. Lincoln Stein <<A HREF="mailto:lstein@cshl.org">lstein@cshl.org</A>> for incorporation into the CGI.pm
  114. distribution.</P>
  115. <P>Copyright 1999, Brian Paulsen.  All rights reserved.</P>
  116. <P>This library is free software; you can redistribute it and/or modify
  117. it under the same terms as Perl itself.</P>
  118. <P>Bug reports and comments to <A HREF="mailto:Brian@ThePaulsens.com.">Brian@ThePaulsens.com.</A>  You can also write
  119. to <A HREF="mailto:lstein@cshl.org,">lstein@cshl.org,</A> but this code looks pretty hairy to me and I'm not
  120. sure I understand it!</P>
  121. <P>
  122. <HR>
  123. <H1><A NAME="see also">SEE ALSO</A></H1>
  124. <P><A HREF="../../lib/CGI.html">the CGI manpage</A></P>
  125. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  126. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  127. <STRONG><P CLASS=block> CGI::Pretty - module to produce nicely formatted HTML code</P></STRONG>
  128. </TD></TR>
  129. </TABLE>
  130.  
  131. </BODY>
  132.  
  133. </HTML>
  134.