2008-12-08 21:04:13 -05:00
|
|
|
! Copyright (C) 2008 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
USING: kernel summary debugger io make math.parser
|
2009-06-18 14:47:08 -04:00
|
|
|
prettyprint http http.client accessors ;
|
2008-12-08 21:04:13 -05:00
|
|
|
IN: http.client.debugger
|
|
|
|
|
|
|
|
M: too-many-redirects summary
|
|
|
|
drop
|
|
|
|
[ "Redirection limit of " % max-redirects # " exceeded" % ] "" make ;
|
|
|
|
|
|
|
|
M: download-failed error.
|
|
|
|
"HTTP request failed:" print nl
|
|
|
|
response>> . ;
|