I am new to web2py and I have a problem understanding why all my apostrophes are replaced by '.
here is my table:
db.define_table('rooms',
Field('Name'),
Field('created_on','datetime',default=request.now,writable=False,readable=False))
below is my function:
@service.xml
def rooms():
ROOMS = db(db.rooms).select()
return ROOMS
this is what I what the result is.
<Name>Lady'sRoom</Name>
Any of you know what is going on here?

