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

Diff for /mandoc/cgi.c between version 1.125 and 1.126

version 1.125, 2016/04/15 00:51:59 version 1.126, 2016/04/15 01:34:51
Line 341  resp_begin_html(int code, const char *msg)
Line 341  resp_begin_html(int code, const char *msg)
         resp_begin_http(code, msg);          resp_begin_http(code, 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"
                "<!-- Begin page content. //-->\n",                 "<!-- Begin page content. //-->\n",
                CSS_DIR, CUSTOMIZE_TITLE);                 CSS_DIR, CUSTOMIZE_TITLE);
   
Line 361  resp_end_html(void)
Line 361  resp_end_html(void)
   
         resp_copy(MAN_DIR "/footer.html");          resp_copy(MAN_DIR "/footer.html");
   
         puts("</BODY>\n"          puts("</body>\n"
              "</HTML>");               "</html>");
 }  }
   
 static void  static void
Line 371  resp_searchform(const struct req *req)
Line 371  resp_searchform(const struct req *req)
         int              i;          int              i;
   
         puts("<!-- Begin search form. //-->");          puts("<!-- Begin search form. //-->");
         printf("<DIV ID=\"mancgi\">\n"          printf("<div id=\"mancgi\">\n"
                "<FORM ACTION=\"/%s\" METHOD=\"get\">\n"                 "<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( "<TABLE><TR><TD>\n"          printf( "<table><tr><td>\n"
                 "<INPUT TYPE=\"text\" NAME=\"query\" VALUE=\"");                  "<input type=\"text\" name=\"query\" value=\"");
         if (NULL != req->q.query)          if (NULL != req->q.query)
                 html_print(req->q.query);                  html_print(req->q.query);
         puts("\" SIZE=\"40\">");          puts("\" size=\"40\">");
   
         /* Write submission and reset buttons. */          /* Write submission and reset buttons. */
   
         printf( "<INPUT TYPE=\"submit\" VALUE=\"Submit\">\n"          printf( "<input type=\"submit\" value=\"Submit\">\n"
                 "<INPUT TYPE=\"reset\" VALUE=\"Reset\">\n");                  "<input type=\"reset\" value=\"Reset\">\n");
   
         /* Write show radio button */          /* Write show radio button */
   
         printf( "</TD><TD>\n"          printf( "</td><td>\n"
                 "<INPUT TYPE=\"radio\" ");                  "<input type=\"radio\" ");
         if (req->q.equal)          if (req->q.equal)
                 printf("CHECKED=\"checked\" ");                  printf("checked=\"checked\" ");
         printf( "NAME=\"apropos\" ID=\"show\" VALUE=\"0\">\n"          printf( "name=\"apropos\" id=\"show\" value=\"0\">\n"
                 "<LABEL FOR=\"show\">Show named manual page</LABEL>\n");                  "<label for=\"show\">Show named manual page</label>\n");
   
         /* Write section selector. */          /* Write section selector. */
   
         puts(   "</TD></TR><TR><TD>\n"          puts(   "</td></tr><tr><td>\n"
                 "<SELECT NAME=\"sec\">");                  "<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=\"");
                         html_print(req->p[i]);                          html_print(req->p[i]);
                         printf("\">");                          printf("\">");
                         html_print(req->p[i]);                          html_print(req->p[i]);
                         puts("</OPTION>");                          puts("</option>");
                 }                  }
                 puts("</SELECT>");                  puts("</select>");
         }          }
   
         /* Write search radio button */          /* Write search radio button */
   
         printf( "</TD><TD>\n"          printf( "</td><td>\n"
                 "<INPUT TYPE=\"radio\" ");                  "<input type=\"radio\" ");
         if (0 == req->q.equal)          if (0 == req->q.equal)
                 printf("CHECKED=\"checked\" ");                  printf("checked=\"checked\" ");
         printf( "NAME=\"apropos\" ID=\"search\" VALUE=\"1\">\n"          printf( "name=\"apropos\" id=\"search\" value=\"1\">\n"
                 "<LABEL FOR=\"search\">Search with apropos query</LABEL>\n");                  "<label for=\"search\">Search with apropos query</label>\n");
   
         puts("</TD></TR></TABLE>\n"          puts("</td></tr></table>\n"
              "</FIELDSET>\n"               "</fieldset>\n"
              "</FORM>\n"               "</form>\n"
              "</DIV>");               "</div>");
         puts("<!-- End search form. //-->");          puts("<!-- End search form. //-->");
 }  }
   
