Rename action: "show_graph" -> "show_instance".
authorFlorian Forster <ff@octo.it>
Sat, 26 Jun 2010 10:39:01 +0000 (12:39 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sat, 26 Jun 2010 10:39:01 +0000 (12:39 +0200)
src/action_list_graphs.c
src/action_show_instance.c
src/main.c

index ff78482..81a2e19 100644 (file)
@@ -79,7 +79,7 @@ static int print_graph_inst_html (graph_config_t *cfg, /* {{{ */
   inst_describe (cfg, inst, desc, sizeof (desc));
   html_escape_buffer (desc, sizeof (desc));
 
-  printf ("    <li class=\"instance\"><a href=\"%s?action=show_graph;%s\">%s</a></li>\n",
+  printf ("    <li class=\"instance\"><a href=\"%s?action=show_instance;%s\">%s</a></li>\n",
       script_name (), params, desc);
 
   return (0);
index a45fb49..1f6475f 100644 (file)
@@ -136,7 +136,7 @@ static int show_instance_list_cb (graph_instance_t *inst, /* {{{ */
   html_escape_buffer (params, sizeof (params));
 
   printf ("    <li class=\"instance\">"
-      "<a href=\"%s?action=show_graph;%s\">%s</a></li>\n",
+      "<a href=\"%s?action=show_instance;%s\">%s</a></li>\n",
       script_name (), params, descr);
 
   return (0);
@@ -157,7 +157,7 @@ static int show_instance_list (void *user_data) /* {{{ */
   html_escape_buffer (params, sizeof (params));
 
   printf ("<ul class=\"graph_list\">\n"
-      "  <li class=\"graph\"><a href=\"%s?action=show_graph;%s\">%s</a>\n"
+      "  <li class=\"graph\"><a href=\"%s?action=show_instance;%s\">%s</a>\n"
       "  <ul class=\"instance_list\">\n",
       script_name (), params, title);
 
@@ -212,14 +212,6 @@ static int show_instance (void *user_data) /* {{{ */
   return (0);
 } /* }}} int show_instance */
 
-static int show_graph (void *user_data) /* {{{ */
-{
-  show_graph_data_t *data = user_data;
-
-  show_breadcrump (data);
-  return (show_instance_list (user_data));
-} /* }}} int show_graph */
-
 int action_show_instance (void) /* {{{ */
 {
   page_callbacks_t pg_callbacks = PAGE_CALLBACKS_INIT;
index 208318d..1d1ba0a 100644 (file)
@@ -37,7 +37,7 @@ static const action_t actions[] =
   { "graph",       action_graph },
   { "list_graphs", action_list_graphs },
   { "search_json", action_search_json },
-  { "show_graph",  action_show_instance },
+  { "show_instance", action_show_instance },
   { "usage",       action_usage }
 };
 static const size_t actions_num = sizeof (actions) / sizeof (actions[0]);