synced with gluino

This commit is contained in:
mdipierro
2013-07-09 16:15:21 -05:00
parent 89e158cd1d
commit cadf0e946a
3 changed files with 8 additions and 5 deletions

View File

@@ -1 +1 @@
Version 2.6.0-development+timestamp.2013.07.08.08.46.42
Version 2.6.0-development+timestamp.2013.07.09.16.14.32

View File

@@ -39,9 +39,12 @@ import re
import cStringIO
from gluon import current, redirect
import inspect
import settings
is_gae = settings.global_settings.web2py_runtime_gae
try:
import settings
is_gae = settings.global_settings.web2py_runtime_gae
except ImportError:
is_gae = False

View File

@@ -800,8 +800,8 @@ class DummyResponse():
def write(self, data, escape=True):
if not escape:
self.body.write(str(data))
elif hasattr(data, 'as_html') and callable(data.as_html):
self.body.write(data.as_html())
elif hasattr(data, 'xml') and callable(data.xml):
self.body.write(data.xml())
else:
# make it a string
if not isinstance(data, (str, unicode)):