summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: edac1d4)
raw | patch | inline | side by side (parent: edac1d4)
author | Florian Forster <ff@octo.it> | |
Tue, 6 Jul 2010 07:44:00 +0000 (09:44 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Tue, 6 Jul 2010 07:44:00 +0000 (09:44 +0200) |
src/action_show_instance.c | patch | blob | history |
index c4ca6cde60a0273387157c4ebc858dd6f5e96726..08d1bc06c94ecf2f1b8aa594a4020ec88bf325b9 100644 (file)
char descr[128];
char params[1024];
+ long begin;
+ long end;
+ char time_params[128];
+ int status;
+
memset (title, 0, sizeof (title));
graph_get_title (cfg, title, sizeof (title));
html_escape_buffer (title, sizeof (title));
inst_get_params (cfg, inst, params, sizeof (params));
html_escape_buffer (params, sizeof (params));
+ time_params[0] = 0;
+ begin = 0;
+ end = 0;
+
+ status = get_time_args (&begin, &end, /* now = */ NULL);
+ if (status == 0)
+ {
+ snprintf (time_params, sizeof (time_params), ";begin=%li;end=%li",
+ begin, end);
+ time_params[sizeof (time_params) - 1] = 0;
+ }
+
printf ("<h3>Instance "%s"</h3>\n", descr);
show_breadcrump (cfg, inst);
if (data->graph_count < MAX_SHOW_GRAPHS)
- printf ("<div class=\"graph-img\"><img src=\"%s?action=graph;%s\" "
+ printf ("<div class=\"graph-img\"><img src=\"%s?action=graph;%s%s\" "
"title=\"%s / %s\" /></div>\n",
- script_name (), params, title, descr);
+ script_name (), params, time_params, title, descr);
else
printf ("<a href=\"%s?action=show_instance;%s\">Show graph "
""%s / %s"</a>\n",