diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-07-09 17:03:07 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-07-09 17:03:07 +0000 |
commit | 6ff5769dddbd46e4db8aa598a0f0707cff79c0eb (patch) | |
tree | b5801ed0656771b9c3bfd8899403da834390d02a /cgi.c | |
parent | 1693920e58f235e3cefa487f57b703ebffd13db6 (diff) | |
download | mandoc-6ff5769dddbd46e4db8aa598a0f0707cff79c0eb.tar.gz |
some sugar for the index page
Diffstat (limited to 'cgi.c')
-rw-r--r-- | cgi.c | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -381,7 +381,7 @@ resp_searchform(const struct req *req) html_print(req->q.arch ? req->q.arch : ""); printf("\">"); if (req->psz > 1) { - puts(", <SELECT NAME=\"manpath\">"); + puts(", in <SELECT NAME=\"manpath\">"); for (i = 0; i < (int)req->psz; i++) { printf("<OPTION "); if (NULL == req->q.manpath ? 0 == i : @@ -395,7 +395,7 @@ resp_searchform(const struct req *req) } puts("</SELECT>"); } - puts(".\n" + puts("—\n" "<INPUT TYPE=\"reset\" VALUE=\"Reset\">\n" "</FIELDSET>\n" "</FORM>\n" @@ -408,7 +408,15 @@ resp_index(const struct req *req) { resp_begin_html(200, NULL); + puts("<H1>\n" + "Online manuals with " + "<A HREF=\"http://mdocml.bsd.lv/\">mandoc</A>\n" + "</H1>"); resp_searchform(req); + puts("<P>\n" + "The <A HREF=\"search?expr=Nm~^apropos$&sec=1\">" + "apropos</A> manual explains the query syntax.\n" + "</P>"); resp_end_html(); } |