/usr/share/perl5/HTML/AsSubs.pm is in libhtml-tree-perl 5.03-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | package HTML::AsSubs;
# ABSTRACT: functions that construct a HTML syntax tree
use warnings;
use strict;
use vars qw(@ISA @EXPORT);
our $VERSION = '5.03'; # VERSION from OurPkgVersion
require HTML::Element;
require Exporter;
@ISA = qw(Exporter);
# Problem: exports so damned much. Has no concept of "export only HTML4
# elements". TODO:?? make something that make functions that just
# wrap XML::Generator calls?
use vars qw(@TAGS);
@TAGS = qw(html
head title base link meta isindex nextid script style
body h1 h2 h3 h4 h5 h6 p pre div blockquote
a img br hr
ol ul dir menu li
dl dt dd
dfn cite code em kbd samp strong var address span
b i u tt
center font big small strike
sub sup
table tr td th caption
form input select option textarea
object applet param
map area
frame frameset noframe
);
for (@TAGS) {
my $code;
$code = "sub $_ { _elem('$_', \@_); }\n";
push( @EXPORT, $_ );
## no critic
eval $code;
## use critic
if ($@) {
die $@;
}
}
sub _elem {
my $tag = shift;
my $attributes;
if ( @_ and defined $_[0] and ref( $_[0] ) eq "HASH" ) {
$attributes = shift;
}
my $elem = HTML::Element->new( $tag, %$attributes );
$elem->push_content(@_);
$elem;
}
1;
__END__
=pod
=head1 NAME
HTML::AsSubs - functions that construct a HTML syntax tree
=head1 VERSION
This document describes version 5.03 of
HTML::AsSubs, released September 22, 2012
as part of L<HTML-Tree|HTML::Tree>.
=head1 SYNOPSIS
use HTML::AsSubs;
$h = body(
h1("This is the heading"),
p("This is the first paragraph which contains a ",
a({href=>'link.html'}, "link"),
" and an ",
img({src=>'img.gif', alt=>'image'}),
"."
),
);
print $h->as_HTML;
=head1 DESCRIPTION
This module exports functions that can be used to construct various
HTML elements. The functions are named after the tags of the
corresponding HTML element and are all written in lower case. If the
first argument is a hash reference then it will be used to initialize the
attributes of this element. The remaining arguments are regarded as
content.
For a similar idea (i.e., it's another case where the syntax tree
of the Perl source mirrors the syntax tree of the HTML produced),
see HTML::Element's C<new_from_lol> method.
For what I now think is a cleaner implementation of this same idea,
see the excellent module C<XML::Generator>, which is what I suggest
for actual real-life use. (I suggest this over C<HTML::AsSubs> and
over C<CGI.pm>'s HTML-making functions.)
=head1 ACKNOWLEDGEMENT
This module was inspired by the following message:
Date: Tue, 4 Oct 1994 16:11:30 +0100
Subject: Wow! I have a large lightbulb above my head!
Take a moment to consider these lines:
%OVERLOAD=( '""' => sub { join("", @{$_[0]}) } );
sub html { my($type)=shift; bless ["<$type>", @_, "</$type>"]; }
:-) I *love* Perl 5! Thankyou Larry and Ilya.
Regards,
Tim Bunce.
p.s. If you didn't get it, think about recursive data types: html(html())
p.p.s. I'll turn this into a much more practical example in a day or two.
p.p.p.s. It's a pity that overloads are not inherited. Is this a bug?
=head1 BUGS
The exported link() function overrides the builtin link() function.
The exported tr() function must be called using &tr(...) syntax
because it clashes with the builtin tr/../../ operator.
=head1 SEE ALSO
L<HTML::Element>, L<XML::Generator>
=head2 html head title base link meta isindex nextid script style body h1 h2 h3 h4 h5 h6 p pre div blockquote a img br hr ol ul dir menu li dl dt dd dfn cite code em kbd samp strong var address span b i u tt center font big small strike sub sup table tr td th caption form input select option textarea object applet param map area frame frameset noframe
A bunch of methods for creating tags.
=head1 Private Functions
=head2 _elem()
The _elem() function is wrapped by all the html 'tag' functions. It
takes a tag-name, optional hashref of attributes and a list of content
as parameters.
=head1 AUTHOR
Current maintainers:
=over
=item * Christopher J. Madsen S<C<< <perl AT cjmweb.net> >>>
=item * Jeff Fearn S<C<< <jfearn AT cpan.org> >>>
=back
Original HTML-Tree author:
=over
=item * Gisle Aas
=back
Former maintainers:
=over
=item * Sean M. Burke
=item * Andy Lester
=item * Pete Krawczyk S<C<< <petek AT cpan.org> >>>
=back
You can follow or contribute to HTML-Tree's development at
L<< http://github.com/madsen/HTML-Tree >>.
=head1 COPYRIGHT AND LICENSE
Copyright 1995-1998 Gisle Aas, 1999-2004 Sean M. Burke,
2005 Andy Lester, 2006 Pete Krawczyk, 2010 Jeff Fearn,
2012 Christopher J. Madsen.
This library is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
The programs in this library are distributed in the hope that they
will be useful, but without any warranty; without even the implied
warranty of merchantability or fitness for a particular purpose.
=cut
|