diff options
author | senator <senator> | 2009-11-16 10:50:00 +0000 |
---|---|---|
committer | senator <senator> | 2009-11-16 10:50:00 +0000 |
commit | 36492da266df3f7e66ad5a330c76af285d765fa7 (patch) | |
tree | 38e39e1635eea60bb7aa5e2c8af22f38e8d960ae /server/xml/macros/oct_maaling-1.0.xml | |
parent | 7864f9d561657a5b7d557268c50837ef3ee585f9 (diff) |
auto-replaced all instances of Højre øje and Venstre øje with o.dxt and o.sin. This was done using sed. These changes are not verified 100%, but i assume it went well. A quick check showed no errors.
Diffstat (limited to 'server/xml/macros/oct_maaling-1.0.xml')
-rw-r--r-- | server/xml/macros/oct_maaling-1.0.xml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/server/xml/macros/oct_maaling-1.0.xml b/server/xml/macros/oct_maaling-1.0.xml index e1edde1..45bad54 100644 --- a/server/xml/macros/oct_maaling-1.0.xml +++ b/server/xml/macros/oct_maaling-1.0.xml @@ -14,18 +14,18 @@ <macro name="oct_maaling" version="1.0"> <resume language="lua"> out = '' - if ( getValue('oct.right.missing') == '' or getValue('oct.left.missing') == '' ) + if ( getValue('oct.odxt.missing') == '' or getValue('oct.osin.missing') == '' ) then out = out .. 'Central nethindetykkelse:\n' - if ( getValue('oct.right.missing') == '' ) + if ( getValue('oct.odxt.missing') == '' ) then - out = out .. 'OCT o.dxt ' .. getValue('oct.right.thickness') .. ' µm\n' + out = out .. 'OCT o.dxt ' .. getValue('oct.odxt.thickness') .. ' µm\n' end - if ( getValue('oct.left.missing') == '' ) + if ( getValue('oct.osin.missing') == '' ) then - out = out .. 'OCT o.sin ' .. getValue('oct.left.thickness') .. ' µm\n' + out = out .. 'OCT o.sin ' .. getValue('oct.osin.thickness') .. ' µm\n' end end @@ -112,28 +112,28 @@ <frame layout="hbox"> - <!-- Højre øje --> + <!-- o.dxt --> <frame layout="vbox"> <checkbox caption="Der er ikke målt på højre øje" - name="oct.right.missing" script="right_eye" + name="oct.odxt.missing" script="right_eye" map="missing_eye_right_map" truevalue="mangler" falsevalue="" value=""/> - <frame name="right_eye_frame" caption="Højre øje" layout="hbox"> + <frame name="right_eye_frame" caption="o.dxt" layout="hbox"> <label caption="Tykkelse:"/> - <lineedit name="oct.right.thickness" regexp="\d{1,5}" script="lt10000gt0" value=""/> + <lineedit name="oct.odxt.thickness" regexp="\d{1,5}" script="lt10000gt0" value=""/> <label caption="µm"/> </frame> </frame> - <!-- Venstre øje --> + <!-- o.sin --> <frame layout="vbox"> <checkbox caption="Der er ikke målt på venstre øje" - name="oct.left.missing" script="left_eye" + name="oct.osin.missing" script="left_eye" map="missing_eye_left_map" truevalue="mangler" falsevalue="" value=""/> - <frame name="left_eye_frame" caption="Venstre øje" layout="hbox"> + <frame name="left_eye_frame" caption="o.sin" layout="hbox"> <label caption="Tykkelse:"/> - <lineedit name="oct.left.thickness" regexp="\d{1,5}" script="lt10000gt0" value=""/> + <lineedit name="oct.osin.thickness" regexp="\d{1,5}" script="lt10000gt0" value=""/> <label caption="µm"/> </frame> |