/external/chromium-trace/trace-viewer/third_party/webapp2/ |
README | 4 Engine's webapp. 6 - Project page: http://code.google.com/p/webapp-improved/ 7 - User guide: http://webapp-improved.appspot.com/
|
PKG-INFO | 4 Summary: Taking Google App Engine's webapp to the next level! 5 Home-page: http://webapp-improved.appspot.com 13 Engine's `webapp`_. 15 webapp2 is `simple`_. it follows the simplicity of webapp, but 26 For a complete description of how webapp2 improves webapp, see 32 - `User Guide <http://webapp-improved.appspot.com/>`_ 33 - `Repository <http://code.google.com/p/webapp-improved/>`_ 37 .. _webapp: http://code.google.com/appengine/docs/python/tools/webapp/ 38 .. _webapp2: http://code.google.com/p/webapp-improved/ 39 .. _simple: http://code.google.com/p/webapp-improved/source/browse/webapp2.p [all...] |
setup.py | 6 Engine's `webapp`_. 8 webapp2 is `simple`_. it follows the simplicity of webapp, but 19 For a complete description of how webapp2 improves webapp, see 25 - `User Guide <http://webapp-improved.appspot.com/>`_ 26 - `Repository <http://code.google.com/p/webapp-improved/>`_ 30 .. _webapp: http://code.google.com/appengine/docs/python/tools/webapp/ 31 .. _webapp2: http://code.google.com/p/webapp-improved/ 32 .. _simple: http://code.google.com/p/webapp-improved/source/browse/webapp2.py 33 .. _webapp2_extras: http://webapp-improved.appspot.com/#api-reference-webapp2-extras 34 .. _webapp2 features: http://webapp-improved.appspot.com/features.htm [all...] |
TODO | 7 http://code.google.com/p/webapp-improved/issues/list 22 The webapp TODO 24 Here is a list of updates for webapp that could be gradually implemented in 25 future SDK releases, to make webapp more close to webapp2: 30 request in webapp) 52 - Sending cookies using webapp. 57 Issues: #3426; **works in webapp/webapp2** 60 Issues: #5118 **can't reproduce in webapp, works in webapp2**
|
webapp2.py | 6 Taking Google App Engine's webapp to the next level! 39 # google.appengine.ext.webapp imports webapp2 in the 43 from google.appengine.ext import webapp as _webapp 97 # Set same default messages from webapp plus missing ones. 117 Most extra methods and attributes are ported from webapp. Check the 133 # Attributes from webapp. 298 """Implements methods from ``wsgiref.headers.Headers``, used by webapp.""" 341 Most extra methods and attributes are ported from webapp. Check the 344 Differences from webapp.Response: 349 in webapp it is the integer code. The status code as an integer i [all...] |
CHANGES | 108 - Little fix: use google.appengine.ext.webapp.util if available, like before. 162 webapp.RequestHandler, webapp2.RequestHandler and "view functions". 198 webapp.Response. 204 webapp.Response.headers. 223 - Increased Response compatibility with webapp, implementing wsgi_write() and 226 - Changed some status messages to be the same as webapp: 235 - Copied Request from webapp, so that when using webapp2 outside of the SDK 312 use a custom webapp.RequestHandler constructors (like ProtoRPC). 319 response, instead of the webapp way of a handler that writes to an existing 324 compatibility with webapp [all...] |
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2.egg-info/ |
PKG-INFO | 4 Summary: Taking Google App Engine's webapp to the next level! 5 Home-page: http://webapp-improved.appspot.com 13 Engine's `webapp`_. 15 webapp2 is `simple`_. it follows the simplicity of webapp, but 26 For a complete description of how webapp2 improves webapp, see 32 - `User Guide <http://webapp-improved.appspot.com/>`_ 33 - `Repository <http://code.google.com/p/webapp-improved/>`_ 37 .. _webapp: http://code.google.com/appengine/docs/python/tools/webapp/ 38 .. _webapp2: http://code.google.com/p/webapp-improved/ 39 .. _simple: http://code.google.com/p/webapp-improved/source/browse/webapp2.p [all...] |
/external/libphonenumber/demo/ |
README | 9 Note that this must be done before running the webapp locally and before 12 How to run the webapp locally? 15 How to deploy the webapp to Appengine?
|
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/ |
index.rst | 11 Engine's `webapp`_. 13 webapp2 is a `simple`_. it follows the simplicity of webapp, but improves 24 For a complete description of how webapp2 improves webapp, see :ref:`features`. 34 - `Downloads <http://code.google.com/p/webapp-improved/downloads/list>`_ 35 - `Google Code Repository <http://code.google.com/p/webapp-improved/>`_ 40 several mini-apps for webapp that serve as examples (they should work with 163 webapp2 is a superset of `webapp`_, created by the App Engine team. 165 Because webapp2 is intended to be compatible with webapp, the official webapp 185 http://code.google.com/p/webapp-improved/issues/lis [all...] |
features.rst | 5 Here's an overview of the main improvements of webapp2 compared to webapp. 12 Compatible with webapp 14 webapp2 is designed to work with existing webapp apps without any changes. 17 import webapp2 as webapp 18 from google.appengine.ext.webapp.util import run_wsgi_app 20 class HelloWorldHandler(webapp.RequestHandler): 24 app = webapp.WSGIApplication([ 34 Everybody starting with App Engine must know a bit of webapp. And you you can 35 use webapp2 exactly like webapp, following the official tutorials, and learn 38 Also, the SDK libraries that use webapp can be used with webapp2 as they ar [all...] |
/external/chromium-trace/trace-viewer/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/jetty/src/config/etc/ |
README.spnego | 2 webapp. 18 Spengo Authentication is enabled in the webapp with the following setup. 40 embedded, via the jetty.xml or in a context file for the webapp.
|
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/tutorials/ |
quickstart.rst | 5 If you already know `webapp <http://code.google.com/appengine/docs/python/tools/webapp/>`_, 6 webapp2 is very easy to get started. You can use webapp2 exactly like webapp, 21 `Download webapp2 <http://code.google.com/p/webapp-improved/downloads/list>`_,
|
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
WebInfConfiguration.java | 19 package org.eclipse.jetty.webapp; 48 public static final String CONTAINER_JAR_PATTERN = "org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern"; 49 public static final String WEBINF_JAR_PATTERN = "org.eclipse.jetty.server.webapp.WebInfIncludeJarPattern"; 67 //Make a temp directory for the webapp if one is not already set 70 //Extract webapp if necessary 151 LOG.debug("Cannot configure webapp "+context+" after it is started"); 209 * @see org.eclipse.jetty.webapp.AbstractConfiguration#cloneConfigure(org.eclipse.jetty.webapp.WebAppContext, org.eclipse.jetty.webapp.WebAppContext) 231 * <p>A. Try to use an explicit directory specifically for this webapp:</p [all...] |
WebAppContext.java | 19 package org.eclipse.jetty.webapp; 79 * the default being {@link org.eclipse.jetty.webapp.WebXmlConfiguration} and 80 * {@link org.eclipse.jetty.webapp.JettyWebXmlConfiguration}. 90 public static final String BASETEMPDIR = "org.eclipse.jetty.webapp.basetempdir"; 91 public final static String WEB_DEFAULTS_XML="org/eclipse/jetty/webapp/webdefault.xml"; 93 public final static String SERVER_CONFIG = "org.eclipse.jetty.webapp.configuration"; 94 public final static String SERVER_SYS_CLASSES = "org.eclipse.jetty.webapp.systemClasses"; 95 public final static String SERVER_SRV_CLASSES = "org.eclipse.jetty.webapp.serverClasses"; 101 "org.eclipse.jetty.webapp.WebInfConfiguration", 102 "org.eclipse.jetty.webapp.WebXmlConfiguration" [all...] |
Configuration.java | 19 package org.eclipse.jetty.webapp; 41 /** Configure WebApp. 59 /** DeConfigure WebApp. 68 /** Destroy WebApp.
|
MetaDataComplete.java | 19 package org.eclipse.jetty.webapp;
|
JettyWebXmlConfiguration.java | 19 package org.eclipse.jetty.webapp; 49 public static final String XML_CONFIGURATION = "org.eclipse.jetty.webapp.JettyWebXmlConfiguration"; 63 LOG.debug("Cannot configure webapp after it is started");
|
/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(
|
/external/jetty/src/java/org/eclipse/jetty/util/preventers/ |
DOMLeakPreventer.java | 29 * from pinning a webapp classloader by causing it to be set here by a non-webapp classloader.
|
GCThreadLeakPreventer.java | 26 * Prevents a call to sun.misc.GC.requestLatency pinning a webapp classloader 27 * by calling it with a non-webapp classloader. The problem appears to be that
|
Java2DLeakPreventer.java | 24 * Prevent pinning of webapp classloader by pre-loading sun.java2d.Disposer class 25 * before webapp classloaders are created.
|
AppContextLeakPreventer.java | 27 * a container or system classloader, not a webapp classloader.
|
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/tutorials/gettingstarted/ |
introduction.rst | 12 the default App Engine webapp framework, but offers an improved response
|
usingwebapp2.rst | 15 ``webapp``. The ``webapp`` framework is already installed in the App Engine 23 contents from `webapp2.py <http://code.google.com/p/webapp-improved/source/browse/webapp2.py>`_
|