function lttoxml(value)
value = string.gsub(value, '<', '<')
return value
end
out = ''
if ( getValue('visus.template.mangler.odxt') == '' or getValue('visus.template.mangler.osin') == '' or getValue('visus.template.ou') ~= '' )
then
out = out .. 'Visus template:\n'
end
if ( getValue('visus.template.mangler.odxt') == '' )
then
out = out .. 'o.dxt: '
if ( getValue('visus.template.snellen.odxt') ~= '' )
then
out = out .. lttoxml(getValue('visus.template.snellen.odxt'))
if ( getValue('visus.template.etdrs.odxt') == '' )
then
out = out .. ', '
end
end
if ( getValue('visus.template.etdrs.odxt') ~= '' )
then
if ( getValue('visus.template.snellen.odxt') ~= '' )
then
out = out .. ', '
end
out = out .. getValue('visus.template.etdrs.odxt') .. ' ETDRS, '
end
if ( getValue('visus.template.kontrast.odxt') ~= '' )
then
out = out .. getValue('visus.template.kontrast.odxt') .. ' kontrast, '
end
out = out .. 'cc ' .. getValue('visus.template.korr.sf.odxt') .. ' sf'
if ( getValue('visus.template.korr.cyl.odxt') ~= '' )
then
out = out .. ', ' .. getValue('visus.template.korr.cyl.odxt') .. ' cyl'
end
if ( getValue('visus.template.korr.grader.odxt') ~= '' )
then
out = out .. ', ' .. getValue('visus.template.korr.grader.odxt') .. ' grader'
end
out = out .. ', add ' .. getValue('visus.template.add.sf.odxt') .. ' sf'
if ( getValue('visus.template.add.cyl.odxt') ~= '' )
then
out = out .. ', ' .. getValue('visus.template.add.cyl.odxt') .. ' cyl'
end
if ( getValue('visus.template.add.grader.odxt') ~= '' )
then
out = out .. ', ' .. getValue('visus.template.add.grader.odxt') .. ' grader'
end
if ( getValue('visus.template.st_hul.odxt') ~= '' )
then
if ( getValue('visus.template.st_hul.snellen.odxt') ~= '' )
then
out = out .. ', ' .. lttoxml(getValue('visus.template.st_hul.snellen.odxt'))
end
if ( getValue('visus.template.st_hul.etdrs.odxt') ~= '' )
then
out = out .. ', ' .. getValue('visus.template.st_hul.etdrs.odxt') .. ' ETDRS'
end
out = out .. ' st.h.'
end
out = out .. '\n'
end
if ( getValue('visus.template.mangler.osin') == '' )
then
out = out .. 'o.sin: '
if ( getValue('visus.template.snellen.osin') ~= '' )
then
out = out .. lttoxml(getValue('visus.template.snellen.osin'))
if ( getValue('visus.template.etdrs.osin') == '' )
then
out = out .. ', '
end
end
if ( getValue('visus.template.etdrs.osin') ~= '' )
then
if ( getValue('visus.template.snellen.osin') ~= '' )
then
out = out .. ', '
end
out = out .. getValue('visus.template.etdrs.osin') .. ' ETDRS, '
end
if ( getValue('visus.template.kontrast.osin') ~= '' )
then
out = out .. getValue('visus.template.kontrast.osin') .. ' kontrast, '
end
out = out .. 'cc ' .. getValue('visus.template.korr.sf.osin') .. ' sf'
if ( getValue('visus.template.korr.cyl.osin') ~= '' )
then
out = out .. ', ' .. getValue('visus.template.korr.cyl.osin') .. ' cyl'
end
if ( getValue('visus.template.korr.grader.osin') ~= '' )
then
out = out .. ', ' .. getValue('visus.template.korr.grader.osin') .. ' grader'
end
out = out .. ', add ' .. getValue('visus.template.add.sf.osin') .. ' sf'
if ( getValue('visus.template.add.cyl.osin') ~= '' )
then
out = out .. ', ' .. getValue('visus.template.add.cyl.osin') .. ' cyl'
end
if ( getValue('visus.template.add.grader.osin') ~= '' )
then
out = out .. ', ' .. getValue('visus.template.add.grader.osin') .. ' grader'
end
if ( getValue('visus.template.st_hul.osin') ~= '' )
then
if ( getValue('visus.template.st_hul.snellen.osin') ~= '' )
then
out = out .. ', ' .. lttoxml(getValue('visus.template.st_hul.snellen.osin'))
end
if ( getValue('visus.template.st_hul.etdrs.osin') ~= '' )
then
out = out .. ', ' .. getValue('visus.template.st_hul.etdrs.osin') .. ' ETDRS'
end
out = out .. ' st.h.\n'
end
out = out .. '\n'
end
if ( getValue('visus.template.ou') ~= '' )
then
out = out .. 'o.u: '
if ( getValue('visus.template.snellen.ou') ~= '' )
then
out = out .. lttoxml(getValue('visus.template.snellen.ou'))
end
if ( getValue('visus.template.etdrs.ou') ~= '' )
then
if ( getValue('visus.template.snellen.ou') ~= '' )
then
out = out .. ', '
end
out = out .. getValue('visus.template.etdrs.ou') .. ' ETDRS'
end
if ( getValue('visus.template.kontrast.ou') ~= '' )
then
out = out .. ', ' .. getValue('visus.template.kontrast.ou') .. ' kontrast'
end
end
return out