Skip to content

Commit 6343826

Browse files
Sean M. BurkeGitpan
authored andcommitted
Import of SBURKE/HTML-Tagset-3.01 from CPAN.
gitpan-cpan-distribution: HTML-Tagset gitpan-cpan-version: 3.01 gitpan-cpan-path: SBURKE/HTML-Tagset-3.01.tar.gz gitpan-cpan-author: SBURKE gitpan-cpan-maturity: released
0 parents  commit 6343826

6 files changed

Lines changed: 540 additions & 0 deletions

File tree

ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Revision history for Perl extension HTML::TagSet
2+
Time-stamp: "2000-08-21 01:39:24 MDT"
3+
4+
2000-08-21 Sean M. Burke sburke@cpan.org
5+
6+
* Release 3.01 -- first release.
7+
Data tables copied from previous version of HTML::Element
8+
and HTML::TreeBuilder, with some additions.
9+

MANIFEST

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
ChangeLog
2+
Tagset.pm
3+
MANIFEST
4+
Makefile.PL
5+
test.pl
6+
README

Makefile.PL

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This -*- perl -*- script writes the Makefile for HTML::Tagset
2+
# Time-stamp: "2000-08-19 18:00:37 MDT"
3+
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4+
# the contents of the Makefile that is written.
5+
require 5.004;
6+
use strict;
7+
use ExtUtils::MakeMaker;
8+
9+
WriteMakefile(
10+
'NAME' => 'HTML::Tagset',
11+
'VERSION_FROM' => 'Tagset.pm', # finds $VERSION
12+
'dist' => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
13+
);
14+
15+
package MY;
16+
17+
sub libscan
18+
{ # Determine things that should *not* be installed
19+
my($self, $path) = @_;
20+
return '' if $path =~ m/~/;
21+
$path;
22+
}
23+
24+
__END__

README

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
README for HTML::Tagset
2+
Time-stamp: "2000-08-21 01:38:22 MDT"
3+
4+
HTML::Tagset
5+
6+
This module contains data tables useful in dealing with HTML.
7+
8+
It provides no functions or methods.
9+
10+
11+
12+
PREREQUISITES
13+
14+
This suite requires Perl 5.
15+
16+
HTML::Tagset doesn't use any nonstandard modules.
17+
18+
19+
INSTALLATION
20+
21+
You install HTML::Tagset, as you would install any perl module
22+
library, by running these commands:
23+
24+
perl Makefile.PL
25+
make
26+
make test
27+
make install
28+
29+
If you want to install a private copy of HTML::Tagset in your home
30+
directory, then you should try to produce the initial Makefile with
31+
something like this command:
32+
33+
perl Makefile.PL LIB=~/perl
34+
35+
36+
DOCUMENTATION
37+
38+
POD-format documentation is included in Tagset.pm. POD is readable
39+
with the 'perldoc' utility. See ChangeLog for recent changes.
40+
41+
42+
MACPERL INSTALLATION NOTES
43+
44+
Don't bother with the makefiles. Just make a HTML directory in your
45+
MacPerl site_lib or lib directory, and move Tagset.pm into there.
46+
47+
48+
SUPPORT
49+
50+
Questions, bug reports, and suggestions for HTML::Tagset should just
51+
be sent to me at sburke@cpan.org
52+
53+
54+
AVAILABILITY
55+
56+
The latest version of HTML::Tagset is available from the
57+
Comprehensive Perl Archive Network (CPAN). Visit
58+
<http://www.perl.com/CPAN/> to find a CPAN site near you.
59+
60+
61+
COPYRIGHT
62+
63+
Copyright 1999,2000 Sean M. Burke <sburke@cpan.org>; Copyright
64+
1995-2000 Gisle Aas; all rights reserved.

0 commit comments

Comments
 (0)