Searched refs:HTTPNotFound (Results 1 – 24 of 24) sorted by relevance
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/ |
D | extras_routes_test.py | 177 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 …]
|
D | misc_test.py | 31 self.assertRaises(webob.exc.HTTPNotFound, webapp2.abort, 404)
|
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/ |
D | static.py | 44 return exc.HTTPNotFound(comment=msg) 151 return exc.HTTPNotFound(comment=path) 160 return exc.HTTPNotFound(comment=index_path)
|
D | exc.py | 662 class HTTPNotFound(HTTPClientError): class
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/ |
D | fileapp.py | 213 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)
|
D | urlparser.py | 216 exc = httpexceptions.HTTPNotFound( 496 exc = httpexceptions.HTTPNotFound( 505 exc = httpexceptions.HTTPNotFound( 587 exc = httpexceptions.HTTPNotFound(
|
D | urlmap.py | 120 app = httpexceptions.HTTPNotFound(
|
D | httpexceptions.py | 449 class HTTPNotFound(HTTPClientError): class
|
D | urlmap.py.orig | 120 app = httpexceptions.HTTPNotFound(
|
/external/chromium-trace/trace-viewer/third_party/Paste/docs/modules/ |
D | httpexceptions.txt | 29 .. autoexception:: HTTPNotFound
|
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/modules/ |
D | exceptions.txt | 33 .. autoexception:: HTTPNotFound
|
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_exceptions/ |
D | test_httpexceptions.py | 87 notfound = HTTPNotFound()
|
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/ |
D | index.txt | 281 the error. For instance, ``webob.exc.HTTPNotFound``. It subclasses 287 response = HTTPNotFound('There is no such resource') 297 raise HTTPNotFound('No such resource')
|
D | do-it-yourself.txt | 246 ... 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)
|
D | news.txt | 930 ``webob.exc.HTTPNotFound(body='<notfound/>', 1074 from, for example, ``webob.exc.HTTPNotFound().exception``, so that
|
D | wiki-example.txt | 133 ``webob.exc.HTTPNotFound``, ``webob.exc.HTTPTemporaryRedirect``, etc.
|
/external/chromium-trace/trace-viewer/third_party/Paste/ |
D | README.rst | 61 * Catch HTTP-related exceptions (e.g., ``HTTPNotFound``) and turn them
|
D | PKG-INFO | 69 * Catch HTTP-related exceptions (e.g., ``HTTPNotFound``) and turn them
|
/external/chromium-trace/trace-viewer/third_party/Paste/Paste.egg-info/ |
D | PKG-INFO | 69 * Catch HTTP-related exceptions (e.g., ``HTTPNotFound``) and turn them
|
/external/chromium-trace/trace-viewer/third_party/Paste/docs/ |
D | developer-features.txt | 65 * Catch HTTP-related exceptions (e.g., ``HTTPNotFound``) and turn them
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/evalexception/ |
D | middleware.py | 197 exc = httpexceptions.HTTPNotFound(
|
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/guide/ |
D | app.rst | 65 handler to be used for that request (or raises a ``HTTPNotFound`` exception
|
/external/chromium-trace/trace-viewer/third_party/webapp2/ |
D | webapp2.py | 1214 raise exc.HTTPNotFound()
|
D | CHANGES | 282 - Router.default_matcher() now raises exc.HTTPNotFound if no route matches.
|