示例#1
0
 def get(self, key):
     if not key:
         logging.error( "no key found" ) 
     else:
         s = Summary.get(key)
         if s:
             template_values = {
                 'is_debug' : conf.DEBUG,
                  'summaryfile' : s.summary,
                  'name' : s.name
             }
             
             path = os.path.join( conf.APP_ROOT, 'templates', 'summary.html' )
             self.response.out.write( template.render( path, template_values ) )
示例#2
0
    def get(self, key):
        if not key:
            logging.error("no key found")
        else:
            s = Summary.get(key)
            if s:
                template_values = {
                    'is_debug': conf.DEBUG,
                    'summaryfile': s.summary,
                    'name': s.name,
                    'uniname': conf.UNINAME
                }

                path = os.path.join(conf.APP_ROOT, 'templates', 'summary.html')
                self.response.out.write(template.render(path, template_values))