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

  1. package HTML::AsSubs;
  2.  
  3. =head1 NAME
  4.  
  5. HTML::AsSubs - functions that construct a HTML syntax tree
  6.  
  7. =head1 SYNOPSIS
  8.  
  9.  use HTML::AsSubs;
  10.  $h = body(
  11.        h1("This is the heading"),
  12.        p("This is the first paragraph which contains a ",
  13.          a({href=>'link.html'}, "link"),
  14.          " and an ",
  15.          img({src=>'img.gif', alt=>'image'}),
  16.          "."
  17.         ),
  18.       );
  19.  print $h->as_HTML;
  20.  
  21. =head1 DESCRIPTION
  22.  
  23. This module exports functions that can be used to construct various
  24. HTML elements. The functions are named after the tags of the
  25. correponding HTML element and are all written in lower case. If the
  26. first argument is a hash reference then it will be used to initialize the
  27. attributes of this element. The remaining arguments are regarded as
  28. content.
  29.  
  30. =head1 ACKNOWLEDGEMENT
  31.  
  32. This module was inspired by the following message:
  33.  
  34.  Date: Tue, 4 Oct 1994 16:11:30 +0100
  35.  Subject: Wow! I have a large lightbulb above my head!
  36.  
  37.  Take a moment to consider these lines:
  38.  
  39.  %OVERLOAD=( '""' => sub { join("", @{$_[0]}) } );
  40.  
  41.  sub html { my($type)=shift; bless ["<$type>", @_, "</$type>"]; }
  42.  
  43.  :-)  I *love* Perl 5!  Thankyou Larry and Ilya.
  44.  
  45.  Regards,
  46.  Tim Bunce.
  47.  
  48.  p.s. If you didn't get it, think about recursive data types: html(html())
  49.  p.p.s. I'll turn this into a much more practical example in a day or two.
  50.  p.p.p.s. It's a pity that overloads are not inherited. Is this a bug?
  51.  
  52. =head1 BUGS
  53.  
  54. The exported link() function overrides the builtin link() function.
  55. The exported tr() function must be called using &tr(...) syntax
  56. because it clashes with the builtin tr/../../ operator.
  57.  
  58.  
  59. =head1 SEE ALSO
  60.  
  61. L<HTML::Element>
  62.  
  63. =cut
  64.  
  65. use strict;
  66. use vars qw(@ISA $VERSION @EXPORT);
  67.  
  68. require HTML::Element;
  69. require Exporter;
  70. @ISA = qw(Exporter);
  71.  
  72. $VERSION = sprintf("%d.%02d", q$Revision: 1.11 $ =~ /(\d+)\.(\d+)/);
  73.  
  74. use vars qw(@TAGS);
  75. @TAGS = qw(html
  76.        head title base link meta isindex nextid script style
  77.        body h1 h2 h3 h4 h5 h6 p pre div blockquote
  78.        a img br hr
  79.        ol ul dir menu li
  80.        dl dt dd
  81.        dfn cite code em kbd samp strong var address 
  82.        b i u tt
  83.            center font big small strike
  84.            sub sup
  85.        table tr td th caption
  86.        form input select option textarea
  87.            object applet param
  88.            map area
  89.            frame frameset noframe
  90.       );
  91.  
  92. my @code;
  93. for (@TAGS) {
  94.     push(@code, "sub $_ { _elem('$_', \@_); }\n");
  95.     push(@EXPORT, $_);
  96. }
  97. eval join('', @code);
  98. if ($@) {
  99.     die $@;
  100. }
  101.  
  102. sub _elem
  103. {
  104.     my $tag = shift;
  105.     my $attributes;
  106.     if (@_ and defined $_[0] and ref($_[0]) eq "HASH") {
  107.     $attributes = shift;
  108.     }
  109.     my $elem = new HTML::Element $tag, %$attributes;
  110.     $elem->push_content(@_);
  111.     $elem;
  112. }
  113.  
  114. 1;
  115.