Mercurial > hg > webaudioevaluationtool
changeset 2132:93a87f26323c
Merge
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Tue, 23 Feb 2016 17:57:21 +0000 |
parents | ade3acb0cee3 (diff) 0038731dc1fe (current diff) |
children | 4213eaa52b72 |
files | core.css core.js demo.html docs/Instructions/Instructions.pdf docs/Instructions/Instructions.tex example_eval/horizontal_example.xml interfaces/AB.css interfaces/AB.js interfaces/ape.js interfaces/blank.js interfaces/discrete.js interfaces/horizontal-sliders.js interfaces/mushra.js loudness.js save.php scripts/evaluation_stats.py scripts/generate_report.py scripts/score_parser.php scripts/timeline_view_movement.py test-schema.xsd test_create/style.css test_create/test_core.js test_create/test_create.html |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/score_parser.php Tue Feb 23 17:56:23 2016 +0000 +++ b/scripts/score_parser.php Tue Feb 23 17:57:21 2016 +0000 @@ -174,9 +174,9 @@ foreach($page->nest as $axis) { foreach($axis->nest as $element) { foreach($element->nest as $value) { - $doc_string = $doc_string.$page->id; - $doc_string = $doc_string.$axis->id; - $doc_string = $doc_string.$element->id; + $doc_string = $doc_string.$page->id.','; + $doc_string = $doc_string.$axis->id.','; + $doc_string = $doc_string.$element->id.','; $doc_string = $doc_string.$value; $doc_string = $doc_string."\r\n"; }