Line 507  pg_index(const struct req *req)
Line 507  pg_index(const struct req *req)
   
         resp_begin_html(200, NULL);          resp_begin_html(200, NULL);
         resp_searchform(req);          resp_searchform(req);
         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%smandoc/man8/man.cgi.8\">man.cgi</A>\n"                 "<a href=\"/%s%smandoc/man8/man.cgi.8\">man.cgi</a>\n"
                "manual, and the\n"                 "manual, and the\n"
                "<A HREF=\"/%s%smandoc/man1/apropos.1\">apropos</A>\n"                 "<a href=\"/%s%smandoc/man1/apropos.1\">apropos</a>\n"
                "manual explains the query syntax.\n"                 "manual explains the query syntax.\n"
                "</P>\n",                 "</p>\n",
                scriptname, *scriptname == '\0' ? "" : "/",                 scriptname, *scriptname == '\0' ? "" : "/",
                scriptname, *scriptname == '\0' ? "" : "/");                 scriptname, *scriptname == '\0' ? "" : "/");
         resp_end_html();          resp_end_html();
Line 524  pg_noresult(const struct req *req, const char *msg)
Line 524  pg_noresult(const struct req *req, const char *msg)
 {  {
         resp_begin_html(200, NULL);          resp_begin_html(200, NULL);
         resp_searchform(req);          resp_searchform(req);
         puts("<P>");          puts("<p>");
         puts(msg);          puts(msg);
         puts("</P>");          puts("</p>");
         resp_end_html();          resp_end_html();
 }  }
   
Line 535  pg_error_badrequest(const char *msg)
Line 535  pg_error_badrequest(const char *msg)
 {  {
   
         resp_begin_html(400, "Bad Request");          resp_begin_html(400, "Bad Request");
         puts("<H1>Bad Request</H1>\n"          puts("<h1>Bad Request</h1>\n"
              "<P>\n");               "<p>\n");
         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>", scriptname);
         resp_end_html();          resp_end_html();
 }  }
   
Line 548  static void
Line 548  static void
 pg_error_internal(void)  pg_error_internal(void)
 {  {
         resp_begin_html(500, "Internal Server Error");          resp_begin_html(500, "Internal Server Error");
         puts("<P>Internal Server Error</P>");          puts("<p>Internal Server Error</p>");
         resp_end_html();          resp_end_html();
 }  }
   
Line 590  pg_searchres(const struct req *req, struct manpage *r,
Line 590  pg_searchres(const struct req *req, struct manpage *r,
         resp_searchform(req);          resp_searchform(req);
   
         if (sz > 1) {          if (sz > 1) {
                 puts("<DIV CLASS=\"results\">");                  puts("<div class=\"results\">");
                 puts("<TABLE>");                  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 class=\"title\">\n"
                                "<A HREF=\"/%s%s%s/%s",                                 "<a href=\"/%s%s%s/%s",
                             scriptname, *scriptname == '\0' ? "" : "/",                              scriptname, *scriptname == '\0' ? "" : "/",
                             req->q.manpath, r[i].file);                              req->q.manpath, r[i].file);
                         printf("\">");                          printf("\">");
                         html_print(r[i].names);                          html_print(r[i].names);
                         printf("</A>\n"                          printf("</a>\n"
                                "</TD>\n"                                 "</td>\n"
                                "<TD CLASS=\"desc\">");                                 "<td class=\"desc\">");
                         html_print(r[i].output);                          html_print(r[i].output);
                         puts("</TD>\n"                          puts("</td>\n"
                              "</TR>");                               "</tr>");
                 }                  }
   
                 puts("</TABLE>\n"                  puts("</table>\n"
                      "</DIV>");                       "</div>");
         }          }
   
         /*          /*
Line 619  pg_searchres(const struct req *req, struct manpage *r,
Line 619  pg_searchres(const struct req *req, struct manpage *r,
          */           */
   
         if (req->q.equal || sz == 1) {          if (req->q.equal || sz == 1) {
                 puts("<HR>");                  puts("<hr>");
                 iuse = 0;                  iuse = 0;
                 priouse = 20;                  priouse = 20;
                 archpriouse = 3;                  archpriouse = 3;
Line 670  catman(const struct req *req, const char *file)
Line 670  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>You specified an invalid manual file.</p>");
                 return;                  return;
         }          }
   
         puts("<DIV CLASS=\"catman\">\n"          puts("<div class=\"catman\">\n"
              "<PRE>");               "<pre>");
   
         p = NULL;          p = NULL;
         sz = 0;          sz = 0;
