1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

This package provides an object oriented interface to the API of the

W3 HTML Validator application (http://validator.w3.org/). With this
package you can connect to a running instance of the validator and
retrieve the validation results (true|false) as well as the errors
and warnings for a web page.

WWW: http://pear.php.net/package/Services_W3C_HTMLValidator
This commit is contained in:
Martin Wilke 2007-04-29 21:34:35 +00:00
parent 8c6c94bca6
commit a13f30e7b2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=191153
4 changed files with 38 additions and 0 deletions

View File

@ -923,6 +923,7 @@
SUBDIR += pear-HTTP_Session
SUBDIR += pear-HTTP_Upload
SUBDIR += pear-Services_Delicious
SUBDIR += pear-Services_W3C_HTMLValidator
SUBDIR += pear-Text_Wiki
SUBDIR += pear-UDDI
SUBDIR += pecl-APC

View File

@ -0,0 +1,27 @@
# Ports collection makefile for: pear-Services_W3C_HTMLValidator
# Date created: 2007/04/29
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= Services_W3C_HTMLValidator
PORTVERSION= 0.2.0
CATEGORIES= www pear
MAINTAINER= miwi@FreeBSD.org
COMMENT= An Object Oriented Interface to the W3C HTML Validator service.
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
RUN_DEPENDS= ${BUILD_DEPENDS}
CATEGORY= Services
FILES= HTMLValidator.php HTMLValidator/Error.php HTMLValidator/Message.php \
HTMLValidator/Response.php HTMLValidator/Warning.php
DOCS= examples/example.html examples/validate_byfile.php \
examples/validate_byuri.php examples/validate_fragment.php \
examples/validate_responsexml.php
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
.include <bsd.port.post.mk>

View File

@ -0,0 +1,3 @@
MD5 (PEAR/Services_W3C_HTMLValidator-0.2.0.tgz) = eeeaaccad8fac68f2ce3218544ce69e2
SHA256 (PEAR/Services_W3C_HTMLValidator-0.2.0.tgz) = aaacd919bb74462e248cf9f8e2c1dcf69b3330e60a988c272c3cdca654a146d8
SIZE (PEAR/Services_W3C_HTMLValidator-0.2.0.tgz) = 9987

View File

@ -0,0 +1,7 @@
This package provides an object oriented interface to the API of the
W3 HTML Validator application (http://validator.w3.org/). With this
package you can connect to a running instance of the validator and
retrieve the validation results (true|false) as well as the errors
and warnings for a web page.
WWW: http://pear.php.net/package/Services_W3C_HTMLValidator