"list graph" action: Search case-independent.
authorFlorian Forster <ff@octo.it>
Sun, 20 Jun 2010 19:39:33 +0000 (21:39 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sun, 20 Jun 2010 19:39:33 +0000 (21:39 +0200)
src/action_list_graphs.c
src/graph.c
src/graph_instance.c

index 131a6fb..f00c6b3 100644 (file)
@@ -227,17 +227,25 @@ static int list_graphs_html (const char *term) /* {{{ */
 int action_list_graphs (void) /* {{{ */
 {
   const char *format;
+  const char *search;
+  int status;
 
   gl_update ();
 
+  search = strtolower_copy (param ("search"));
+
   format = param ("format");
   if (format == NULL)
     format = "html";
 
   if (strcmp ("json", format) == 0)
-    return (list_graphs_json (param ("search")));
+    status = list_graphs_json (search);
   else
-    return (list_graphs_html (param ("search")));
+    status = list_graphs_html (search);
+
+  free (search);
+
+  return (status);
 } /* }}} int action_list_graphs */
 
 /* vim: set sw=2 sts=2 et fdm=marker : */
index da4b5ea..d314bcc 100644 (file)
@@ -284,6 +284,8 @@ int graph_search (graph_config_t *cfg, const char *term, /* {{{ */
     return (status);
   }
 
+  strtolower (buffer);
+
   if (strstr (buffer, term) != NULL)
   {
     status = inst_foreach (cfg->instances, graph_search_submit, &data);
index 45dcefb..73aeb1b 100644 (file)
@@ -435,6 +435,8 @@ int inst_search (graph_config_t *cfg, graph_instance_t *inst, /* {{{ */
       return (status);
     }
 
+    strtolower (buffer);
+
     /* no match */
     if (strstr (buffer, term) == NULL)
       continue;