Rename the "search" parameter to "q".
authorFlorian Forster <ff@octo.it>
Mon, 21 Jun 2010 13:27:59 +0000 (15:27 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 21 Jun 2010 13:27:59 +0000 (15:27 +0200)
src/action_list_graphs.c
src/action_show_graph.c
src/utils_cgi.c

index e32b999..86d6e43 100644 (file)
@@ -213,7 +213,7 @@ static int print_host_list (__attribute__((unused)) void *user_data) /* {{{ */
 
     host_html = html_escape (host);
 
-    printf ("  <li><a href=\"%s?action=list_graphs&search=%s\">%s</a></li>\n",
+    printf ("  <li><a href=\"%s?action=list_graphs&q=%s\">%s</a></li>\n",
         script_name (), host_html, host_html);
 
     free (host_html);
@@ -256,10 +256,8 @@ int action_list_graphs (void) /* {{{ */
 
   gl_update ();
 
-  search = strtolower_copy (param ("search"));
-
+  search = strtolower_copy (param ("q"));
   status = list_graphs_html (search);
-
   free (search);
 
   return (status);
index 5aaf25a..2f124de 100644 (file)
@@ -39,7 +39,7 @@ static void show_breadcrump_field (const char *str) /* {{{ */
   else
   {
     char *str_html = html_escape (str);
-    printf ("<a href=\"%s?action=list_graphs;search=%s\">%s</a>",
+    printf ("<a href=\"%s?action=list_graphs;q=%s\">%s</a>",
         script_name (), str_html, str_html);
     free (str_html);
   }
index 9030eb8..97dfc7c 100644 (file)
@@ -439,11 +439,11 @@ int html_print_search_box (__attribute__((unused)) void *user_data) /* {{{ */
 {
   char *term_html;
 
-  term_html = html_escape (param ("search"));
+  term_html = html_escape (param ("q"));
 
-  printf ("<form action=\"%s\" method=\"get\">\n"
+  printf ("<form action=\"%s\" method=\"get\" id=\"search-form\">\n"
       "  <input type=\"hidden\" name=\"action\" value=\"list_graphs\" />\n"
-      "  <input type=\"text\" name=\"search\" value=\"%s\" id=\"search-input\" />\n"
+      "  <input type=\"text\" name=\"q\" value=\"%s\" id=\"search-input\" />\n"
       "  <input type=\"submit\" name=\"button\" value=\"Search\" />\n"
       "</form>\n",
       script_name (),