added page response to server.py requests

This commit is contained in:
Rushabh Mehta 2012-08-02 13:07:59 +05:30
parent 89901c047b
commit 7c6c2bc2ca

View file

@ -188,11 +188,11 @@ def handle():
except: except:
webnotes.errprint(webnotes.utils.getTraceback()) webnotes.errprint(webnotes.utils.getTraceback())
webnotes.conn and webnotes.conn.rollback() webnotes.conn and webnotes.conn.rollback()
print_response()
if webnotes.conn: if webnotes.conn:
webnotes.conn.close() webnotes.conn.close()
print_response()
def execute_cmd(cmd): def execute_cmd(cmd):
"""execute a request as python module""" """execute a request as python module"""
@ -259,9 +259,17 @@ def print_response():
print_iframe() print_iframe()
elif webnotes.response.get('type')=='download': elif webnotes.response.get('type')=='download':
print_raw() print_raw()
elif webnotes.response.get('type')=='page':
print_page()
else: else:
print_json() print_json()
def print_page():
"""print web page"""
from website.utils import render
render(webnotes.response['page_name'])
def print_csv(): def print_csv():
print "Content-Type: text/csv" print "Content-Type: text/csv"
print "Content-Disposition: attachment; filename="+webnotes.response['doctype'].replace(' ', '_')+".csv" print "Content-Disposition: attachment; filename="+webnotes.response['doctype'].replace(' ', '_')+".csv"