Adding the $Id tag to some scripts to allow better changes detection.

(soory, I deleted a few trailing spaces within comments...)
This commit is contained in:
stronk7 2007-08-29 10:48:44 +00:00
parent d6125c4ad5
commit b16393cb07
7 changed files with 16 additions and 16 deletions

View File

@ -1,4 +1,4 @@
<?php
<?php // $Id$
/**
* Info about the local environment, wrt RPC
*

View File

@ -1,4 +1,4 @@
<?php
<?php // $Id$
/**
* Library functions for mnet
*

View File

@ -1,4 +1,4 @@
<?php
<?php // $Id$
/**
* An object to represent lots of information about an RPC-peer machine
*

View File

@ -1,7 +1,7 @@
<?php
<?php // $Id$
/**
* Print this server's public key and exit
*
*
* @author Donal McMullan donal@catalyst.net.nz
* @version 0.0.1
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License

View File

@ -1,7 +1,7 @@
<?php
<?php // $Id$
/**
* An object to represent lots of information about an RPC-peer machine
*
*
* @author Donal McMullan donal@catalyst.net.nz
* @version 0.0.1
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
@ -69,4 +69,4 @@ class mnet_remote_client extends mnet_peer {
return false;
}
}
?>
?>

View File

@ -1,12 +1,12 @@
<?php
<?php // $Id$
/**
* Some dummy functions to test XML-RPC with
*/
/**
* The xxxx_RPC_OK must exist and return TRUE for the remote call to be
* The xxxx_RPC_OK must exist and return TRUE for the remote call to be
* permitted
*
*
* @return bool True if the related function can be executed remotely
*/
function mnet_concatenate_strings_RPC_OK() {
@ -77,4 +77,4 @@ class testClass {
}
}
?>
?>

View File

@ -1,12 +1,12 @@
<?php
<?php // $Id$
/**
* A template to test Moodle's XML-RPC feature
*
* This script 'remotely' executes the mnet_concatenate_strings function in
*
* This script 'remotely' executes the mnet_concatenate_strings function in
* mnet/testlib.php
* It steps through each stage of the process, printing some data as it goes
* along. It should help you to get your remote method working.
*
*
* @author Donal McMullan donal@catalyst.net.nz
* @version 0.0.1
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License