]> git.cameronkatri.com Git - mandoc.git/commit
Choosing the right encoding is a tricky business...
authorIngo Schwarze <schwarze@openbsd.org>
Fri, 25 Jul 2014 21:05:41 +0000 (21:05 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Fri, 25 Jul 2014 21:05:41 +0000 (21:05 +0000)
commit8b17a548dd118d115762ef272ab9eb59b2f5119b
tree27c8ce06fa2d9c9d8c41b4c4393397ca897af53a
parentf5d413e221cddb98e1425f70917934bb8cca9514
Choosing the right encoding is a tricky business...

Printing query strings for URIs *always* needs URI-encoding, and when
embedding the URI into an HTML document, it needs replacement of
the "&" separators by "&amp;" *in addition to that*, not instead.
Delete the function html_primtquery(), it was completely wrong.

You can see the badness by entering "mandoc &sec=2" into the query input
box before this patch and click "Submit".  You come to the right page at
first (...man.cgi?query=mandoc+%26sec%3D2&apropos=0&sec=0&...), but now
the link to mandoc(1) is wrong: ...mandoc.1?query=mandoc &amp;sec=2&amp;...
Clicking on that, the "&sec=2" disappears from the query input box and
suddenly you have the first dropdown set to "2 - System Calls".  Oops.
cgi.c