2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2010-01-06 01:44:15 +00:00
|
|
|
* CakeHtmlReporter
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
2009-11-06 06:46:59 +00:00
|
|
|
* Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The Open Group Test Suite License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* @copyright Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-01-26 22:03:03 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
2010-01-10 00:37:37 +00:00
|
|
|
* @subpackage cake.tests.libs.reporter
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 1.2.0.4433
|
|
|
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-01-06 01:29:08 +00:00
|
|
|
include_once dirname(__FILE__) . DS . 'cake_base_reporter.php';
|
2010-01-06 01:44:15 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2009-09-13 17:11:37 +00:00
|
|
|
* CakeHtmlReporter Reports Results of TestSuites and Test Cases
|
|
|
|
* in an HTML format / context.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-09-13 17:11:37 +00:00
|
|
|
* @package cake
|
2010-01-03 05:33:17 +00:00
|
|
|
* @subpackage cake.tests.lib
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-01-09 15:55:58 +00:00
|
|
|
class CakeHtmlReporter extends CakeBaseReporter {
|
2010-01-03 05:33:17 +00:00
|
|
|
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
|
|
|
* Paints the top of the web page setting the
|
|
|
|
* title to the name of the starting test.
|
2009-09-13 17:11:37 +00:00
|
|
|
*
|
|
|
|
* @param string $test_name Name class of test.
|
2010-01-06 01:56:25 +00:00
|
|
|
* @return void
|
2008-06-10 22:38:05 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function paintHeader($testName) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->sendNoCacheHeaders();
|
2010-01-09 16:20:47 +00:00
|
|
|
$this->paintDocumentStart();
|
2010-01-07 03:42:35 +00:00
|
|
|
$this->paintTestMenu();
|
2008-06-10 22:38:05 +00:00
|
|
|
echo "<h2>$testName</h2>\n";
|
|
|
|
echo "<ul class='tests'>\n";
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2010-01-07 03:42:35 +00:00
|
|
|
/**
|
2010-01-09 16:20:47 +00:00
|
|
|
* Paints the document start content contained in header.php
|
2010-01-07 03:42:35 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-15 02:56:51 +00:00
|
|
|
public function paintDocumentStart() {
|
2010-01-10 18:05:35 +00:00
|
|
|
ob_start();
|
2010-01-07 03:42:35 +00:00
|
|
|
$baseDir = $this->params['baseDir'];
|
|
|
|
include CAKE_TESTS_LIB . 'templates' . DS . 'header.php';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Paints the menu on the left side of the test suite interface.
|
|
|
|
* Contains all of the various plugin, core, and app buttons.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-15 02:56:51 +00:00
|
|
|
public function paintTestMenu() {
|
2010-01-09 16:20:47 +00:00
|
|
|
$groups = $this->baseUrl() . '?show=groups';
|
|
|
|
$cases = $this->baseUrl() . '?show=cases';
|
2010-01-07 04:02:37 +00:00
|
|
|
$plugins = App::objects('plugin');
|
2010-03-20 11:31:20 +00:00
|
|
|
sort($plugins);
|
2010-01-07 04:02:37 +00:00
|
|
|
include CAKE_TESTS_LIB . 'templates' . DS . 'menu.php';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves and paints the list of tests cases in an HTML format.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-15 02:56:51 +00:00
|
|
|
public function testCaseList() {
|
2010-01-09 15:55:58 +00:00
|
|
|
$testCases = parent::testCaseList();
|
|
|
|
$app = $this->params['app'];
|
|
|
|
$plugin = $this->params['plugin'];
|
|
|
|
|
|
|
|
$buffer = "<h3>Core Test Cases:</h3>\n<ul>";
|
|
|
|
$urlExtra = null;
|
|
|
|
if ($app) {
|
|
|
|
$buffer = "<h3>App Test Cases:</h3>\n<ul>";
|
|
|
|
$urlExtra = '&app=true';
|
|
|
|
} elseif ($plugin) {
|
|
|
|
$buffer = "<h3>" . Inflector::humanize($plugin) . " Test Cases:</h3>\n<ul>";
|
|
|
|
$urlExtra = '&plugin=' . $plugin;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (1 > count($testCases)) {
|
|
|
|
$buffer .= "<strong>EMPTY</strong>";
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($testCases as $testCaseFile => $testCase) {
|
|
|
|
$title = explode(strpos($testCase, '\\') ? '\\' : '/', str_replace('.test.php', '', $testCase));
|
|
|
|
$title[count($title) - 1] = Inflector::camelize($title[count($title) - 1]);
|
|
|
|
$title = implode(' / ', $title);
|
2010-01-09 16:20:47 +00:00
|
|
|
$buffer .= "<li><a href='" . $this->baseUrl() . "?case=" . urlencode($testCase) . $urlExtra ."'>" . $title . "</a></li>\n";
|
2010-01-09 15:55:58 +00:00
|
|
|
}
|
|
|
|
$buffer .= "</ul>\n";
|
|
|
|
echo $buffer;
|
2010-01-07 04:02:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves and paints the list of group tests in an HTML format.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-15 02:56:51 +00:00
|
|
|
public function groupTestList() {
|
2010-01-09 16:20:47 +00:00
|
|
|
$groupTests = parent::groupTestList();
|
|
|
|
$app = $this->params['app'];
|
|
|
|
$plugin = $this->params['plugin'];
|
|
|
|
|
|
|
|
$buffer = "<h3>Core Test Groups:</h3>\n<ul>";
|
|
|
|
$urlExtra = null;
|
|
|
|
if ($app) {
|
|
|
|
$buffer = "<h3>App Test Groups:</h3>\n<ul>";
|
|
|
|
$urlExtra = '&app=true';
|
|
|
|
} else if ($plugin) {
|
|
|
|
$buffer = "<h3>" . Inflector::humanize($plugin) . " Test Groups:</h3>\n<ul>";
|
|
|
|
$urlExtra = '&plugin=' . $plugin;
|
|
|
|
}
|
|
|
|
|
|
|
|
$buffer .= "<li><a href='" . $this->baseURL() . "?group=all$urlExtra'>All tests</a></li>\n";
|
|
|
|
|
|
|
|
foreach ($groupTests as $groupTest) {
|
|
|
|
$buffer .= "<li><a href='" . $this->baseURL() . "?group={$groupTest}" . "{$urlExtra}'>" . $groupTest . "</a></li>\n";
|
|
|
|
}
|
|
|
|
$buffer .= "</ul>\n";
|
|
|
|
echo $buffer;
|
2010-01-07 03:42:35 +00:00
|
|
|
}
|
|
|
|
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
|
|
|
* Send the headers necessary to ensure the page is
|
|
|
|
* reloaded on every request. Otherwise you could be
|
|
|
|
* scratching your head over out of date test data.
|
2009-09-13 17:11:37 +00:00
|
|
|
*
|
2010-01-06 01:56:25 +00:00
|
|
|
* @return void
|
2008-06-10 22:38:05 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function sendNoCacheHeaders() {
|
2008-06-10 22:38:05 +00:00
|
|
|
if (!headers_sent()) {
|
|
|
|
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
|
|
|
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
|
|
|
|
header("Cache-Control: no-store, no-cache, must-revalidate");
|
|
|
|
header("Cache-Control: post-check=0, pre-check=0", false);
|
|
|
|
header("Pragma: no-cache");
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
|
|
|
* Paints the end of the test with a summary of
|
|
|
|
* the passes and failures.
|
2009-09-13 17:11:37 +00:00
|
|
|
*
|
|
|
|
* @param string $test_name Name class of test.
|
2010-01-06 01:56:25 +00:00
|
|
|
* @return void
|
2008-06-10 22:38:05 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function paintFooter($test_name) {
|
2008-06-10 22:38:05 +00:00
|
|
|
$colour = ($this->getFailCount() + $this->getExceptionCount() > 0 ? "red" : "green");
|
|
|
|
echo "</ul>\n";
|
|
|
|
echo "<div style=\"";
|
|
|
|
echo "padding: 8px; margin: 1em 0; background-color: $colour; color: white;";
|
|
|
|
echo "\">";
|
|
|
|
echo $this->getTestCaseProgress() . "/" . $this->getTestCaseCount();
|
|
|
|
echo " test cases complete:\n";
|
|
|
|
echo "<strong>" . $this->getPassCount() . "</strong> passes, ";
|
|
|
|
echo "<strong>" . $this->getFailCount() . "</strong> fails and ";
|
|
|
|
echo "<strong>" . $this->getExceptionCount() . "</strong> exceptions.";
|
|
|
|
echo "</div>\n";
|
2009-09-13 17:29:44 +00:00
|
|
|
echo '<div style="padding:0 0 5px;">';
|
|
|
|
echo '<p><strong>Time taken by tests (in seconds):</strong> ' . $this->_timeDuration . '</p>';
|
|
|
|
if (function_exists('memory_get_peak_usage')) {
|
|
|
|
echo '<p><strong>Peak memory use: (in bytes):</strong> ' . number_format(memory_get_peak_usage()) . '</p>';
|
|
|
|
}
|
2010-01-06 03:20:32 +00:00
|
|
|
echo $this->_paintLinks();
|
2009-09-13 17:29:44 +00:00
|
|
|
echo '</div>';
|
2010-01-10 03:35:29 +00:00
|
|
|
if (
|
|
|
|
isset($this->params['codeCoverage']) &&
|
|
|
|
$this->params['codeCoverage'] &&
|
|
|
|
class_exists('CodeCoverageManager')
|
|
|
|
) {
|
|
|
|
CodeCoverageManager::report();
|
|
|
|
}
|
2010-01-07 03:52:04 +00:00
|
|
|
$this->paintDocumentEnd();
|
2008-06-10 22:38:05 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2010-01-06 03:20:32 +00:00
|
|
|
/**
|
|
|
|
* Renders the links that for accessing things in the test suite.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-15 02:56:51 +00:00
|
|
|
protected function _paintLinks() {
|
2010-01-06 03:20:32 +00:00
|
|
|
$show = $query = array();
|
|
|
|
if (!empty($this->params['group'])) {
|
|
|
|
$show['show'] = 'groups';
|
|
|
|
} elseif (!empty($this->params['case'])) {
|
|
|
|
$show['show'] = 'cases';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($this->params['app'])) {
|
|
|
|
$show['app'] = $query['app'] = 'true';
|
|
|
|
}
|
|
|
|
if (!empty($this->params['plugin'])) {
|
|
|
|
$show['plugin'] = $query['plugin'] = $this->params['plugin'];
|
|
|
|
}
|
|
|
|
if (!empty($this->params['case'])) {
|
|
|
|
$query['case'] = $this->params['case'];
|
|
|
|
} elseif (!empty($this->params['group'])) {
|
|
|
|
$query['group'] = $this->params['group'];
|
|
|
|
}
|
|
|
|
$show = $this->_queryString($show);
|
|
|
|
$query = $this->_queryString($query);
|
|
|
|
|
2010-01-09 16:25:35 +00:00
|
|
|
echo "<p><a href='" . $this->baseUrl() . $show . "'>Run more tests</a> | <a href='" . $this->baseUrl() . $query . "&show_passes=1'>Show Passes</a> | \n";
|
2010-01-09 16:20:47 +00:00
|
|
|
echo " <a href='" . $this->baseUrl() . $query . "&code_coverage=true'>Analyze Code Coverage</a></p>\n";
|
2010-01-06 03:20:32 +00:00
|
|
|
}
|
2010-01-07 03:52:04 +00:00
|
|
|
|
2010-01-06 03:20:32 +00:00
|
|
|
/**
|
|
|
|
* Convert an array of parameters into a query string url
|
|
|
|
*
|
|
|
|
* @param array $url Url hash to be converted
|
|
|
|
* @return string Converted url query string
|
|
|
|
*/
|
2010-04-15 02:56:51 +00:00
|
|
|
protected function _queryString($url) {
|
2010-01-06 03:20:32 +00:00
|
|
|
$out = '?';
|
|
|
|
$params = array();
|
|
|
|
foreach ($url as $key => $value) {
|
|
|
|
$params[] = "$key=$value";
|
|
|
|
}
|
|
|
|
$out .= implode('&', $params);
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
2010-01-07 03:52:04 +00:00
|
|
|
/**
|
2010-01-09 16:20:47 +00:00
|
|
|
* Paints the end of the document html.
|
2010-01-07 03:52:04 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-15 02:56:51 +00:00
|
|
|
public function paintDocumentEnd() {
|
2010-01-07 03:52:04 +00:00
|
|
|
$baseDir = $this->params['baseDir'];
|
2010-04-15 03:24:44 +00:00
|
|
|
include CAKE_TESTS_LIB . 'templates/footer.php';
|
2010-01-10 17:34:55 +00:00
|
|
|
ob_end_flush();
|
2010-01-07 03:52:04 +00:00
|
|
|
}
|
|
|
|
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
|
|
|
* Paints the test failure with a breadcrumbs
|
|
|
|
* trail of the nesting test suites below the
|
|
|
|
* top level test.
|
2009-09-13 17:11:37 +00:00
|
|
|
*
|
2008-06-10 22:38:05 +00:00
|
|
|
* @param string $message Failure message displayed in
|
2009-09-13 17:11:37 +00:00
|
|
|
* the context of the other tests.
|
2010-01-06 01:56:25 +00:00
|
|
|
* @return void
|
2008-06-10 22:38:05 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function paintFail($message) {
|
2008-06-10 22:38:05 +00:00
|
|
|
parent::paintFail($message);
|
|
|
|
echo "<li class='fail'>\n";
|
|
|
|
echo "<span>Failed</span>";
|
|
|
|
echo "<div class='msg'>" . $this->_htmlEntities($message) . "</div>\n";
|
2010-01-06 01:52:22 +00:00
|
|
|
$breadcrumb = $this->getTestList();
|
2008-05-30 11:40:08 +00:00
|
|
|
array_shift($breadcrumb);
|
2008-06-10 22:38:05 +00:00
|
|
|
echo "<div>" . implode(" -> ", $breadcrumb) . "</div>\n";
|
|
|
|
echo "</li>\n";
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
|
|
|
* Paints the test pass with a breadcrumbs
|
|
|
|
* trail of the nesting test suites below the
|
|
|
|
* top level test.
|
2009-09-13 17:11:37 +00:00
|
|
|
*
|
|
|
|
* @param string $message Pass message displayed in the context of the other tests.
|
2010-01-06 01:56:25 +00:00
|
|
|
* @return void
|
2008-06-10 22:38:05 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function paintPass($message) {
|
2008-06-10 22:38:05 +00:00
|
|
|
parent::paintPass($message);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-01-06 03:20:32 +00:00
|
|
|
if (isset($this->params['show_passes']) && $this->params['show_passes']) {
|
2008-06-10 22:38:05 +00:00
|
|
|
echo "<li class='pass'>\n";
|
|
|
|
echo "<span>Passed</span> ";
|
2010-01-06 01:52:22 +00:00
|
|
|
$breadcrumb = $this->getTestList();
|
2008-05-30 11:40:08 +00:00
|
|
|
array_shift($breadcrumb);
|
2008-06-10 22:38:05 +00:00
|
|
|
echo implode(" -> ", $breadcrumb);
|
|
|
|
echo "<br />" . $this->_htmlEntities($message) . "\n";
|
|
|
|
echo "</li>\n";
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2008-06-10 22:38:05 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
|
|
|
* Paints a PHP error.
|
2009-09-13 17:11:37 +00:00
|
|
|
*
|
2008-06-10 22:38:05 +00:00
|
|
|
* @param string $message Message is ignored.
|
2010-01-06 01:56:25 +00:00
|
|
|
* @return void
|
2008-06-10 22:38:05 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function paintError($message) {
|
2008-06-10 22:38:05 +00:00
|
|
|
parent::paintError($message);
|
2008-12-13 23:40:36 +00:00
|
|
|
echo "<li class='error'>\n";
|
2008-06-10 22:38:05 +00:00
|
|
|
echo "<span>Error</span>";
|
|
|
|
echo "<div class='msg'>" . $this->_htmlEntities($message) . "</div>\n";
|
2010-01-06 01:52:22 +00:00
|
|
|
$breadcrumb = $this->getTestList();
|
2008-05-30 11:40:08 +00:00
|
|
|
array_shift($breadcrumb);
|
2008-06-10 22:38:05 +00:00
|
|
|
echo "<div>" . implode(" -> ", $breadcrumb) . "</div>\n";
|
|
|
|
echo "</li>\n";
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
|
|
|
* Paints a PHP exception.
|
2009-09-13 17:11:37 +00:00
|
|
|
*
|
2008-06-10 22:38:05 +00:00
|
|
|
* @param Exception $exception Exception to display.
|
2010-01-06 01:56:25 +00:00
|
|
|
* @return void
|
2008-06-10 22:38:05 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function paintException($exception) {
|
2008-06-10 22:38:05 +00:00
|
|
|
parent::paintException($exception);
|
|
|
|
echo "<li class='fail'>\n";
|
|
|
|
echo "<span>Exception</span>";
|
|
|
|
$message = 'Unexpected exception of type [' . get_class($exception) .
|
|
|
|
'] with message ['. $exception->getMessage() .
|
|
|
|
'] in ['. $exception->getFile() .
|
|
|
|
' line ' . $exception->getLine() . ']';
|
|
|
|
echo "<div class='msg'>" . $this->_htmlEntities($message) . "</div>\n";
|
2010-01-06 01:52:22 +00:00
|
|
|
$breadcrumb = $this->getTestList();
|
2008-05-30 11:40:08 +00:00
|
|
|
array_shift($breadcrumb);
|
2008-06-10 22:38:05 +00:00
|
|
|
echo "<div>" . implode(" -> ", $breadcrumb) . "</div>\n";
|
|
|
|
echo "</li>\n";
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
|
|
|
* Prints the message for skipping tests.
|
2009-09-13 17:11:37 +00:00
|
|
|
*
|
2010-01-06 01:56:25 +00:00
|
|
|
* @param string $message Text of skip condition.
|
|
|
|
* @return void
|
2008-06-10 22:38:05 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function paintSkip($message) {
|
2008-06-10 22:38:05 +00:00
|
|
|
parent::paintSkip($message);
|
|
|
|
echo "<li class='skipped'>\n";
|
|
|
|
echo "<span>Skipped</span> ";
|
|
|
|
echo $this->_htmlEntities($message);
|
|
|
|
echo "</li>\n";
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
|
|
|
* Paints formatted text such as dumped variables.
|
2009-09-13 17:11:37 +00:00
|
|
|
*
|
2008-06-10 22:38:05 +00:00
|
|
|
* @param string $message Text to show.
|
2010-01-06 01:56:25 +00:00
|
|
|
* @return void
|
2008-06-10 22:38:05 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function paintFormattedMessage($message) {
|
2008-06-10 22:38:05 +00:00
|
|
|
echo '<pre>' . $this->_htmlEntities($message) . '</pre>';
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-10 22:38:05 +00:00
|
|
|
/**
|
|
|
|
* Character set adjusted entity conversion.
|
2009-09-13 17:11:37 +00:00
|
|
|
*
|
2008-06-10 22:38:05 +00:00
|
|
|
* @param string $message Plain text or Unicode message.
|
|
|
|
* @return string Browser readable message.
|
|
|
|
*/
|
2010-04-05 03:21:28 +00:00
|
|
|
protected function _htmlEntities($message) {
|
2010-01-09 16:20:47 +00:00
|
|
|
return htmlentities($message, ENT_COMPAT, $this->_characterSet);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|