Home
last modified time | relevance | path

Searched refs:HTTPSeeOther (Results 1 – 9 of 9) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
Dcas.py23 from paste.httpexceptions import HTTPSeeOther, HTTPForbidden
28 class CASAuthenticate(HTTPSeeOther):
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/modules/
Dexceptions.txt24 .. autoexception:: HTTPSeeOther
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/comment-example-code/
Dexample.py115 resp = exc.HTTPSeeOther(location=url+'#comment-area')
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/wiki-example-code/
Dexample.py113 resp = exc.HTTPSeeOther(
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/
Dmisc_test.py23 self.assertRaises(webob.exc.HTTPSeeOther, webapp2.abort, 303)
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
Dhttpexceptions.py371 class HTTPSeeOther(_HTTPMove): class
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/
Dcomment-example.txt397 resp = exc.HTTPSeeOther(location=url+'#comment-area')
404 ``HTTPSeeOther``) are Response subclasses that can be used to quickly
Dwiki-example.txt529 resp = exc.HTTPSeeOther(
600 resp = exc.HTTPSeeOther(
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
Dexc.py545 class HTTPSeeOther(_HTTPMove): class