These mean nothing to you (but they might make sense to
fallenpegasus):
I got the QUERY_INFO string sort and normalize function to work! Whoohoo! Now, on to the rest of the signature!
(Note the fourth example: the input fragment is 'bob=ted=carol=alice', but the equal symbol is a URI reserved character, a CGI argument, and an unreserved initial symbol separating keys from values in CGI arguments and is privileged in the standard; I made the decision to normalize the very first unescaped, but to escape every instance thereafter. I suspect this will not please some people, but it is the best interpretation I can come up with inside the mashup between the specification and RFC 3986).
(Note also the last example with the preceeding '&'; this happens when an empty argument is passed in, i.e. a QUERY_INFO contains '&&'; the empty string bubbles up to the top of the sort list according to asciibetical sorting.)
| foo foo&bar foo&baz&21342&$@# foo=zoom&bar&bob=ted=carol=alice foo&$= foo&%66%64%65 foo&%66%64%65=zoom %66%64%65=zoom& foo& |
foo bar&foo %24%40%23&21342&baz&foo bar&bob=ted%3Dcarol%3Dalice&foo=zoom %24=&foo fde&foo fde=zoom&foo &%20foo&fde=zoom |
I got the QUERY_INFO string sort and normalize function to work! Whoohoo! Now, on to the rest of the signature!
(Note the fourth example: the input fragment is 'bob=ted=carol=alice', but the equal symbol is a URI reserved character, a CGI argument, and an unreserved initial symbol separating keys from values in CGI arguments and is privileged in the standard; I made the decision to normalize the very first unescaped, but to escape every instance thereafter. I suspect this will not please some people, but it is the best interpretation I can come up with inside the mashup between the specification and RFC 3986).
(Note also the last example with the preceeding '&'; this happens when an empty argument is passed in, i.e. a QUERY_INFO contains '&&'; the empty string bubbles up to the top of the sort list according to asciibetical sorting.)
no subject
Date: 2007-11-14 06:36 am (UTC)so, I look at your examples and I can see what edge cases they're intended to test for, and go "yup... yup... yup..."
congratulations for getting it all working!!
no subject
Date: 2007-11-14 08:02 am (UTC)And I second the congratulations!