summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 06dbb61)
raw | patch | inline | side by side (parent: 06dbb61)
author | Florian Forster <ff@octo.it> | |
Thu, 22 Jul 2010 14:42:38 +0000 (16:42 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Thu, 22 Jul 2010 14:42:38 +0000 (16:42 +0200) |
It's now handled in src/main.c
src/action_list_graphs.c | patch | blob | history | |
src/action_list_hosts.c | patch | blob | history | |
src/action_search.c | patch | blob | history | |
src/action_search_json.c | patch | blob | history |
index b5a01d55ec5e5c4e1eaa0dde3bb4b4d5a4afc884..1984cd5bfb29d818a9d8ee768808ee719dc8c403 100644 (file)
--- a/src/action_list_graphs.c
+++ b/src/action_list_graphs.c
int action_list_graphs (void) /* {{{ */
{
- gl_update ();
-
page_callbacks_t pg_callbacks = PAGE_CALLBACKS_INIT;
char title[512];
index d1cae717313729dc5abcb5258bf40e41b349b80d..0e7b963187e1202444bc31267ef388b5e13a3b86 100644 (file)
--- a/src/action_list_hosts.c
+++ b/src/action_list_hosts.c
int action_list_hosts (void) /* {{{ */
{
- gl_update ();
-
page_callbacks_t pg_callbacks = PAGE_CALLBACKS_INIT;
char title[512];
diff --git a/src/action_search.c b/src/action_search.c
index c2dd378e758dee1beb965391079e1cfa5c3f0ea4..27b6a0efb2e700d18c5c83431bc3d18dbc9abc0c 100644 (file)
--- a/src/action_search.c
+++ b/src/action_search.c
page_data_t pg_data;
int status;
- gl_update ();
-
pg_data.search_term = strtolower_copy (param ("q"));
if ((pg_data.search_term != NULL) && (pg_data.search_term[0] == 0))
{
index 6fcfa67c5e50cfb7257b19a8942eef161e866731..834e07e83f339739198d379438ba3ad2675ea386 100644 (file)
--- a/src/action_search_json.c
+++ b/src/action_search_json.c
char *search;
int status;
- gl_update ();
-
search = strtolower_copy (param ("q"));
status = list_graphs_json (search);