"list graphs" action: List only configured graphs by default.
authorFlorian Forster <ff@octo.it>
Wed, 28 Jul 2010 14:51:21 +0000 (16:51 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Wed, 28 Jul 2010 14:51:21 +0000 (16:51 +0200)
src/action_list_graphs.c
src/graph_list.c
src/graph_list.h

index 1984cd5..f59da7c 100644 (file)
@@ -76,8 +76,16 @@ static int print_one_graph (graph_config_t *cfg, /* {{{ */
 
 static int print_all_graphs (__attribute__((unused)) void *user_data) /* {{{ */
 {
+  const char *dynamic;
+  _Bool include_dynamic = 0;
+
+  dynamic = param ("dynamic");
+  if ((dynamic != NULL)
+      && (strcmp ("true", dynamic) == 0))
+    include_dynamic = 1;
+
   printf ("    <ul class=\"graph_list\">\n");
-  gl_graph_get_all (print_one_graph, /* user_data = */ NULL);
+  gl_graph_get_all (include_dynamic, print_one_graph, /* user_data = */ NULL);
   printf ("    </ul>\n");
 
   return (0);
index b405476..60cb82a 100644 (file)
@@ -780,8 +780,8 @@ int gl_config_submit (void) /* {{{ */
   return (0);
 } /* }}} int graph_config_submit */
 
-int gl_graph_get_all (graph_callback_t callback, /* {{{ */
-    void *user_data)
+int gl_graph_get_all (_Bool include_dynamic, /* {{{ */
+    graph_callback_t callback, void *user_data)
 {
   size_t i;
 
@@ -799,6 +799,9 @@ int gl_graph_get_all (graph_callback_t callback, /* {{{ */
       return (status);
   }
 
+  if (!include_dynamic)
+    return (0);
+
   for (i = 0; i < gl_dynamic_num; i++)
   {
     int status;
index f7cb40e..43d4406 100644 (file)
@@ -37,7 +37,8 @@ int gl_config_submit (void);
 
 graph_config_t *gl_graph_get_selected (void);
 
-int gl_graph_get_all (graph_callback_t callback, void *user_data);
+int gl_graph_get_all (_Bool include_dynamic,
+    graph_callback_t callback, void *user_data);
 
 int gl_graph_instance_get_all (graph_config_t *cfg, graph_inst_callback_t callback,
     void *user_data);