diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
commit | 1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch) | |
tree | 3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dijit/bench/benchReceive.php | |
parent | 104d59099e048688c4dbac37d72137006e396558 (diff) | |
download | semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.bz2 |
Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dijit/bench/benchReceive.php')
-rw-r--r-- | includes/js/dijit/bench/benchReceive.php | 129 |
1 files changed, 0 insertions, 129 deletions
diff --git a/includes/js/dijit/bench/benchReceive.php b/includes/js/dijit/bench/benchReceive.php deleted file mode 100644 index 6330077..0000000 --- a/includes/js/dijit/bench/benchReceive.php +++ /dev/null @@ -1,129 +0,0 @@ -<?php -/* - - benchReceive.php - example way to handle incoming benchmark data, - or how to use JSON php class to mangle data. No benchmark data - is stored currently. - --- --- Table structure for table `benchmarks` --- - -CREATE TABLE `benchmarks` ( - `id` int(11) NOT NULL auto_increment, - `useragent` varchar(242) NOT NULL default '', - `dojover` varchar(96) NOT NULL default '', - `testNum` int(11) NOT NULL default '0', - `dijit` varchar(64) NOT NULL default '', - `testCount` int(11) NOT NULL default '0', - `testAverage` float NOT NULL default '0', - `testMethod` varchar(10) NOT NULL default '', - `testTime` bigint(20) NOT NULL default '0', - `dataSet` varchar(64) NOT NULL default '', - PRIMARY KEY (`id`), - KEY `dijit` (`dijit`,`testAverage`), - KEY `dataSet` (`dataSet`) -) TYPE=MyISAM; - --- --- [end table struct] -- - -*/ - -if (is_array($_POST)) { - - $username = ''; - $password = ''; - $dataBase = ''; - $table = ''; - - mysql_connect("localhost",$username,$password); - mysql_select_db($dataBase); - - require("../../dojo/tests/resources/JSON.php"); - $json = new Services_JSON(); - - // see "escape()" call in benchTest.html - $string = $json->decode(urldecode($_POST['key'])); - // $string = $json->decode($_POST['key']); - - print "<h1>Thank YOU!</h1>"; - print " - <p>Your results have been added to our database. No - personal information outside of what you see here - has been stored. - </p> - - <p>You can <a href= \"javascript:history.back()\">go back</a> - and run more tests, or even better, load up another browser - and the submit your tests again! - </p> - - <p>again ... thanks for your time.</p> - - "; - - print "<h3>Results Submitted:</h3>"; - print "<pre style=\"font:6pt Terminal,sans-serif; border:1px solid #cecece; background-color:#ededed; padding:20px; \">"; - - $ua = $string->clientNavigator; - $dojov = $string->dojoVersion; - - print "Client: ".$ua."\n"; - print "Dojo v".$dojov."\n"; - - if (is_array($string->dataSet)) { - print "\nTest Results:"; - // should client serialize a key, or is this safer? - $dataSet = md5(serialize($string)); - foreach ($string->dataSet as $test) { - $data = array( - 'dataSet' => $dataSet, - 'useragent' => $ua, - 'dojover' => $dojov, - 'testNum' => $test->testNum, - 'testMethod' => $test->testMethod, - 'testTime' => $test->testTime, - 'testAverage' => $test->testAverage, - 'testCount' => $test->testCount, - 'dijit' => $test->dijit - ); - print_r($data); - add_rec($table,$data); - } - } - - if (is_array($string->errors)) { - // not saving errors at this point - print "\nErrors:"; - foreach ($string->errors as $error) { - print_r($error); - } - } - print "</pre>"; -} - -function add_rec($table, $data) { - - if (!is_array($data)) { return FALSE; } - - $keys = array_keys($data); - $values = array_values($data); - $field=0; - - for ($field;$field<sizeof($data);$field++) { - if (!ereg("^[0-9].*$",$keys[$field])) { - $sqlfields = $sqlfields.$keys[$field]."=\"".$values[$field]."\", "; - } - } - $sqlfields = (substr($sqlfields,0,(strlen($sqlfields)-2))); - - if ($query = mysql_query("insert into $table set $sqlfields")) { - $id = mysql_insert_id(); - return ($id); - }else{ - return FALSE; - } -} - -?> |