Reverse to YUI 3.0.0 since with YUI.3.10.3, comment content including words 'paragraph' or 'section' do not show up on Firefox, this is weird and has to be investigated.
def get_among(dico,key,allowed,default):
res = dico.get(key, None)
if not res or res not in allowed:
return default
else:
return res
def get_int(dico, key, default):
try:
return int(dico.get(key, default))
except ValueError:
return default