def get(self, id):
		source = html_escape(reportdb.get_file(id))
		self.response.out.write("<pre>"+source+"</pre>")
Beispiel #2
0
 def retrieve_file(self, index):
     return reportdb.get_file(index)
	def retrieve_file(self, index):
		return reportdb.get_file(index)
Beispiel #4
0
 def get(self, id):
     source = html_escape(reportdb.get_file(id))
     self.response.out.write("<pre>" + source + "</pre>")