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

Diff for /mandoc/cgi.c between version 1.128 and 1.134

version 1.128, 2016/04/15 16:42:52 version 1.134, 2016/07/10 10:05:33
Line 59  struct req {
Line 59  struct req {
         int               isquery; /* QUERY_STRING used, not PATH_INFO */          int               isquery; /* QUERY_STRING used, not PATH_INFO */
 };  };
   
 static  void             catman(const struct req *, const char *);  enum    focus {
 static  void             format(const struct req *, const char *);          FOCUS_NONE = 0,
           FOCUS_QUERY
   };
   
 static  void             html_print(const char *);  static  void             html_print(const char *);
 static  void             html_putchar(char);  static  void             html_putchar(char);
 static  int              http_decode(char *);  static  int              http_decode(char *);
 static  void             http_parse(struct req *, const char *);  static  void             parse_manpath_conf(struct req *);
 static  void             pathgen(struct req *);  static  void             parse_path_info(struct req *req, const char *path);
 static  void             path_parse(struct req *req, const char *path);  static  void             parse_query_string(struct req *, const char *);
 static  void             pg_error_badrequest(const char *);  static  void             pg_error_badrequest(const char *);
 static  void             pg_error_internal(void);  static  void             pg_error_internal(void);
 static  void             pg_index(const struct req *);  static  void             pg_index(const struct req *);
