Skip to content

Commit

Permalink
Add cvs tag id, phpdoc additions, prep for 0.3.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
saltybeagle committed Jun 14, 2007
1 parent dd08ed8 commit 6d01c7c
Show file tree
Hide file tree
Showing 7 changed files with 69 additions and 30 deletions.
8 changes: 5 additions & 3 deletions HTMLValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
* This file contains the base class for utilizing an instance of the
* W3 HTML Validator.
*
* @license BSD
* @package Services_W3C_HTMLValidator
* @author Brett Bieber
* @license BSD
* @package Services_W3C_HTMLValidator
* @author Brett Bieber
* @link http://pear.php.net/package/Services_W3C_HTMLValidator
* @version CVS: $Id$
*/

/**
Expand Down
7 changes: 5 additions & 2 deletions HTMLValidator/Error.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
/**
* This file contains a simple class for error messages returned from the validator.
*
* @package Services_W3C_HTMLValidator
* @author Brett Bieber
* @license BSD
* @package Services_W3C_HTMLValidator
* @author Brett Bieber
* @link http://pear.php.net/package/Services_W3C_HTMLValidator
* @version CVS: $Id$
*/

/**
Expand Down
7 changes: 5 additions & 2 deletions HTMLValidator/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
/**
* This file provides a base class for messages from a W3C validator.
*
* @package Services_W3C_HTMLValidator
* @author Brett Bieber
* @license BSD
* @package Services_W3C_HTMLValidator
* @author Brett Bieber
* @link http://pear.php.net/package/Services_W3C_HTMLValidator
* @version CVS: $Id$
*/

/**
Expand Down
7 changes: 5 additions & 2 deletions HTMLValidator/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
* File contains a simple class structure for holding a response from the
* W3C HTMLValidator software.
*
* @package Services_W3C_HTMLValidator
* @author Brett Bieber
* @license BSD
* @package Services_W3C_HTMLValidator
* @author Brett Bieber
* @link http://pear.php.net/package/Services_W3C_HTMLValidator
* @version CVS: $Id$
*/

/**
Expand Down
7 changes: 5 additions & 2 deletions HTMLValidator/Warning.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
/**
* This file contains a simple class for warning messages returned from a validator.
*
* @package Services_W3C_HTMLValidator
* @author Brett Bieber
* @license BSD
* @package Services_W3C_HTMLValidator
* @author Brett Bieber
* @link http://pear.php.net/package/Services_W3C_HTMLValidator
* @version CVS: $Id$
*/

/**
Expand Down
15 changes: 8 additions & 7 deletions makepackage.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,14 @@
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');
$pfm->setAPIStability('alpha');
$pfm->setReleaseStability('alpha');
$pfm->setAPIVersion('0.2.0');
$pfm->setReleaseVersion('0.2.0');
$pfm->setNotes('Switch last remaining private member variable to protected (thanks Christian Weiske).
Move examples into docs directory (thanks Mark Wiesemann)
Change channel from pear.saltybeagle.com to pear.php.net
$pfm->setAPIStability('beta');
$pfm->setReleaseStability('beta');
$pfm->setAPIVersion('0.3.0');
$pfm->setReleaseVersion('0.3.0');
$pfm->setNotes('New features - return error and warning source context, unique message id, and explanations for the error and warnings.
http://www.w3.org/Bugs/Public/show_bug.cgi?id=4489
These features will be released in the next version of the W3C Validator (version 0.8.0), until the next release users can test the output by assigning the $validator->validator_uri to the CVS version for the validator http://qa-dev.w3.org/wmvs/HEAD/check.
');

//$pfm->addMaintainer('lead', 'saltybeagle', 'Brett Bieber', 'brett.bieber@gmail.com');
Expand Down
48 changes: 36 additions & 12 deletions package.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.4.11" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
<package packagerversion="1.5.4" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
<name>Services_W3C_HTMLValidator</name>
<channel>pear.php.net</channel>
<summary>An Object Oriented Interface to the W3C HTML Validator service.</summary>
Expand All @@ -14,20 +14,21 @@ By using the SOAP 1.2 output format from the validator, you are returned simple
<email>brett.bieber@gmail.com</email>
<active>yes</active>
</lead>
<date>2006-12-14</date>
<time>13:19:34</time>
<date>2007-06-14</date>
<time>16:12:56</time>
<version>
<release>0.2.0</release>
<api>0.2.0</api>
<release>0.3.0</release>
<api>0.3.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>Switch last remaining private member variable to protected (thanks Christian Weiske).
Move examples into docs directory (thanks Mark Wiesemann)
Change channel from pear.saltybeagle.com to pear.php.net
<notes>New features - return error and warning source context, unique message id, and explanations for the error and warnings.
http://www.w3.org/Bugs/Public/show_bug.cgi?id=4489

These features will be released in the next version of the W3C Validator (version 0.8.0), until the next release users can test the output by assigning the $validator-&gt;validator_uri to the CVS version for the validator http://qa-dev.w3.org/wmvs/HEAD/check.
</notes>
<contents>
<dir baseinstalldir="Services/W3C" name="/">
Expand All @@ -46,6 +47,13 @@ Change channel from pear.saltybeagle.com to pear.php.net
<file name="Response.php" role="php" />
<file name="Warning.php" role="php" />
</dir> <!-- /HTMLValidator -->
<dir name="tests">
<dir name="Services">
<dir name="W3C">
<file name="HTMLValidatorTest.php" role="test" />
</dir> <!-- /tests/Services/W3C -->
</dir> <!-- /tests/Services -->
</dir> <!-- /tests -->
<file name="HTMLValidator.php" role="php" />
</dir> <!-- / -->
</contents>
Expand Down Expand Up @@ -119,11 +127,27 @@ Move all variables which were int 0|1 to booleans (thanks Christian Weiske).</no
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2006-12-14</date>
<date>2007-06-07</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>Switch last remaining private member variable to protected (thanks Christian Weiske).
Move examples into docs directory (thanks Mark Wiesemann)
Change channel from pear.saltybeagle.com to pear.php.net
Change channel from pear.saltybeagle.com to pear.php.net</notes>
</release>
<release>
<version>
<release>0.3.0</release>
<api>0.3.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2007-06-14</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>New features - return error and warning source context, unique message id, and explanations for the error and warnings.
http://www.w3.org/Bugs/Public/show_bug.cgi?id=4489

These features will be released in the next version of the W3C Validator (version 0.8.0), until the next release users can test the output by assigning the $validator-&gt;validator_uri to the CVS version for the validator http://qa-dev.w3.org/wmvs/HEAD/check.
</notes>
</release>
</changelog>
Expand Down

0 comments on commit 6d01c7c

Please sign in to comment.