X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=action_list_graphs.c;h=29e3d8b887839b3c3424578280e38e68e89c691a;hb=7a6beaf075a32bfd93d314c00179f258c8e43ee5;hp=4ec9a30948d7c9f9e87644d20b3ac3c4de9a58c1;hpb=0a4d88e7530531c01324af54e881ca770edd10d2;p=collection4.git diff --git a/action_list_graphs.c b/action_list_graphs.c index 4ec9a30..29e3d8b 100644 --- a/action_list_graphs.c +++ b/action_list_graphs.c @@ -66,12 +66,17 @@ static int print_graph_inst_html (graph_config_t *cfg, /* {{{ */ graph_instance_t *inst, __attribute__((unused)) void *user_data) { - char buffer[1024]; + char params[1024]; + char desc[1024]; - memset (buffer, 0, sizeof (buffer)); - inst_get_params (cfg, inst, buffer, sizeof (buffer)); + memset (params, 0, sizeof (params)); + inst_get_params (cfg, inst, params, sizeof (params)); - printf ("
  • %s
  • \n", buffer, buffer); + memset (desc, 0, sizeof (desc)); + inst_describe (cfg, inst, desc, sizeof (desc)); + + printf ("
  • %s
  • \n", + params, desc); return (0); } /* }}} int print_graph_inst_html */ @@ -84,9 +89,9 @@ static int print_graph_html (graph_config_t *cfg, /* {{{ */ memset (buffer, 0, sizeof (buffer)); graph_get_title (cfg, buffer, sizeof (buffer)); - printf ("
  • %s\n
  • \n"); return (0); } /* }}} int print_graph_html */