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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>HTML::TreeBuilder - Parser that builds a HTML syntax tree</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> HTML::TreeBuilder - Parser that builds a HTML syntax tree</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="#see also">SEE ALSO</A></LI>
  26.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  27.     <LI><A HREF="#author">AUTHOR</A></LI>
  28. </UL>
  29. <!-- INDEX END -->
  30.  
  31. <HR>
  32. <P>
  33. <H1><A NAME="name">NAME</A></H1>
  34. <P>HTML::TreeBuilder - Parser that builds a HTML syntax tree</P>
  35. <P>
  36. <HR>
  37. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  38. <UL>
  39. <LI>Linux</LI>
  40. <LI>Solaris</LI>
  41. <LI>Windows</LI>
  42. </UL>
  43. <HR>
  44. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  45. <PRE>
  46.  $h = new HTML::TreeBuilder;
  47.  $h->parse($document);
  48.  #...</PRE>
  49. <PRE>
  50.  print $h->as_HTML;  # or any other HTML::Element method</PRE>
  51. <P>
  52. <HR>
  53. <H1><A NAME="description">DESCRIPTION</A></H1>
  54. <P>This is a parser that builds (and actually itself is) a HTML syntax tree.</P>
  55. <P>Objects of this class inherit the methods of both <CODE>HTML::Parser</CODE> and
  56. <CODE>HTML::Element</CODE>.  After parsing has taken place it can be regarded as
  57. the syntax tree itself.</P>
  58. <P>The following method all control how parsing takes place.  You can set
  59. the attributes by passing a TRUE or FALSE value as argument.</P>
  60. <DL>
  61. <DT><STRONG><A NAME="item_implicit_tags">$p->implicit_tags</A></STRONG><BR>
  62. <DD>
  63. Setting this attribute to true will instruct the parser to try to
  64. deduce implicit elements and implicit end tags.  If it is false you
  65. get a parse tree that just reflects the text as it stands.  Might be
  66. useful for quick & dirty parsing.  Default is true.
  67. <P>Implicit elements have the <CODE>implicit()</CODE> attribute set.</P>
  68. <P></P>
  69. <DT><STRONG><A NAME="item_ignore_unknown">$p->ignore_unknown</A></STRONG><BR>
  70. <DD>
  71. This attribute controls whether unknown tags should be represented as
  72. elements in the parse tree.  Default is true.
  73. <P></P>
  74. <DT><STRONG><A NAME="item_ignore_text">$p->ignore_text</A></STRONG><BR>
  75. <DD>
  76. Do not represent the text content of elements.  This saves space if
  77. all you want is to examine the structure of the document.  Default is
  78. false.
  79. <P></P>
  80. <DT><STRONG><A NAME="item_warn">$p->warn</A></STRONG><BR>
  81. <DD>
  82. Call <A HREF="#item_warn"><CODE>warn()</CODE></A> with an appropriate message for syntax errors.  Default is
  83. false.
  84. <P></P></DL>
  85. <P>
  86. <HR>
  87. <H1><A NAME="see also">SEE ALSO</A></H1>
  88. <P><A HREF="../../../site/lib/HTML/Parser.html">the HTML::Parser manpage</A>, <A HREF="../../../site/lib/HTML/Element.html">the HTML::Element manpage</A></P>
  89. <P>
  90. <HR>
  91. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  92. <P>Copyright 1995-1998 Gisle Aas. All rights reserved.</P>
  93. <P>This library is free software; you can redistribute it and/or
  94. modify it under the same terms as Perl itself.</P>
  95. <P>
  96. <HR>
  97. <H1><A NAME="author">AUTHOR</A></H1>
  98. <P>Gisle Aas <<A HREF="mailto:aas@sn.no">aas@sn.no</A>></P>
  99. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  100. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  101. <STRONG><P CLASS=block> HTML::TreeBuilder - Parser that builds a HTML syntax tree</P></STRONG>
  102. </TD></TR>
  103. </TABLE>
  104.  
  105. </BODY>
  106.  
  107. </HTML>
  108.