summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d71d8d8)
raw | patch | inline | side by side (parent: d71d8d8)
author | Florian Forster <ff@octo.it> | |
Wed, 9 Jun 2010 17:03:42 +0000 (19:03 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Wed, 9 Jun 2010 17:03:42 +0000 (19:03 +0200) |
action_list_graphs.c | patch | blob | history |
diff --git a/action_list_graphs.c b/action_list_graphs.c
index 16d5cc4405761178a838a0e6de3426a4b93d5c98..c239222051679003587bbcf769d407d9b2abd4df 100644 (file)
--- a/action_list_graphs.c
+++ b/action_list_graphs.c
return (0);
} /* }}} int print_graph_json */
-static int print_graph_inst_html (__attribute__((unused)) graph_config_t *cfg, /* {{{ */
+static int print_graph_inst_html (graph_config_t *cfg, /* {{{ */
graph_instance_t *inst,
__attribute__((unused)) void *user_data)
{
char buffer[1024];
memset (buffer, 0, sizeof (buffer));
- gl_instance_get_ident (inst, buffer, sizeof (buffer));
+ gl_instance_get_params (cfg, inst, buffer, sizeof (buffer));
- printf ("<li>%s</li>\n", buffer);
+ printf ("<li><a href=\"test.fcgi?action=graph;%s\">%s</a></li>\n", buffer, buffer);
return (0);
} /* }}} int print_graph_inst_html */
static int print_graph_html (graph_config_t *cfg, /* {{{ */
__attribute__((unused)) void *user_data)
{
- printf ("<li>%p\n<ul>\n", (void *) cfg);
+ char buffer[1024];
+
+ memset (buffer, 0, sizeof (buffer));
+ gl_graph_get_title (cfg, buffer, sizeof (buffer));
+
+ printf ("<li>%s\n<ul>\n", buffer);
gl_graph_instance_get_all (cfg, print_graph_inst_html, /* user_data = */ NULL);
printf ("</ul>\n");