Searched refs:webapp (Results 1 - 25 of 57) sorted by relevance

123

/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/echo/
H A Dmain.py22 from google.appengine.ext import webapp namespace
23 from google.appengine.ext.webapp import util
26 application = webapp.WSGIApplication(
27 [('/', webapp.RedirectHandler.new_factory('/protorpc/form'))],
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
H A Dmain.py22 from google.appengine.ext import webapp namespace
23 from google.appengine.ext.webapp import util
26 application = webapp.WSGIApplication(
27 [('/', webapp.RedirectHandler.new_factory('/protorpc/form'))],
H A Dservices.py34 from protorpc.webapp import service_handlers
/external/jetty/src/java/org/eclipse/jetty/webapp/
H A DMetaDataComplete.java19 package org.eclipse.jetty.webapp;
H A DDescriptorProcessor.java19 package org.eclipse.jetty.webapp;
H A DOrigin.java19 package org.eclipse.jetty.webapp;
H A DDefaultsDescriptor.java19 package org.eclipse.jetty.webapp;
H A DOverrideDescriptor.java19 package org.eclipse.jetty.webapp;
H A DAbstractConfiguration.java19 package org.eclipse.jetty.webapp;
H A DConfiguration.java19 package org.eclipse.jetty.webapp;
H A DCloneConfiguration.java19 package org.eclipse.jetty.webapp;
H A DDescriptor.java19 package org.eclipse.jetty.webapp;
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/webapp/
H A Dgoogle_imports.py3 All other protorpc.webapp code should import other SDK modules from
23 from google.appengine.ext import webapp namespace
24 from google.appengine.ext.webapp import util as webapp_util
25 from google.appengine.ext.webapp import template
H A Dforms.py20 This webapp application is automatically configured to work with ProtoRPCs
21 that have a configured protorpc.RegistryService. This webapp is
30 from .google_imports import webapp
48 class ResourceHandler(webapp.RequestHandler):
83 class FormsHandler(webapp.RequestHandler):
103 When configuring a FormsHandler to use with a webapp application do not
/external/chromium-trace/catapult/third_party/pipeline/pipeline/
H A Dhandlers.py22 from google.appengine.ext import webapp namespace
23 from google.appengine.ext.webapp import util as webapp_util
28 _APP = webapp.WSGIApplication(pipeline.create_handlers_map(), debug=True)
/external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
H A DMain.java22 import org.mortbay.jetty.webapp.WebAppContext;
36 WebAppContext webapp = new WebAppContext("./root", "/example");
37 server.addHandler(webapp);
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/appstats/protorpc_appstats/
H A Dmain.py21 from google.appengine.ext import webapp namespace
22 from google.appengine.ext.webapp import util
24 from protorpc.webapp import service_handlers
42 The appstats service may be placed at any URL path within a webapp
81 # Create webapp URL mappings for service and private registry.
85 application = webapp.WSGIApplication(mapping)
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/guestbook/client/
H A Dmain.py22 from google.appengine.ext import webapp namespace
23 from google.appengine.ext.webapp import util
35 class MainHandler(webapp.RequestHandler):
44 application = webapp.WSGIApplication([('/', MainHandler)],
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/quotas/backend/quotas/
H A Dmain.py32 from google.appengine.ext import webapp namespace
33 from google.appengine.ext.webapp import util
36 from protorpc.webapp import service_handlers
65 application = webapp.WSGIApplication(service_mappings, debug=True)
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
H A Dmain.py31 # Pipeline has to be imported before webapp.
38 from google.appengine.ext import webapp namespace
41 from google.appengine.ext.webapp import util
47 class RedirectHandler(webapp.RequestHandler):
98 an instance of webapp.WSGIApplication with all mapreduce handlers
101 return webapp.WSGIApplication(create_handlers_map(),
/external/chromium-trace/catapult/third_party/webapp2/tests/
H A Dwebapp1_test.py2 from google.appengine.ext import webapp namespace
14 app = webapp.WSGIApplication([
19 class OldStyleHandler(webapp.RequestHandler):
23 class OldStyleHandler2(webapp.RequestHandler):
27 class OldStyleHandlerWithError(webapp.RequestHandler):
54 self.assertTrue(issubclass(OldStyleHandler, webapp.RequestHandler))
109 rsp = webapp.Response()
113 req = webapp.Request.blank('/', headers=[('Cookie', cookie)])
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/experimental/wsgi/
H A Dservices.py1 from google.appengine.ext.webapp import util
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/hello/server/
H A Dservices.py22 from protorpc.webapp import service_handlers
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/guestbook/server/
H A Dguestbook.py27 from google.appengine.ext import webapp namespace
32 from protorpc.webapp import service_handlers
41 class MainPage(webapp.RequestHandler):
67 class Guestbook(webapp.RequestHandler):
144 application = webapp.WSGIApplication([
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
H A Dwebapp_test_util.py18 """Testing utilities for the webapp libraries.
36 from .webapp import service_handlers
37 from .webapp.google_imports import webapp
129 return webapp.RequestHandler()
181 self.request = webapp.Request(environment)
182 self.response = webapp.Response()
373 return webapp.WSGIApplication(self.DEFAULT_MAPPING, True)

Completed in 435 milliseconds

123