summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 57811ec)
raw | patch | inline | side by side (parent: 57811ec)
author | Florian Forster <ff@octo.it> | |
Tue, 15 Jun 2010 12:34:04 +0000 (14:34 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Tue, 15 Jun 2010 12:34:04 +0000 (14:34 +0200) |
action_list_graphs.c | patch | blob | history |
diff --git a/action_list_graphs.c b/action_list_graphs.c
index d7cea47f41f8635475c6e00bdf991e799a3fc422..29e3d8b887839b3c3424578280e38e68e89c691a 100644 (file)
--- a/action_list_graphs.c
+++ b/action_list_graphs.c
memset (desc, 0, sizeof (desc));
inst_describe (cfg, inst, desc, sizeof (desc));
- printf ("<li><a href=\"test.fcgi?action=graph;%s\">%s</a></li>\n", params, desc);
+ printf (" <li><a href=\"test.fcgi?action=graph;%s\">%s</a></li>\n",
+ params, desc);
return (0);
} /* }}} int print_graph_inst_html */
memset (buffer, 0, sizeof (buffer));
graph_get_title (cfg, buffer, sizeof (buffer));
- printf ("<li>%s\n<ul>\n", buffer);
+ printf (" <li>%s\n <ul>\n", buffer);
gl_graph_instance_get_all (cfg, print_graph_inst_html, /* user_data = */ NULL);
- printf ("</ul>\n");
+ printf (" </ul></li>\n");
return (0);
} /* }}} int print_graph_html */