Removing "str(" and ".encode('utf-8', 'replace'))" strings from rss
function in gluon.serializers.py seems to solve the issue (at least it
worked for me).
def rss(feed):
if not 'entries' in feed and 'items' in feed:
feed['entries'] = feed['items']
now = datetime.datetime.now()
Imagine that I have an application called 'myapp' running in my local
web2py server, and I include this in routes.py to manage HTTP errors using
a custom controller (/myapp/portal/error_page):
routes_onerror = [
('myapp/*', '/myapp/portal/error_page'),
]
Then, when somebody access to myap
2 matches
Mail list logo