[BACK]Return to cgi.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/cgi.c between version 1.142 and 1.145

version 1.142, 2017/01/19 13:35:02 version 1.145, 2017/01/25 02:14:43
Line 351  resp_begin_html(int code, const char *msg)
Line 351  resp_begin_html(int code, const char *msg)
         printf("<!DOCTYPE html>\n"          printf("<!DOCTYPE html>\n"
                "<html>\n"                 "<html>\n"
                "<head>\n"                 "<head>\n"
                "<meta charset=\"UTF-8\"/>\n"                 "  <meta charset=\"UTF-8\"/>\n"
                "<link rel=\"stylesheet\" href=\"%s/mandoc.css\""                 "  <link rel=\"stylesheet\" href=\"%s/mandoc.css\""
                " type=\"text/css\" media=\"all\">\n"                 " type=\"text/css\" media=\"all\">\n"
                "<title>%s</title>\n"                 "  <title>%s</title>\n"
                "</head>\n"                 "</head>\n"
                "<body>\n",                 "<body>\n",
                CSS_DIR, CUSTOMIZE_TITLE);                 CSS_DIR, CUSTOMIZE_TITLE);
Line 378  resp_searchform(const struct req *req, enum focus focu
Line 378  resp_searchform(const struct req *req, enum focus focu
         int              i;          int              i;
   
         printf("<form action=\"/%s\" method=\"get\">\n"          printf("<form action=\"/%s\" method=\"get\">\n"
                "<fieldset>\n"                 "  <fieldset>\n"
                "<legend>Manual Page Search Parameters</legend>\n",                 "    <legend>Manual Page Search Parameters</legend>\n",
                scriptname);                 scriptname);
   
         /* Write query input box. */          /* Write query input box. */
   
         printf("<input type=\"text\" name=\"query\" value=\"");          printf("    <input type=\"text\" name=\"query\" value=\"");
         if (req->q.query != NULL)          if (req->q.query != NULL)
                 html_print(req->q.query);                  html_print(req->q.query);
         printf( "\" size=\"40\"");          printf( "\" size=\"40\"");
Line 394  resp_searchform(const struct req *req, enum focus focu
Line 394  resp_searchform(const struct req *req, enum focus focu
   
         /* Write submission buttons. */          /* Write submission buttons. */
   
         printf( "<button type=\"submit\" name=\"apropos\" value=\"0\">"          printf( "    <button type=\"submit\" name=\"apropos\" value=\"0\">"
                 "man</button>\n"                  "man</button>\n"
                 "<button type=\"submit\" name=\"apropos\" value=\"1\">"                  "    <button type=\"submit\" name=\"apropos\" value=\"1\">"
                 "apropos</button>\n<br/>\n");                  "apropos</button>\n"
                   "    <br/>\n");
   
         /* Write section selector. */          /* Write section selector. */
   
         puts("<select name=\"sec\">");          puts("    <select name=\"sec\">");
         for (i = 0; i < sec_MAX; i++) {          for (i = 0; i < sec_MAX; i++) {
                 printf("<option value=\"%s\"", sec_numbers[i]);                  printf("      <option value=\"%s\"", sec_numbers[i]);
                 if (NULL != req->q.sec &&                  if (NULL != req->q.sec &&
                     0 == strcmp(sec_numbers[i], req->q.sec))                      0 == strcmp(sec_numbers[i], req->q.sec))
                         printf(" selected=\"selected\"");                          printf(" selected=\"selected\"");
                 printf(">%s</option>\n", sec_names[i]);                  printf(">%s</option>\n", sec_names[i]);
         }          }
         puts("</select>");          puts("    </select>");
   
         /* Write architecture selector. */          /* Write architecture selector. */
   
         printf( "<select name=\"arch\">\n"          printf( "    <select name=\"arch\">\n"
                 "<option value=\"default\"");                  "      <option value=\"default\"");
         if (NULL == req->q.arch)          if (NULL == req->q.arch)
                 printf(" selected=\"selected\"");                  printf(" selected=\"selected\"");
         puts(">All Architectures</option>");          puts(">All Architectures</option>");
         for (i = 0; i < arch_MAX; i++) {          for (i = 0; i < arch_MAX; i++) {
                 printf("<option value=\"%s\"", arch_names[i]);                  printf("      <option value=\"%s\"", arch_names[i]);
                 if (NULL != req->q.arch &&                  if (NULL != req->q.arch &&
                     0 == strcmp(arch_names[i], req->q.arch))                      0 == strcmp(arch_names[i], req->q.arch))
                         printf(" selected=\"selected\"");                          printf(" selected=\"selected\"");
                 printf(">%s</option>\n", arch_names[i]);                  printf(">%s</option>\n", arch_names[i]);
         }          }
         puts("</select>");          puts("    </select>");
   
         /* Write manpath selector. */          /* Write manpath selector. */
   
         if (req->psz > 1) {          if (req->psz > 1) {
                 puts("<select name=\"manpath\">");                  puts("    <select name=\"manpath\">");
                 for (i = 0; i < (int)req->psz; i++) {                  for (i = 0; i < (int)req->psz; i++) {
                         printf("<option ");                          printf("      <option ");
                         if (strcmp(req->q.manpath, req->p[i]) == 0)                          if (strcmp(req->q.manpath, req->p[i]) == 0)
                                 printf("selected=\"selected\" ");                                  printf("selected=\"selected\" ");
                         printf("value=\"");                          printf("value=\"");
Line 441  resp_searchform(const struct req *req, enum focus focu
Line 442  resp_searchform(const struct req *req, enum focus focu
                         html_print(req->p[i]);                          html_print(req->p[i]);
                         puts("</option>");                          puts("</option>");
                 }                  }
                 puts("</select>");                  puts("    </select>");
         }          }
   
         puts("</fieldset>\n"          puts("  </fieldset>\n"
              "</form>");               "</form>");
 }  }
   
Line 493  pg_index(const struct req *req)
Line 494  pg_index(const struct req *req)
         resp_searchform(req, FOCUS_QUERY);          resp_searchform(req, FOCUS_QUERY);
         printf("<p>\n"          printf("<p>\n"
                "This web interface is documented in the\n"                 "This web interface is documented in the\n"
                "<a href=\"/%s%sman.cgi.8\">man.cgi(8)</a>\n"                 "<a class=\"Xr\" href=\"/%s%sman.cgi.8\">man.cgi(8)</a>\n"
                "manual, and the\n"                 "manual, and the\n"
                "<a href=\"/%s%sapropos.1\">apropos(1)</a>\n"                 "<a class=\"Xr\" href=\"/%s%sapropos.1\">apropos(1)</a>\n"
                "manual explains the query syntax.\n"                 "manual explains the query syntax.\n"
                "</p>\n",                 "</p>\n",
                scriptname, *scriptname == '\0' ? "" : "/",                 scriptname, *scriptname == '\0' ? "" : "/",
Line 575  pg_searchres(const struct req *req, struct manpage *r,
Line 576  pg_searchres(const struct req *req, struct manpage *r,
             req->q.equal || sz == 1 ? FOCUS_NONE : FOCUS_QUERY);              req->q.equal || sz == 1 ? FOCUS_NONE : FOCUS_QUERY);
   
         if (sz > 1) {          if (sz > 1) {
                 puts("<div class=\"results\">");                  puts("<table class=\"results\">");
                 puts("<table>");  
   
                 for (i = 0; i < sz; i++) {                  for (i = 0; i < sz; i++) {
                         printf("<tr>\n"                          printf("  <tr>\n"
                                "<td class=\"title\">\n"                                 "    <td>"
                                "<a href=\"/%s%s%s/%s",                                 "<a class=\"Xr\" href=\"/%s%s%s/%s\">",
                             scriptname, *scriptname == '\0' ? "" : "/",                              scriptname, *scriptname == '\0' ? "" : "/",
                             req->q.manpath, r[i].file);                              req->q.manpath, r[i].file);
                         printf("\">");  
                         html_print(r[i].names);                          html_print(r[i].names);
                         printf("</a>\n"                          printf("</a></td>\n"
                                "</td>\n"                                 "    <td><span class=\"Nd\">");
                                "<td class=\"desc\">");  
                         html_print(r[i].output);                          html_print(r[i].output);
                         puts("</td>\n"                          puts("</span></td>\n"
                              "</tr>");                               "  </tr>");
                 }                  }
                   puts("</table>");
                 puts("</table>\n"  
                      "</div>");  
         }          }
   
         /*          /*
Line 804  resp_format(const struct req *req, const char *file)
Line 799  resp_format(const struct req *req, const char *file)
   
         memset(&conf, 0, sizeof(conf));          memset(&conf, 0, sizeof(conf));
         conf.fragment = 1;          conf.fragment = 1;
           conf.style = mandoc_strdup(CSS_DIR "/mandoc.css");
         usepath = strcmp(req->q.manpath, req->p[0]);          usepath = strcmp(req->q.manpath, req->p[0]);
         mandoc_asprintf(&conf.man, "/%s%s%%N.%%S",          mandoc_asprintf(&conf.man, "/%s%s%%N.%%S",
             usepath ? req->q.manpath : "", usepath ? "/" : "");              usepath ? req->q.manpath : "", usepath ? "/" : "");
Line 831  resp_format(const struct req *req, const char *file)
Line 827  resp_format(const struct req *req, const char *file)
         mparse_free(mp);          mparse_free(mp);
         mchars_free();          mchars_free();
         free(conf.man);          free(conf.man);
           free(conf.style);
 }  }
   
 static void  static void

Legend:
Removed from v.1.142  
changed lines
  Added in v.1.145

CVSweb