Parent Directory
|
Revision Log
Experimental xmlrpc WeBWorK webservices
1 ############################################################################### 2 # 3 # Sub Name: identity 4 # 5 # Description: Simply returns the server's identity as a string 6 # 7 # Arguments: First arg is server instance 8 # 9 # Globals: None. 10 # 11 # Returns: string 12 # 13 ############################################################################### 14 sub identity 15 { 16 use strict; 17 18 sprintf('%s/%s', ref($_[0]), $_[0]->version); 19 }
| aubreyja at gmail dot com | ViewVC Help |
| Powered by ViewVC 1.0.9 |