Line 77  static void   pg_searchres(const struct req *,
Line 80  static void   pg_searchres(const struct req *,
 static  void             pg_show(struct req *, const char *);  static  void             pg_show(struct req *, const char *);
 static  void             resp_begin_html(int, const char *);  static  void             resp_begin_html(int, const char *);
 static  void             resp_begin_http(int, const char *);  static  void             resp_begin_http(int, const char *);
   static  void             resp_catman(const struct req *, const char *);
 static  void             resp_copy(const char *);  static  void             resp_copy(const char *);
 static  void             resp_end_html(void);  static  void             resp_end_html(void);
 static  void             resp_searchform(const struct req *);  static  void             resp_format(const struct req *, const char *);
   static  void             resp_searchform(const struct req *, enum focus);
 static  void             resp_show(const struct req *, const char *);  static  void             resp_show(const struct req *, const char *);
 static  void             set_query_attr(char **, char **);  static  void             set_query_attr(char **, char **);
 static  int              validate_filename(const char *);  static  int              validate_filename(const char *);
Line 185  set_query_attr(char **attr, char **val)
Line 190  set_query_attr(char **attr, char **val)
  * and store the values into the query structure.   * and store the values into the query structure.
  */   */
 static void  static void
 http_parse(struct req *req, const char *qs)  parse_query_string(struct req *req, const char *qs)
 {  {
         char            *key, *val;          char            *key, *val;
         size_t           keysz, valsz;          size_t           keysz, valsz;
Line 367  resp_end_html(void)
Line 372  resp_end_html(void)
 }  }
   
 static void  static void
 resp_searchform(const struct req *req)  resp_searchform(const struct req *req, enum focus focus)
 {  {
         int              i;          int              i;
   
Line 380  resp_searchform(const struct req *req)
Line 385  resp_searchform(const struct req *req)
   
         /* Write query input box. */          /* Write query input box. */
   
         printf( "<table><tr><td>\n"          printf("<input type=\"text\" name=\"query\" value=\"");
                 "<input type=\"text\" name=\"query\" value=\"");          if (req->q.query != NULL)
         if (NULL != req->q.query)  
                 html_print(req->q.query);                  html_print(req->q.query);
         puts("\" size=\"40\">");          printf( "\" size=\"40\"");
           if (focus == FOCUS_QUERY)
                   printf(" autofocus");
           puts(">");
   
         /* Write submission and reset buttons. */          /* Write submission buttons. */
   
         printf( "<input type=\"submit\" value=\"Submit\">\n"          printf( "<button type=\"submit\" name=\"apropos\" value=\"0\">"
                 "<input type=\"reset\" value=\"Reset\">\n");                  "man</button>\n"
                   "<button type=\"submit\" name=\"apropos\" value=\"1\">"
                   "apropos</button>\n<br/>\n");
   
         /* Write show radio button */  
   
         printf( "</td><td>\n"  
                 "<input type=\"radio\" ");  
         if (req->q.equal)  
                 printf("checked=\"checked\" ");  
         printf( "name=\"apropos\" id=\"show\" value=\"0\">\n"  
                 "<label for=\"show\">Show named manual page</label>\n");  
   
         /* Write section selector. */          /* Write section selector. */
   
         puts(   "</td></tr><tr><td>\n"          puts("<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 &&
Line 446  resp_searchform(const struct req *req)
Line 445  resp_searchform(const struct req *req)
                 puts("</select>");                  puts("</select>");
         }          }
   
         /* Write search radio button */          puts("</fieldset>\n"
   
         printf( "</td><td>\n"  
                 "<input type=\"radio\" ");  
         if (0 == req->q.equal)  
                 printf("checked=\"checked\" ");  
         printf( "name=\"apropos\" id=\"search\" value=\"1\">\n"  
                 "<label for=\"search\">Search with apropos query</label>\n");  
   
         puts("</td></tr></table>\n"  
              "</fieldset>\n"  
              "</form>\n"               "</form>\n"
              "</div>");               "</div>");
         puts("<!-- End search form. //-->");          puts("<!-- End search form. //-->");
Line 481  validate_manpath(const struct req *req, const char* ma
Line 470  validate_manpath(const struct req *req, const char* ma
 {  {
         size_t   i;          size_t   i;
   
         if ( ! strcmp(manpath, "mandoc"))  
                 return 1;  
   
         for (i = 0; i < req->psz; i++)          for (i = 0; i < req->psz; i++)
                 if ( ! strcmp(manpath, req->p[i]))                  if ( ! strcmp(manpath, req->p[i]))
                         return 1;                          return 1;
Line 507  pg_index(const struct req *req)
Line 493  pg_index(const struct req *req)
 {  {
   
         resp_begin_html(200, NULL);          resp_begin_html(200, NULL);
         resp_searchform(req);          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%smandoc/man8/man.cgi.8\">man.cgi</a>\n"                 "<a href=\"/%s%sman.cgi.8\">man.cgi(8)</a>\n"
                "manual, and the\n"                 "manual, and the\n"
                "<a href=\"/%s%smandoc/man1/apropos.1\">apropos</a>\n"                 "<a 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 524  static void
Line 510  static void
 pg_noresult(const struct req *req, const char *msg)  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, FOCUS_QUERY);
         puts("<p>");          puts("<p>");
         puts(msg);          puts(msg);
         puts("</p>");          puts("</p>");
Line 588  pg_searchres(const struct req *req, struct manpage *r,
Line 574  pg_searchres(const struct req *req, struct manpage *r,
         }          }
   
         resp_begin_html(200, NULL);          resp_begin_html(200, NULL);
         resp_searchform(req);          resp_searchform(req,
               req->q.equal || sz == 1 ? FOCUS_NONE : FOCUS_QUERY);
   
         if (sz > 1) {          if (sz > 1) {
                 puts("<div class=\"results\">");                  puts("<div class=\"results\">");
Line 661  pg_searchres(const struct req *req, struct manpage *r,
Line 648  pg_searchres(const struct req *req, struct manpage *r,
 }  }
   
 static void  static void
 catman(const struct req *req, const char *file)  resp_catman(const struct req *req, const char *file)
 {  {
         FILE            *f;          FILE            *f;
         char            *p;          char            *p;
Line 798  catman(const struct req *req, const char *file)
Line 785  catman(const struct req *req, const char *file)
 }  }
   
 static void  static void
 format(const struct req *req, const char *file)  resp_format(const struct req *req, const char *file)
 {  {
         struct manoutput conf;          struct manoutput conf;
         struct mparse   *mp;          struct mparse   *mp;
Line 856  resp_show(const struct req *req, const char *file)
Line 843  resp_show(const struct req *req, const char *file)
                 file += 2;                  file += 2;
   
         if ('c' == *file)          if ('c' == *file)
                 catman(req, file);                  resp_catman(req, file);
         else          else
                 format(req, file);                  resp_format(req, file);
 }  }
   
 static void  static void
Line 894  pg_show(struct req *req, const char *fullpath)
Line 881  pg_show(struct req *req, const char *fullpath)
                 free(manpath);                  free(manpath);
                 return;                  return;
         }          }
           free(manpath);
   
         if (strcmp(manpath, "mandoc")) {  
                 free(req->q.manpath);  
                 req->q.manpath = manpath;  
         } else  
                 free(manpath);  
   
         if ( ! validate_filename(file)) {          if ( ! validate_filename(file)) {
                 pg_error_badrequest(                  pg_error_badrequest(
                     "You specified an invalid manual file.");                      "You specified an invalid manual file.");
Line 908  pg_show(struct req *req, const char *fullpath)
Line 890  pg_show(struct req *req, const char *fullpath)
         }          }
   
         resp_begin_html(200, NULL);          resp_begin_html(200, NULL);
         resp_searchform(req);          resp_searchform(req, FOCUS_NONE);
         resp_show(req, file);          resp_show(req, file);
         resp_end_html();          resp_end_html();
 }  }
Line 1025  main(void)
Line 1007  main(void)
   
         memset(&req, 0, sizeof(struct req));          memset(&req, 0, sizeof(struct req));
         req.q.equal = 1;          req.q.equal = 1;
         pathgen(&req);          parse_manpath_conf(&req);
   
         /* Parse the path info and the query string. */          /* Parse the path info and the query string. */
   
Line 1035  main(void)
Line 1017  main(void)
                 path++;                  path++;
   
         if (*path != '\0') {          if (*path != '\0') {
                 path_parse(&req, path);                  parse_path_info(&req, path);
                 if (access(path, F_OK) == -1)                  if (req.q.manpath == NULL || access(path, F_OK) == -1)
                         path = "";                          path = "";
         } else if ((querystring = getenv("QUERY_STRING")) != NULL)          } else if ((querystring = getenv("QUERY_STRING")) != NULL)
                 http_parse(&req, querystring);                  parse_query_string(&req, querystring);
   
         /* Validate parsed data and add defaults. */          /* Validate parsed data and add defaults. */
   
Line 1080  main(void)
Line 1062  main(void)
  * If PATH_INFO is not a file name, translate it to a query.   * If PATH_INFO is not a file name, translate it to a query.
  */   */
 static void  static void
 path_parse(struct req *req, const char *path)  parse_path_info(struct req *req, const char *path)
 {  {
         char    *dir;          char    *dir;
   
Line 1132  path_parse(struct req *req, const char *path)
Line 1114  path_parse(struct req *req, const char *path)
  * Scan for indexable paths.   * Scan for indexable paths.
  */   */
 static void  static void
 pathgen(struct req *req)  parse_manpath_conf(struct req *req)
 {  {
         FILE    *fp;          FILE    *fp;
         char    *dp;          char    *dp;

Legend:
Removed from v.1.128  
changed lines
  Added in v.1.134

CVSweb