Line 701  catman(const struct req *req, const char *file)
Line 701  catman(const struct req *req, const char *file)
   
                         if ('\b' != p[i + 1]) {                          if ('\b' != p[i + 1]) {
                                 if (italic)                                  if (italic)
                                         printf("</I>");                                          printf("</i>");
                                 if (bold)                                  if (bold)
                                         printf("</B>");                                          printf("</b>");
                                 italic = bold = 0;                                  italic = bold = 0;
                                 html_putchar(p[i]);                                  html_putchar(p[i]);
                                 continue;                                  continue;
Line 714  catman(const struct req *req, const char *file)
Line 714  catman(const struct req *req, const char *file)
   
                         if ('_' == p[i]) {                          if ('_' == p[i]) {
                                 if (bold)                                  if (bold)
                                         printf("</B>");                                          printf("</b>");
                                 if ( ! italic)                                  if ( ! italic)
                                         printf("<I>");                                          printf("<i>");
                                 bold = 0;                                  bold = 0;
                                 italic = 1;                                  italic = 1;
                                 i += 2;                                  i += 2;
Line 738  catman(const struct req *req, const char *file)
Line 738  catman(const struct req *req, const char *file)
                                         ('*' == p[i] && '|' == p[i + 2]) ||                                          ('*' == p[i] && '|' == p[i + 2]) ||
                                         ('|' == p[i] && '*' == p[i + 2]))  {                                          ('|' == p[i] && '*' == p[i + 2]))  {
                                 if (italic)                                  if (italic)
                                         printf("</I>");                                          printf("</i>");
                                 if (bold)                                  if (bold)
                                         printf("</B>");                                          printf("</b>");
                                 italic = bold = 0;                                  italic = bold = 0;
                                 putchar('*');                                  putchar('*');
                                 i += 2;                                  i += 2;
Line 752  catman(const struct req *req, const char *file)
Line 752  catman(const struct req *req, const char *file)
                                         ('+' == p[i] && '|' == p[i + 1]) ||                                          ('+' == p[i] && '|' == p[i + 1]) ||
                                         ('|' == p[i] && '+' == p[i + 1]))  {                                          ('|' == p[i] && '+' == p[i + 1]))  {
                                 if (italic)                                  if (italic)
                                         printf("</I>");                                          printf("</i>");
                                 if (bold)                                  if (bold)
                                         printf("</B>");                                          printf("</b>");
                                 italic = bold = 0;                                  italic = bold = 0;
                                 putchar('+');                                  putchar('+');
                                 i += 2;                                  i += 2;
Line 764  catman(const struct req *req, const char *file)
Line 764  catman(const struct req *req, const char *file)
                         /* Bold mode. */                          /* Bold mode. */
   
                         if (italic)                          if (italic)
                                 printf("</I>");                                  printf("</i>");
                         if ( ! bold)                          if ( ! bold)
                                 printf("<B>");                                  printf("<b>");
                         bold = 1;                          bold = 1;
                         italic = 0;                          italic = 0;
                         i += 2;                          i += 2;
Line 779  catman(const struct req *req, const char *file)
Line 779  catman(const struct req *req, const char *file)
                  */                   */
   
                 if (italic)                  if (italic)
                         printf("</I>");                          printf("</i>");
                 if (bold)                  if (bold)
                         printf("</B>");                          printf("</b>");
   
                 if (i == len - 1 && p[i] != '\n')                  if (i == len - 1 && p[i] != '\n')
                         html_putchar(p[i]);                          html_putchar(p[i]);
Line 790  catman(const struct req *req, const char *file)
Line 790  catman(const struct req *req, const char *file)
         }          }
         free(p);          free(p);
   
         puts("</PRE>\n"          puts("</pre>\n"
              "</DIV>");               "</div>");
   
         fclose(f);          fclose(f);
 }  }
Line 807  format(const struct req *req, const char *file)
Line 807  format(const struct req *req, const char *file)
         int              usepath;          int              usepath;
   
         if (-1 == (fd = open(file, O_RDONLY, 0))) {          if (-1 == (fd = open(file, O_RDONLY, 0))) {
                 puts("<P>You specified an invalid manual file.</P>");                  puts("<p>You specified an invalid manual file.</p>");
                 return;                  return;
         }          }
   

Legend:
Removed from v.1.125  
changed lines
  Added in v.1.126

CVSweb