Skip to content

Commit

Permalink
Updated package.xml, fixed dir structure vs unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CloCkWeRX committed Feb 15, 2010
1 parent df25a13 commit 8ce59f3
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 9 additions & 9 deletions makepackage.php
@@ -1,9 +1,9 @@
<?php
/**
* Generates the package.xml file for the Services_W3C_HTMLValidator package.
*
*
* PHP versions 5
*
*
* @category Services
* @package Services_W3C_HTMLValidator
* @author Brett Bieber <brett.bieber@gmail.com>
Expand All @@ -29,8 +29,8 @@
//$pfm = new PEAR_PackageFileManager2();
//$pfm->setOptions(array(
'packagedirectory' => dirname(__FILE__),
'baseinstalldir' => 'Services/W3C',
'filelistgenerator' => 'cvs',
'baseinstalldir' => '/',
'filelistgenerator' => 'svn',
'ignore' => array( 'package.xml',
'.project',
'*.tgz',
Expand All @@ -45,14 +45,14 @@
$pfm->setPackage('Services_W3C_HTMLValidator');
$pfm->setPackageType('php'); // this is a PEAR-style php script package
$pfm->setSummary('An Object Oriented Interface to the W3C HTML Validator service.');
$pfm->setDescription('This package provides an object oriented interface to the API
$pfm->setDescription('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
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.
By using the SOAP 1.2 output format from the validator, you are returned simple
objects containing all the information from the validator. With this package it is
By using the SOAP 1.2 output format from the validator, you are returned simple
objects containing all the information from the validator. With this package it is
trivial to build a validation system for web publishing.
');
$pfm->setChannel('pear.php.net');
Expand Down

0 comments on commit 8ce59f3

Please sign in to comment.