From 0717fae1bb9171caf9eaea7022afa662d4c45a9b Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Thu, 11 Aug 2016 05:47:09 -0500 Subject: [PATCH] Fix template usage of url_for("digest_auth", ...) --- httpbin/templates/httpbin.1.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpbin/templates/httpbin.1.html b/httpbin/templates/httpbin.1.html index c134d7f..cde60b6 100644 --- a/httpbin/templates/httpbin.1.html +++ b/httpbin/templates/httpbin.1.html @@ -30,7 +30,7 @@
  • /basic-auth/:user/:passwd Challenges HTTPBasic Auth.
  • /hidden-basic-auth/:user/:passwd 404'd BasicAuth.
  • /digest-auth/:qop/:user/:passwd/:algorithm Challenges HTTP Digest Auth.
  • -
  • /digest-auth/:qop/:user/:passwd Challenges HTTP Digest Auth.
  • +
  • /digest-auth/:qop/:user/:passwd Challenges HTTP Digest Auth.
  • /stream/:n Streams min(n, 100) lines.
  • /delay/:n Delays responding for min(n, 10) seconds.
  • /drip?numbytes=n&duration=s&delay=s&code=code Drips data over a duration after an optional initial delay, then (optionally) returns with the given status code.