Mercurial > hg > webaudioevaluationtool
view php/pseudo.php @ 2568:4903cda56c2a
Timelines (Python): Y label and ticks as on interface
E.g. if the scale is called 'Spatial quality', this will be the Y label, and if ticks are 'Poor / Okay / Great' at 25%/50%/70%', these will be the Y ticks.
author | Brecht De Man <b.deman@qmul.ac.uk> |
---|---|
date | Mon, 17 Oct 2016 10:33:51 +0200 |
parents | d26623bd65e0 |
children | 54df1a21bf84 |
line wrap: on
line source
<?php header('Access-Control-Allow-Origin: *'); header("Content-type: text/xml"); header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache"); $files = glob('../saves/' . '*.xml'); $numsaves = 0; if ( $files !== false ) { $numsaves = count( $files ); } $files = glob('../tests/' . '*.xml'); $numtests = 0; if ( $numtests !== false ) { $numtests = count( $files ); } $testID = ($numsaves % $numtests); readfile($files[$testID]); ?>