HTML::RewriteAttributes is designed for simple yet powerful HTML

attribute rewriting.  You simply specify a callback to run for each
attribute and we do the rest for you.  This module is designed to
be subclassable to make handling special cases eaiser.

WWW: http://search.cpan.org/dist/HTML-RewriteAttributes/
This commit is contained in:
Philip M. Gollucci 2008-07-28 19:00:24 +00:00
parent 2611a9dec9
commit 06b2f8f373
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=217774
4 changed files with 42 additions and 0 deletions

View file

@ -394,6 +394,7 @@
SUBDIR += p5-HTML-Format
SUBDIR += p5-HTML-FormatText-WithLinks
SUBDIR += p5-HTML-Fraction
SUBDIR += p5-HTML-RewriteAttributes
SUBDIR += p5-HTML-SBC
SUBDIR += p5-HTML-TagFilter
SUBDIR += p5-HTML-Tidy

View file

@ -0,0 +1,32 @@
# New ports collection makefile for: p5-HTML-Attributes
# Date created: 2008/08/24
# Whom: Philip M. Gollucci <pgollucci@p6m7g8.com>
#
# $FreeBSD$
PORTNAME= HTML-RewriteAttributes
PORTVERSION= 0.03
CATEGORIES= textproc perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= pgollucci@FreeBSD.org
COMMENT= Simple yet powerful HTML attribute rewriting
MAN3= HTML::RewriteAttributes::Resources.3 \
HTML::RewriteAttributes::Links.3 \
HTML::RewriteAttributes.3
PERL_CONFIGURE= yes
PLIST_FILES= %%SITE_PERL%%/HTML/RewriteAttributes.pm \
%%SITE_PERL%%/HTML/RewriteAttributes/Resources.pm \
%%SITE_PERL%%/HTML/RewriteAttributes/Links.pm \
%%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/RewriteAttributes/.packlist
PLIST_DIRS= %%SITE_PERL%%/HTML/RewriteAttributes \
%%SITE_PERL%%/HTML \
%%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/RewriteAttributes \
%%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
MD5 (HTML-RewriteAttributes-0.03.tar.gz) = 7580f6d63b171b318547d5ef4138ce34
SHA256 (HTML-RewriteAttributes-0.03.tar.gz) = 3d2fab5d2143cd489363731750a84da2992a17135cc17c12817bb18ae68745db
SIZE (HTML-RewriteAttributes-0.03.tar.gz) = 18148

View file

@ -0,0 +1,6 @@
HTML::RewriteAttributes is designed for simple yet powerful HTML
attribute rewriting. You simply specify a callback to run for each
attribute and we do the rest for you. This module is designed to
be subclassable to make handling special cases eaiser.
WWW: http://search.cpan.org/dist/HTML-RewriteAttributes/