|
From: <av...@us...> - 2003-11-05 17:45:31
|
Update of /cvsroot/sieve-php/sieve-php In directory sc8-pr-cvs1:/tmp/cvs-serv24132 Modified Files: testsieve_config.php testsieve.php test.php Log Message: phpdoc documentation updates Index: testsieve_config.php =================================================================== RCS file: /cvsroot/sieve-php/sieve-php/testsieve_config.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** testsieve_config.php 22 Oct 2003 12:56:21 -0000 1.1 --- testsieve_config.php 5 Nov 2003 17:34:45 -0000 1.2 *************** *** 1,13 **** <?php ! ! /* This is a test file to examine whether sieve-php.lib can interact with your ! * sieve server properly. * * Modify the information below and run testsieve.php after installing the * library. */ ! /* Modify these variable to match your account and server settings */ $server = "mail.example.com"; --- 1,19 ---- <?php ! /** ! * This is the configuration for the test script, testsieve.php, so as to ! * examine whether sieve-php.lib can interact with your sieve server properly. * * Modify the information below and run testsieve.php after installing the * library. + * + * @author Alexandros Vellis + * @package sieve-php */ ! /** ! * These variable have to be modified so as to match your account and server ! * settings ! */ $server = "mail.example.com"; Index: testsieve.php =================================================================== RCS file: /cvsroot/sieve-php/sieve-php/testsieve.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** testsieve.php 5 Nov 2003 15:48:57 -0000 1.8 --- testsieve.php 5 Nov 2003 17:34:45 -0000 1.9 *************** *** 1,5 **** <?php ! ! /* * $Id$ * --- 1,9 ---- <?php ! /** ! * This is a test file to examine whether sieve-php.lib can interact with your ! * sieve server properly. ! * ! * Run this script after installing the library. ! * * $Id$ * *************** *** 8,19 **** * See the enclosed file COPYING for license information (GPL). If you * did not receive this file, see http://www.fsf.org/copyleft/gpl.html. */ ! /* This is a test file to examine whether sieve-php.lib can interact with your sieve server properly. ! Run this script after installing the library. */ ! ! include "./sieve-php.lib"; include "./testsieve_config.php"; - /* You should not need to modify anything below this line */ --- 12,22 ---- * See the enclosed file COPYING for license information (GPL). If you * did not receive this file, see http://www.fsf.org/copyleft/gpl.html. + * + * @author Dan Ellis + * @package sieve-php */ ! include "./sieve-php.lib.php"; include "./testsieve_config.php"; /* You should not need to modify anything below this line */ Index: test.php =================================================================== RCS file: /cvsroot/sieve-php/sieve-php/test.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** test.php 5 Nov 2003 15:48:56 -0000 1.13 --- test.php 5 Nov 2003 17:34:45 -0000 1.14 *************** *** 1,5 **** <?php ! ! /* * $Id$ * --- 1,6 ---- <?php ! /** ! * Test Script for sieve-php library. ! * * $Id$ * *************** *** 8,14 **** * See the enclosed file COPYING for license information (GPL). If you * did not receive this file, see http://www.fsf.org/copyleft/gpl.html. */ ! include "./sieve-php.lib"; if(isset($_POST['action'])) { --- 9,19 ---- * See the enclosed file COPYING for license information (GPL). If you * did not receive this file, see http://www.fsf.org/copyleft/gpl.html. + * + * @author Dan Ellis + * @package sieve-php */ ! ! include_once "./sieve-php.lib.php"; if(isset($_POST['action'])) { |