X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Faction_list_graphs.c;h=6f919e3afdfdce142a054b71d18a8e8a81844c78;hb=110247dd90ceaec4d9fee197fce64cfd63101519;hp=b5a01d55ec5e5c4e1eaa0dde3bb4b4d5a4afc884;hpb=067f1db82ec2cf7c9a3fabe4f3e3e022714e8cbe;p=collection4.git diff --git a/src/action_list_graphs.c b/src/action_list_graphs.c index b5a01d5..6f919e3 100644 --- a/src/action_list_graphs.c +++ b/src/action_list_graphs.c @@ -66,7 +66,7 @@ static int print_one_graph (graph_config_t *cfg, /* {{{ */ html_escape_buffer (params, sizeof (params)); printf ("
  • " - "%s (%lu %s)
  • \n", + "%s (%lu %s)\n", script_name (), params, title, (unsigned long) num_instances, (num_instances == 1) ? "instance" : "instances"); @@ -76,17 +76,30 @@ 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 (" \n"); + if (!include_dynamic) + { + printf ("
    " + "List dynamic graphs, too." + "
    \n", script_name ()); + } + return (0); } /* }}} int print_all_graphs */ int action_list_graphs (void) /* {{{ */ { - gl_update (); - page_callbacks_t pg_callbacks = PAGE_CALLBACKS_INIT; char title[512];