summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-07-09 17:03:07 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-07-09 17:03:07 +0000
commit6ff5769dddbd46e4db8aa598a0f0707cff79c0eb (patch)
treeb5801ed0656771b9c3bfd8899403da834390d02a
parent1693920e58f235e3cefa487f57b703ebffd13db6 (diff)
downloadmandoc-6ff5769dddbd46e4db8aa598a0f0707cff79c0eb.tar.gz
some sugar for the index page
-rw-r--r--cgi.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/cgi.c b/cgi.c
index 741b2b90..e4b56c07 100644
--- a/cgi.c
+++ b/cgi.c
@@ -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("&mdash;\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$&amp;sec=1\">"
+ "apropos</A> manual explains the query syntax.\n"
+ "</P>");
resp_end_html();
}