diff options
Diffstat (limited to 'server/xml/macros/oejentryk-1.0.xml')
-rw-r--r-- | server/xml/macros/oejentryk-1.0.xml | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/server/xml/macros/oejentryk-1.0.xml b/server/xml/macros/oejentryk-1.0.xml index f796580..fb6cca4 100644 --- a/server/xml/macros/oejentryk-1.0.xml +++ b/server/xml/macros/oejentryk-1.0.xml @@ -15,22 +15,22 @@ <resume language="lua"> out = '' - if ( getValue('tonometer.odxt.missing') == '' or getValue('tonometer.osin.missing') == '' ) + if ( getValue('tonometer.mangler.odxt') == '' or getValue('tonometer.mangler.osin') == '' ) then out = out .. 'Øjentryk:\n' end - if ( getValue('tonometer.odxt.missing') == '' ) + if ( getValue('tonometer.mangler.odxt') == '' ) then out = out .. 'o.dxt: ' .. getValue('tonometer.pressure.odxt') .. ' mmHg\n' end - if ( getValue('tonometer.osin.missing') == '' ) + if ( getValue('tonometer.mangler.osin') == '' ) then out = out .. 'o.sin: ' .. getValue('tonometer.pressure.odxt') .. ' mmHg\n' end - if ( getValue('tonometer.odxt.missing') == '' or getValue('tonometer.osin.missing') == '' ) + if ( getValue('tonometer.mangler.odxt') == '' or getValue('tonometer.mangler.osin') == '' ) then out = out .. getValue('tonometer.device') .. '.\n' end @@ -38,46 +38,46 @@ return out </resume> <queries> - <query service="pracro" class="missing_eye_right" ttl="1000000"/> - <query service="pracro" class="missing_eye_left" ttl="1000000"/> + <query service="pracro" class="missing_eye_odxt" ttl="1000000"/> + <query service="pracro" class="missing_eye_osin" ttl="1000000"/> </queries> <maps> - <map name="missing_eye_right_map"> + <map name="missing_eye_odxt_map"> value = 0 timestamp = 0 source = '' - if( missing_eye_right ) + if( missing_eye_odxt ) then - if( missing_eye_right.value and missing_eye_right.value == '' ) + if( missing_eye_odxt.value and missing_eye_odxt.value == '' ) then value = '' - timestamp = missing_eye_right.timestamp - source = missing_eye_right.source + timestamp = missing_eye_odxt.timestamp + source = missing_eye_odxt.source else value = 'mangler' - timestamp = missing_eye_right.timestamp - source = missing_eye_right.source + timestamp = missing_eye_odxt.timestamp + source = missing_eye_odxt.source end end return value, timestamp, source </map> - <map name="missing_eye_left_map"> + <map name="missing_eye_osin_map"> value = 0 timestamp = 0 source = '' - if( missing_eye_left ) + if( missing_eye_osin ) then - if( missing_eye_left.value and missing_eye_left.value == '' ) + if( missing_eye_osin.value and missing_eye_osin.value == '' ) then value = '' - timestamp = missing_eye_left.timestamp - source = missing_eye_left.source + timestamp = missing_eye_osin.timestamp + source = missing_eye_osin.source else value = 'mangler' - timestamp = missing_eye_left.timestamp - source = missing_eye_left.source + timestamp = missing_eye_osin.timestamp + source = missing_eye_osin.source end end return value, timestamp, source @@ -106,7 +106,7 @@ enable('right_eye_frame') end - if( getValue('tonometer.odxt.missing') == 'mangler' and getValue('tonometer.osin.missing') == 'mangler' ) + if( getValue('tonometer.mangler.odxt') == 'mangler' and getValue('tonometer.mangler.osin') == 'mangler' ) then disable('device_frame') else @@ -123,7 +123,7 @@ enable('left_eye_frame') end - if( getValue('tonometer.odxt.missing') == 'mangler' and getValue('tonometer.osin.missing') == 'mangler' ) + if( getValue('tonometer.mangler.odxt') == 'mangler' and getValue('tonometer.mangler.osin') == 'mangler' ) then disable('device_frame') else @@ -141,8 +141,8 @@ <!-- o.dxt --> <frame layout="vbox"> <checkbox caption="Der er ikke målt på o.dxt" - name="tonometer.odxt.missing" script="right_eye" - map="missing_eye_right_map" + name="tonometer.mangler.odxt" script="right_eye" + map="missing_eye_odxt_map" truevalue="mangler" falsevalue="" value=""/> <frame name="right_eye_frame" caption="o.dxt" layout="hbox"> <label caption="Tryk:"/> @@ -156,8 +156,8 @@ <!-- o.sin --> <frame layout="vbox"> <checkbox caption="Der er ikke målt på o.sin" - name="tonometer.osin.missing" script="left_eye" - map="missing_eye_left_map" + name="tonometer.mangler.osin" script="left_eye" + map="missing_eye_osin_map" truevalue="mangler" falsevalue="" value=""/> <frame name="left_eye_frame" caption="o.sin" layout="hbox"> <label caption="Tryk:"/> |