## Script (Python) "toUpper"
##bind container=container
##bind context=context
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=innstr
##title=
##
from string import upper
from string import replace
sfsdf
utstr = upper(innstr)
utstr = replace(utstr, 'æ', 'Æ')
utstr = replace(utstr, 'ø', 'Ø')
utstr = replace(utstr, 'å', 'Å')
utstr = replace(utstr, 'é', 'É')
utstr = replace(utstr, 'ã', 'Ã')
utstr = replace(utstr, 'õ', 'Õ')

return utstr
