HomeSort by relevance Sort by last modified time
    Searched refs:webapp (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/echo/
main.py 22 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/
main.py 22 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'))],
services.py 34 from protorpc.webapp import service_handlers
  /external/jetty/src/java/org/eclipse/jetty/webapp/
MetaDataComplete.java 19 package org.eclipse.jetty.webapp;
DescriptorProcessor.java 19 package org.eclipse.jetty.webapp;
Origin.java 19 package org.eclipse.jetty.webapp;
DefaultsDescriptor.java 19 package org.eclipse.jetty.webapp;
OverrideDescriptor.java 19 package org.eclipse.jetty.webapp;
AbstractConfiguration.java 19 package org.eclipse.jetty.webapp;
Configuration.java 19 package org.eclipse.jetty.webapp;
41 /** Configure WebApp.
59 /** DeConfigure WebApp.
68 /** Destroy WebApp.
CloneConfiguration.java 19 package org.eclipse.jetty.webapp;
Descriptor.java 19 package org.eclipse.jetty.webapp;
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/
handlers.py 22 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/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/webapp/
google_imports.py 3 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
forms.py 18 """Webapp forms interface to ProtoRPC services.
20 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/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Main.java 22 import org.mortbay.jetty.webapp.WebAppContext;
36 WebAppContext webapp = new WebAppContext("./root", "/example"); local
37 server.addHandler(webapp);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/appstats/protorpc_appstats/
main.py 21 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/
main.py 22 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/
main.py 32 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/
main.py 31 # 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/
webapp1_test.py 2 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/hello/server/
services.py 22 from protorpc.webapp import service_handlers
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/guestbook/server/
guestbook.py 27 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/demos/experimental/wsgi/
services.py 1 from google.appengine.ext.webapp import util
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 27 from google.appengine.ext import webapp namespace
28 from google.appengine.ext.webapp import template
35 class BaseRequestHandler(webapp.RequestHandler):
133 class AvatarEditPage(webapp.RequestHandler):
178 class ContactsListPage(webapp.RequestHandler):
196 application = webapp.WSGIApplication(

Completed in 807 milliseconds

1 2 3