Skip to content
This repository was archived by the owner on Sep 13, 2022. It is now read-only.

More about main.py

Nicholas Pringle edited this page May 6, 2013 · 1 revision

main.py

The WSGI application receives requests and dispatches the appropriate handler, returning a response to the client. It stores the URI routes that the app will accept, configuration variables and registered objects that can be shared between requests.

application = webapp2.WSGIApplication([ ('/', homepage.ViewHomePage) ])

Functions:

  • raw_exercise_contents(exercise_file):
  • main():

Classes:

  • VideoDataTest(request_handler.RequestHandler):
  • GenerateLibraryContent(request_handler.RequestHandler):
  • TopicPage(request_handler.RequestHandler):
  • ViewVideo(request_handler.RequestHandler):
  • ViewVideoDeprecated(request_handler.RequestHandler):
  • GMT1(tzinfo):
  • ReportIssue(request_handler.RequestHandler):
  • Crash(request_handler.RequestHandler):
  • SendToLog(request_handler.RequestHandler):
  • Sleep(request_handler.RequestHandler):
  • ViewContribute(request_handler.RequestHandler):
  • ViewCredits(request_handler.RequestHandler):
  • Donate(request_handler.RequestHandler):
  • ViewTOS(request_handler.RequestHandler):
  • ViewAPITOS(request_handler.RequestHandler):
  • ViewPrivacyPolicy(request_handler.RequestHandler):
  • ViewDMCA(request_handler.RequestHandler):
  • ViewStyleGuide(request_handler.RequestHandler):
  • RetargetFeedback(bulk_update.handler.UpdateKind):
  • Search(request_handler.RequestHandler):
  • PermanentRedirectToHome(request_handler.RequestHandler):
  • ServeUserVideoCss(request_handler.RequestHandler):
  • Nuke(request_handler.RequestHandler):
  • TranslateFile(request_handler.RequestHandler):
  • MemcacheViewer(request_handler.RequestHandler):

Clone this wiki locally