Code

"list graphs" action: List only configured graphs by default.
[collection4.git] / src / action_list_graphs.c
index b5a01d55ec5e5c4e1eaa0dde3bb4b4d5a4afc884..f59da7c474ff1e222ca6bc0f99b5d5b98fc85c36 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);
@@ -85,8 +93,6 @@ static int print_all_graphs (__attribute__((unused)) void *user_data) /* {{{ */
 
 int action_list_graphs (void) /* {{{ */
 {
-  gl_update ();
-
   page_callbacks_t pg_callbacks = PAGE_CALLBACKS_INIT;
   char title[512];