# HG changeset patch # User Nicholas Jillings # Date 1498474779 -3600 # Node ID 033027759cf775749c26c43844aa702dfb0ba46b # Parent 97a52e326464e07c2ac05011b910ed308341c48e# Parent 47f187d4fc71dbfc4328674c3a3b56d4ed89353b Merge branch 'hot_fix' into vnext diff -r 97a52e326464 -r 033027759cf7 docs/Instructions/img/interface-AB.png Binary file docs/Instructions/img/interface-AB.png has changed diff -r 97a52e326464 -r 033027759cf7 docs/Instructions/img/interface-ABC.png Binary file docs/Instructions/img/interface-ABC.png has changed diff -r 97a52e326464 -r 033027759cf7 docs/Instructions/img/interface-ABX.png Binary file docs/Instructions/img/interface-ABX.png has changed diff -r 97a52e326464 -r 033027759cf7 docs/Instructions/img/interface-MUSHRA.png Binary file docs/Instructions/img/interface-MUSHRA.png has changed diff -r 97a52e326464 -r 033027759cf7 docs/Instructions/img/interface-ape.png Binary file docs/Instructions/img/interface-ape.png has changed diff -r 97a52e326464 -r 033027759cf7 docs/Instructions/img/interface-discrete.png Binary file docs/Instructions/img/interface-discrete.png has changed diff -r 97a52e326464 -r 033027759cf7 docs/Instructions/img/interface-horizontal.png Binary file docs/Instructions/img/interface-horizontal.png has changed diff -r 97a52e326464 -r 033027759cf7 docs/Instructions/img/interface-timeline.png Binary file docs/Instructions/img/interface-timeline.png has changed diff -r 97a52e326464 -r 033027759cf7 js/core.js --- a/js/core.js Tue May 09 16:11:11 2017 +0100 +++ b/js/core.js Mon Jun 26 11:59:39 2017 +0100 @@ -1198,9 +1198,9 @@ // First extract those excluded from picking process var picked = []; - pool.forEach(function (e) { + pool.forEach(function (e, i) { if (e.alwaysInclude) { - picked.push(e); + picked.push(pool.splice(i, 1)[0]); } }); diff -r 97a52e326464 -r 033027759cf7 python/score_parser.py --- a/python/score_parser.py Tue May 09 16:11:11 2017 +0100 +++ b/python/score_parser.py Mon Jun 26 11:59:39 2017 +0100 @@ -85,7 +85,7 @@ audioElement = page.find("./audioelement/[@ref='"+ fragmentname+ "']") # Get the element for value in audioElement.findall('./value'): axisName = value.get('interface-name') - if axisName == None: + if axisName == None or axisName == "null": axisName = 'default' axisStore = storage[page_name]['axis'][axisName] if hasattr(value, 'text'):