]> git.cameronkatri.com Git - mandoc.git/commitdiff
for .Xr links, use short PATH_INFO style URIs
authorIngo Schwarze <schwarze@openbsd.org>
Thu, 14 Apr 2016 23:48:48 +0000 (23:48 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Thu, 14 Apr 2016 23:48:48 +0000 (23:48 +0000)
cgi.c

diff --git a/cgi.c b/cgi.c
index 34ee4a9993d7959c7666d0da6065affd901964bf..3dc21f9a11c3927914609da6f8b7ff077c5c7b1b 100644 (file)
--- a/cgi.c
+++ b/cgi.c
@@ -1,4 +1,4 @@
-/*     $Id: cgi.c,v 1.121 2016/04/14 20:40:33 schwarze Exp $ */
+/*     $Id: cgi.c,v 1.122 2016/04/14 23:48:48 schwarze Exp $ */
 /*
  * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014, 2015, 2016 Ingo Schwarze <schwarze@usta.de>
@@ -816,12 +816,8 @@ format(const struct req *req, const char *file)
        memset(&conf, 0, sizeof(conf));
        conf.fragment = 1;
        usepath = strcmp(req->q.manpath, req->p[0]);
-       mandoc_asprintf(&conf.man, "/%s?query=%%N&sec=%%S%s%s%s%s",
-           scriptname,
-           req->q.arch ? "&arch="       : "",
-           req->q.arch ? req->q.arch    : "",
-           usepath     ? "&manpath="    : "",
-           usepath     ? req->q.manpath : "");
+       mandoc_asprintf(&conf.man, "/%s%s%%N.%%S",
+           usepath ? req->q.manpath : "", usepath ? "/" : "");
 
        mparse_result(mp, &man, NULL);
        if (man == NULL) {