"webapps.counter" run inc-ing the counter fails (2)
docs.fc - any link with + in the name e.g. 1+ => 404 (3)
docs.fc - apropos for single '! @ , [' etc => 400 (4)
"webapps.counter" generates two hidden form fields for the "s" session-id (5)
farkup links (6)
http://paste.factorcode.org/paste?id=83
shows as
http://paste.factorcode.org/paste%3fid%3d83
request-params word in furnace.utilities checks if content-type>> is "application/x-www-form-urlencoded" but in my case of ajax POST call it was set to "application/x-www-form-urlencoded; charset=UTF-8" so if didn't evaluate. Potential fix is to change "dup content-type>> " to "dup content-type>> ";" split1 drop" but maybe request should be parsed so charset should be in another slot anyway (7)
: parse-post-data ( post-data -- post-data )
[ ] [ raw>> ] [ content-type>> ] tri
";" split1 drop "application/x-www-form-urlencoded" = [ query>assoc ] when ! JankoMetelko added: ";" split1 drop
>>content ;
got "400 error" on attempted login with erg using safari
wiki ate my edit, possibly related to multiple logins with the same user
This revision created on Mon, 7 Jun 2010 22:02:13 by erg