Home
last modified time | relevance | path

Searched refs:HTTPNotFound (Results 1 – 24 of 24) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/webapp2/tests/
Dextras_routes_test.py177 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank('/foo'))
265 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri1b))
266 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri1c))
269 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri2b))
270 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri2c))
271 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri2d))
275 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri3c))
276 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri3d))
277 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri3e))
278 self.assertRaises(webapp2.exc.HTTPNotFound, router.match, webapp2.Request.blank(uri3f))
[all …]
Dmisc_test.py31 self.assertRaises(webob.exc.HTTPNotFound, webapp2.abort, 404)
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
Dstatic.py44 return exc.HTTPNotFound(comment=msg)
151 return exc.HTTPNotFound(comment=path)
160 return exc.HTTPNotFound(comment=index_path)
Dexc.py662 class HTTPNotFound(HTTPClientError): class
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
Dfileapp.py213 exc = HTTPNotFound(
293 app = HTTPNotFound(comment=path)
338 exc = HTTPNotFound("The file requested, '%s', was not found." % path)
341 exc = HTTPNotFound("Path requested, '%s', is not a file." % path)
Durlparser.py216 exc = httpexceptions.HTTPNotFound(
496 exc = httpexceptions.HTTPNotFound(
505 exc = httpexceptions.HTTPNotFound(
587 exc = httpexceptions.HTTPNotFound(
Durlmap.py120 app = httpexceptions.HTTPNotFound(
Dhttpexceptions.py449 class HTTPNotFound(HTTPClientError): class
Durlmap.py.orig120 app = httpexceptions.HTTPNotFound(
/external/chromium-trace/trace-viewer/third_party/Paste/docs/modules/
Dhttpexceptions.txt29 .. autoexception:: HTTPNotFound
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/modules/
Dexceptions.txt33 .. autoexception:: HTTPNotFound
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_exceptions/
Dtest_httpexceptions.py87 notfound = HTTPNotFound()
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/
Dindex.txt281 the error. For instance, ``webob.exc.HTTPNotFound``. It subclasses
287 response = HTTPNotFound('There is no such resource')
297 raise HTTPNotFound('No such resource')
Ddo-it-yourself.txt246 ... return exc.HTTPNotFound()(environ, start_response)
264 … ``webob.exc.HTTPNotFound()`` is a WSGI application that returns 404 responses. You could add a m…
296 ….HTTPException`` exceptions. This is so you can do ``raise webob.exc.HTTPNotFound()`` in your fun…
384 ... raise exc.HTTPNotFound("No action %s" % action)
Dnews.txt930 ``webob.exc.HTTPNotFound(body='<notfound/>',
1074 from, for example, ``webob.exc.HTTPNotFound().exception``, so that
Dwiki-example.txt133 ``webob.exc.HTTPNotFound``, ``webob.exc.HTTPTemporaryRedirect``, etc.
/external/chromium-trace/trace-viewer/third_party/Paste/
DREADME.rst61 * Catch HTTP-related exceptions (e.g., ``HTTPNotFound``) and turn them
DPKG-INFO69 * Catch HTTP-related exceptions (e.g., ``HTTPNotFound``) and turn them
/external/chromium-trace/trace-viewer/third_party/Paste/Paste.egg-info/
DPKG-INFO69 * Catch HTTP-related exceptions (e.g., ``HTTPNotFound``) and turn them
/external/chromium-trace/trace-viewer/third_party/Paste/docs/
Ddeveloper-features.txt65 * Catch HTTP-related exceptions (e.g., ``HTTPNotFound``) and turn them
/external/chromium-trace/trace-viewer/third_party/Paste/paste/evalexception/
Dmiddleware.py197 exc = httpexceptions.HTTPNotFound(
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/guide/
Dapp.rst65 handler to be used for that request (or raises a ``HTTPNotFound`` exception
/external/chromium-trace/trace-viewer/third_party/webapp2/
Dwebapp2.py1214 raise exc.HTTPNotFound()
DCHANGES282 - Router.default_matcher() now raises exc.HTTPNotFound if no route matches.