Skip to content

Commit 38170d1

Browse files
petdanceGitpan
authored andcommitted
Import of PETDANCE/HTML-Tagset-3.10 from CPAN.
gitpan-cpan-distribution: HTML-Tagset gitpan-cpan-version: 3.10 gitpan-cpan-path: PETDANCE/HTML-Tagset-3.10.tar.gz gitpan-cpan-author: PETDANCE gitpan-cpan-maturity: released
1 parent 99ac11c commit 38170d1

8 files changed

Lines changed: 118 additions & 97 deletions

File tree

ChangeLog

Lines changed: 0 additions & 26 deletions
This file was deleted.

Changes

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Revision history for Perl extension HTML::Tagset
2+
3+
2005-11-08 Andy Lester
4+
5+
* Release 3.10 -- Another rebundling, with a new maintainer.
6+
7+
2004-12-29 Sean M. Burke
8+
9+
* Realese 3.04 -- just a rebundling; no actual code changes
10+
11+
2000-10-20 Sean M. Burke
12+
13+
* Release 3.03
14+
Added 'tr' => ['background'] at the suggestion of Renzo Toma
15+
(renzo.toma@veronica.nl), who notes: "Netscape Communicator 4.73
16+
(probably even earlier) supports it, Internet Explorer 5.5 does
17+
not (yet)."
18+
19+
2000-09-04 Sean M. Burke
20+
21+
* Release 3.02
22+
Added %is_Possible_Strict_P_Content.
23+
24+
2000-08-21 Sean M. Burke
25+
26+
* Release 3.01 -- first release.
27+
Data tables copied from previous version of HTML::Element
28+
and HTML::TreeBuilder, with some additions.

MANIFEST

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
ChangeLog
2-
lib/HTML/Tagset.pm
1+
Changes
2+
Tagset.pm
33
Makefile.PL
44
MANIFEST
55
MANIFEST.SKIP
66
README
77
t/00_about_verbose.t
88
t/01_old_junk.t
9+
t/pod.t
910
META.yml Module meta-data (added by MakeMaker)

META.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# http://module-build.sourceforge.net/META-spec.html
22
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
33
name: HTML-Tagset
4-
version: 3.04
5-
version_from: lib/HTML/Tagset.pm
4+
version: 3.10
5+
version_from: Tagset.pm
66
installdirs: site
77
requires:
88

99
distribution_type: module
10-
generated_by: ExtUtils::MakeMaker version 6.17
10+
generated_by: ExtUtils::MakeMaker version 6.30

Makefile.PL

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1-
# This -*-perl-*- script writes the Makefile for installing this distribution.
1+
# This -*-perl-*- program writes the Makefile for installing this distribution.
22
#
33
# See "perldoc perlmodinstall" or "perldoc ExtUtils::MakeMaker" for
44
# info on how to control how the installation goes.
5-
#
6-
# Time-stamp: "2004-12-29 20:20:12 AST"
75

86
require 5.004;
97
use strict;
108
use ExtUtils::MakeMaker;
119

1210
WriteMakefile(
13-
'NAME' => 'HTML::Tagset',
14-
'VERSION_FROM' => 'lib/HTML/Tagset.pm', # finds $VERSION
15-
'dist' => { COMPRESS => 'gzip -6f', SUFFIX => 'gz', },
11+
NAME => 'HTML::Tagset',
12+
AUTHOR => 'Andy Lester <andy@petdance.com>',
13+
VERSION_FROM => 'Tagset.pm', # finds $VERSION
14+
ABSTRACT_FROM => 'Tagset.pm', # retrieve abstract from module
15+
PMLIBDIRS => [qw(lib/)],
16+
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
17+
clean => { FILES => 'HTML-Tagset-*' },
18+
1619
);

README

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
README for HTML::Tagset
2-
Time-stamp: "2000-08-22 22:42:38 MDT"
32

4-
HTML::Tagset
3+
HTML::Tagset
54

65
This module contains data tables useful in dealing with HTML.
76

0 commit comments

Comments
 (0)