source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mdocml: In generated .Xr links, avoid double encoding of ampersands and
@ 2014-07-25 17:52 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2014-07-25 17:52 UTC (permalink / raw)
  To: source

Log Message:
-----------
In generated .Xr links, avoid double encoding of ampersands
and avoid empty arch= keys.

Modified Files:
--------------
    mdocml:
        cgi.c

Revision Data
-------------
Index: cgi.c
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/cgi.c,v
retrieving revision 1.86
retrieving revision 1.87
diff -Lcgi.c -Lcgi.c -u -p -r1.86 -r1.87
--- cgi.c
+++ cgi.c
@@ -874,8 +874,9 @@ format(const struct req *req, const char
 	}
 
 	snprintf(opts, sizeof(opts), "fragment,man=%s?"
-	    "manpath=%s&query=%%N&sec=%%S&arch=%s",
+	    "manpath=%s&query=%%N&sec=%%S%s%s",
 	    scriptname, req->q.manpath,
+	    req->q.arch ? "&arch=" : "",
 	    req->q.arch ? req->q.arch : "");
 
 	mparse_result(mp, &mdoc, &man, NULL);
--
 To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-07-25 17:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-25 17:52 mdocml: In generated .Xr links, avoid double encoding of ampersands and schwarze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).