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

Diff for /mandoc/cgi.c between version 1.176 and 1.177

version 1.176, 2021/11/05 17:04:10 version 1.177, 2022/07/04 16:20:42
Line 2 
Line 2 
 /*  /*
  * Copyright (c) 2014-2019, 2021 Ingo Schwarze <schwarze@usta.de>   * Copyright (c) 2014-2019, 2021 Ingo Schwarze <schwarze@usta.de>
  * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2022 Anna Vyalkova <cyber@sysrq.in>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 431  resp_searchform(const struct req *req, enum focus focu
Line 432  resp_searchform(const struct req *req, enum focus focu
 {  {
         int              i;          int              i;
   
         printf("<form action=\"/%s\" method=\"get\" "          printf("<header>\n"
                  "<form role=\"search\" action=\"/%s\" method=\"get\" "
                "autocomplete=\"off\" autocapitalize=\"none\">\n"                 "autocomplete=\"off\" autocapitalize=\"none\">\n"
                "  <fieldset>\n"                 "  <fieldset>\n"
                "    <legend>Manual Page Search Parameters</legend>\n",                 "    <legend>Manual Page Search Parameters</legend>\n",
Line 457  resp_searchform(const struct req *req, enum focus focu
Line 459  resp_searchform(const struct req *req, enum focus focu
   
         /* Write section selector. */          /* Write section selector. */
   
         puts("    <select name=\"sec\">");          puts("    <select name=\"sec\" aria-label=\"manual section\">");
         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 &&
Line 469  resp_searchform(const struct req *req, enum focus focu
Line 471  resp_searchform(const struct req *req, enum focus focu
   
         /* Write architecture selector. */          /* Write architecture selector. */
   
         printf( "    <select name=\"arch\">\n"          printf( "    <select name=\"arch\" aria-label=\"CPU architecture\">\n"
                 "      <option value=\"default\"");                  "      <option value=\"default\"");
         if (NULL == req->q.arch)          if (NULL == req->q.arch)
                 printf(" selected=\"selected\"");                  printf(" selected=\"selected\"");
Line 499  resp_searchform(const struct req *req, enum focus focu
Line 501  resp_searchform(const struct req *req, enum focus focu
         }          }
   
         puts("  </fieldset>\n"          puts("  </fieldset>\n"
              "</form>");               "</form>\n"
                "</header>");
 }  }
   
 static int  static int
Line 557  pg_index(const struct req *req)
Line 560  pg_index(const struct req *req)
   
         resp_begin_html(200, NULL, NULL);          resp_begin_html(200, NULL, NULL);
         resp_searchform(req, FOCUS_QUERY);          resp_searchform(req, FOCUS_QUERY);
         printf("<p>\n"          printf("<main>\n"
                  "<p role=\"doc-notice\" aria-label=\"usage\">\n"
                "This web interface is documented in the\n"                 "This web interface is documented in the\n"
                "<a class=\"Xr\" href=\"/%s%sman.cgi.8\">man.cgi(8)</a>\n"                 "<a class=\"Xr\" href=\"/%s%sman.cgi.8\""
                  " aria-label=\"man dot CGI, section 8\">man.cgi(8)</a>\n"
                "manual, and the\n"                 "manual, and the\n"
                "<a class=\"Xr\" href=\"/%s%sapropos.1\">apropos(1)</a>\n"                 "<a class=\"Xr\" href=\"/%s%sapropos.1\""
                  " aria-label=\"apropos, section 1\">apropos(1)</a>\n"
                "manual explains the query syntax.\n"                 "manual explains the query syntax.\n"
                "</p>\n",                 "</p>\n"
                  "</main>\n",
                scriptname, *scriptname == '\0' ? "" : "/",                 scriptname, *scriptname == '\0' ? "" : "/",
                scriptname, *scriptname == '\0' ? "" : "/");                 scriptname, *scriptname == '\0' ? "" : "/");
         resp_end_html();          resp_end_html();
Line 575  pg_noresult(const struct req *req, int code, const cha
Line 582  pg_noresult(const struct req *req, int code, const cha
 {  {
         resp_begin_html(code, http_msg, NULL);          resp_begin_html(code, http_msg, NULL);
         resp_searchform(req, FOCUS_QUERY);          resp_searchform(req, FOCUS_QUERY);
         puts("<p>");          puts("<main>");
           puts("<p role=\"doc-notice\" aria-label=\"no result\">");
         puts(user_msg);          puts(user_msg);
         puts("</p>");          puts("</p>");
           puts("</main>");
         resp_end_html();          resp_end_html();
 }  }
   
Line 586  pg_error_badrequest(const char *msg)
Line 595  pg_error_badrequest(const char *msg)
 {  {
   
         resp_begin_html(400, "Bad Request", NULL);          resp_begin_html(400, "Bad Request", NULL);
         puts("<h1>Bad Request</h1>\n"          puts("<main>\n"
              "<p>\n");               "<h1>Bad Request</h1>\n"
                "<p role=\"doc-notice\" aria-label=\"Bad Request\">");
         puts(msg);          puts(msg);
         printf("Try again from the\n"          printf("Try again from the\n"
                "<a href=\"/%s\">main page</a>.\n"                 "<a href=\"/%s\">main page</a>.\n"
                "</p>", scriptname);                 "</p>\n"
                  "</main>", scriptname);
         resp_end_html();          resp_end_html();
 }  }
   
Line 599  static void
Line 610  static void
 pg_error_internal(void)  pg_error_internal(void)
 {  {
         resp_begin_html(500, "Internal Server Error", NULL);          resp_begin_html(500, "Internal Server Error", NULL);
         puts("<p>Internal Server Error</p>");          puts("<main><p role=\"doc-notice\">Internal Server Error</p></main>");
         resp_end_html();          resp_end_html();
 }  }
   
Line 704  pg_searchres(const struct req *req, struct manpage *r,
Line 715  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("<nav>");
                 puts("<table class=\"results\">");                  puts("<table class=\"results\">");
                 for (i = 0; i < sz; i++) {                  for (i = 0; i < sz; i++) {
                         printf("  <tr>\n"                          printf("  <tr>\n"
Line 722  pg_searchres(const struct req *req, struct manpage *r,
Line 734  pg_searchres(const struct req *req, struct manpage *r,
                              "  </tr>");                               "  </tr>");
                 }                  }
                 puts("</table>");                  puts("</table>");
                   puts("</nav>");
         }          }
   
         if (req->q.equal || sz == 1) {          if (req->q.equal || sz == 1) {
Line 743  resp_catman(const struct req *req, const char *file)
Line 756  resp_catman(const struct req *req, const char *file)
         int              italic, bold;          int              italic, bold;
   
         if ((f = fopen(file, "r")) == NULL) {          if ((f = fopen(file, "r")) == NULL) {
                 puts("<p>You specified an invalid manual file.</p>");                  puts("<p role=\"doc-notice\">\n"
                        "  You specified an invalid manual file.\n"
                        "</p>");
                 return;                  return;
         }          }
   
Line 880  resp_format(const struct req *req, const char *file)
Line 895  resp_format(const struct req *req, const char *file)
         int              usepath;          int              usepath;
   
         if (-1 == (fd = open(file, O_RDONLY))) {          if (-1 == (fd = open(file, O_RDONLY))) {
                 puts("<p>You specified an invalid manual file.</p>");                  puts("<p role=\"doc-notice\">\n"
                        "  You specified an invalid manual file.\n"
                        "</p>");
                 return;                  return;
         }          }
   

Legend:
Removed from v.1.176  
changed lines
  Added in v.1.177

CVSweb