Parent Directory
|
Revision Log
switching to file system backend for testing
1 | <?php |
2 | |
3 | function barf($client) { |
4 | print "<pre>\n"; |
5 | print "Request:\n".htmlspecialchars($client->__getLastRequest()) ."\n"; |
6 | print "Response:\n".htmlspecialchars($client->__getLastResponse())."\n"; |
7 | print "</pre>"; |
8 | |
9 | print "<pre>"; |
10 | print_r($client->__getTypes()); |
11 | print "</pre>"; |
12 | |
13 | } |
14 | |
15 | function barf_min($client) { |
16 | print "<pre>\n"; |
17 | print "Request:\n".htmlspecialchars($client->__getLastRequest()) ."\n"; |
18 | print "Response:\n".htmlspecialchars($client->__getLastResponse())."\n"; |
19 | print "</pre>"; |
20 | } |
21 | |
22 | function barf_var($var) { |
23 | print "<pre>\n"; |
24 | var_dump($var); |
25 | print "</pre>"; |
26 | } |
27 | |
28 | ?> |
msdemlei@ari.uni-heidelberg.de | ViewVC Help |
Powered by ViewVC 1.1.26 |