This package provides an object oriented interface to the API

of the W3 CSS Validator application (http://jigsaw.w3.org/css-validator/).

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 a style sheet.

WWW: http://pear.php.net/package/Services_W3C_CSSValidator/

PR:		ports/119833
Submitted by:	Ditesh Shashikant Gathani <ditesh at gathani.org>
This commit is contained in:
Martin Wilke 2008-01-20 22:12:35 +00:00
parent 86a48f20ca
commit 61a2f0729c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=205932
4 changed files with 45 additions and 0 deletions

View file

@ -978,6 +978,7 @@
SUBDIR += pear-Services_Compete
SUBDIR += pear-Services_Delicious
SUBDIR += pear-Services_Digg
SUBDIR += pear-Services_W3C_CSSValidator
SUBDIR += pear-Services_W3C_HTMLValidator
SUBDIR += pear-Services_urlTea
SUBDIR += pear-Text_Wiki

View file

@ -0,0 +1,30 @@
# Ports collection makefile for: pear-Services_W3C_CSSValidator:
# Date created: 21 Jan 2007
# Whom: Ditesh Shashikant Gathani <ditesh@gathani.org>
#
# $FreeBSD$
#
PORTNAME= Services_W3C_CSSValidator
PORTVERSION= 0.1.0
CATEGORIES= www pear
MAINTAINER= ditesh@gathani.org
COMMENT= PHP interface to W3C CSS Validator API
BUILD_DEPENDS= ${PEARDIR}/HTTP/Request.php:${PORTSDIR}/www/pear-HTTP_Request
RUN_DEPENDS= ${PEARDIR}/HTTP/Request.php:${PORTSDIR}/www/pear-HTTP_Request
CATEGORY= Services
FILES= CSSValidator.php CSSValidator/Error.php CSSValidator/Message.php \
CSSValidator/Response.php CSSValidator/Warning.php
TESTS= AllTests.php fragment.css Services_W3C_CSSValidatorTest.php
EXAMPLES= examples/foo.css examples/fragment.css examples/pear_manual.css \
examples/validate_atrules.php examples/validate_byfile.php \
examples/validate_byuri.php examples/validate_fragment.php
_EXAMPLESDIR= docs
.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_CSSValidator-0.1.0.tgz) = 7d4caa54880de5b94808db8cba85f665
SHA256 (PEAR/Services_W3C_CSSValidator-0.1.0.tgz) = 1687f4cb65eccb382a9d1b99c0aa15a10a0cf27b5c25814af7ee4bdbe5a2cd5c
SIZE (PEAR/Services_W3C_CSSValidator-0.1.0.tgz) = 8397

View file

@ -0,0 +1,11 @@
This package provides an object oriented interface to the API
of the W3 CSS Validator application (http://jigsaw.w3.org/css-validator/).
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 a style sheet.
WWW: http://pear.php.net/package/Services_W3C_CSSValidator/
- Ditesh Shashikant Gathani
ditesh@gathani.org