diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2006-12-26 20:49:30 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2006-12-26 20:49:30 +0000 |
commit | de116754781e45f6564f3d74a3dd83e075263a4f (patch) | |
tree | a9c65ee77647d914eb5fb4d08eab312df78913df | |
parent | Console_Color::convert to transform colorcodes like %r into ANSI (diff) |
The HTML_Common2 package provides methods for HTML code display and
attributes handling.
* Provides methods to set, remove, merge HTML attributes.
* Handles global document options (charset, linebreak and more).
* Provides methods to handle indentation and HTML comments.
WWW: http://pear.php.net/package/HTML_Common2/
Notes
Notes:
svn path=/head/; revision=180812
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/pear-HTML_Common2/Makefile | 24 | ||||
-rw-r--r-- | devel/pear-HTML_Common2/distinfo | 3 | ||||
-rw-r--r-- | devel/pear-HTML_Common2/pkg-descr | 7 |
4 files changed, 35 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index f754bab7cb9a..a0dc063f7233 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1569,6 +1569,7 @@ SUBDIR += pear-HTML_BBCodeParser SUBDIR += pear-HTML_CSS SUBDIR += pear-HTML_Common + SUBDIR += pear-HTML_Common2 SUBDIR += pear-HTML_Form SUBDIR += pear-HTML_Javascript SUBDIR += pear-HTML_Page2 diff --git a/devel/pear-HTML_Common2/Makefile b/devel/pear-HTML_Common2/Makefile new file mode 100644 index 000000000000..d0c558a787ec --- /dev/null +++ b/devel/pear-HTML_Common2/Makefile @@ -0,0 +1,24 @@ +# Ports collection makefile for: pear-HTML_Common2 +# Date created: 27 December 2006 +# Whom: Martin Wilke <miwi@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= HTML_Common2 +PORTVERSION= 0.3.0 +CATEGORIES= devel www pear + +MAINTAINER= miwi@FreeBSD.org +COMMENT= PEAR::HTML_Common2 is a base class for other HTML classes + +BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear +RUN_DEPENDS= ${BUILD_DEPENDS} + +CATEGORY= HTML +FILES= Common2.php +TESTS= HTML_Common2_Test.php + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include <bsd.port.post.mk> diff --git a/devel/pear-HTML_Common2/distinfo b/devel/pear-HTML_Common2/distinfo new file mode 100644 index 000000000000..dd3bf7093225 --- /dev/null +++ b/devel/pear-HTML_Common2/distinfo @@ -0,0 +1,3 @@ +MD5 (PEAR/HTML_Common2-0.3.0.tgz) = 757cf3879b3a6e4750728206e4c37070 +SHA256 (PEAR/HTML_Common2-0.3.0.tgz) = f57db0e30473ff676c09c2632d4a7545f7eed50d3ce808a83cdaa8b63d0f56c5 +SIZE (PEAR/HTML_Common2-0.3.0.tgz) = 6389 diff --git a/devel/pear-HTML_Common2/pkg-descr b/devel/pear-HTML_Common2/pkg-descr new file mode 100644 index 000000000000..356748f4a750 --- /dev/null +++ b/devel/pear-HTML_Common2/pkg-descr @@ -0,0 +1,7 @@ +TheHTML_Common2 package provides methods for HTML code display and +attributes handling. +* Provides methods to set, remove, merge HTML attributes. +* Handles global document options (charset, linebreak and more). +* Provides methods to handle indentation and HTML comments. + +WWW: http://pear.php.net/package/HTML_Common2/ |