I had the problem with the headers resolved by getting rid of the
print statements and replacing with ...self.response.out.write.
the following had to be replaced with
......
print "Content-type: text/html"
print
print data_table.ToJSonResponse(columns_order=("name", "city"),
order_by="city")
......
self.response.out.write(data_table.ToJSonResponse(columns_order=
("name", "city"),
order_by="city"))
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-visualization-api?hl=en
-~----------~----~----~----~------~----~------~--~---