about summary refs log tree commit diff stats
path: root/shared.c
diff options
context:
space:
mode:
authorLars Hjemli2006-12-28 02:01:49 +0100
committerLars Hjemli2006-12-28 02:01:49 +0100
commite39d738c39d37cdef115c145027f3eec85a62272 (patch)
treebe60a07674a0d118d42f572a35b62ada9529a6bd /shared.c
parentTest for NULL-pointers in html_txt() and friends (diff)
downloadcgit-e39d738c39d37cdef115c145027f3eec85a62272.tar.gz
cgit-e39d738c39d37cdef115c145027f3eec85a62272.zip
Add generic support for search box in page header
This adds the ability to show a search box in any pageheader with correct href and
hidden form data, but does not enable the box on any pages.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'shared.c')
-rw-r--r--shared.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/shared.c b/shared.c index 18b795b..7def51a 100644 --- a/shared.c +++ b/shared.c
@@ -36,6 +36,7 @@ char *cgit_querystring = NULL;
36char *cgit_query_repo = NULL; 36char *cgit_query_repo = NULL;
37char *cgit_query_page = NULL; 37char *cgit_query_page = NULL;
38char *cgit_query_head = NULL; 38char *cgit_query_head = NULL;
39char *cgit_query_search = NULL;
39char *cgit_query_sha1 = NULL; 40char *cgit_query_sha1 = NULL;
40char *cgit_query_sha2 = NULL; 41char *cgit_query_sha2 = NULL;
41int cgit_query_ofs = 0; 42int cgit_query_ofs = 0;
@@ -86,6 +87,8 @@ void cgit_querystring_cb(const char *name, const char *value)
86 cgit_query_repo = xstrdup(value); 87 cgit_query_repo = xstrdup(value);
87 } else if (!strcmp(name, "p")) { 88 } else if (!strcmp(name, "p")) {
88 cgit_query_page = xstrdup(value); 89 cgit_query_page = xstrdup(value);
90 } else if (!strcmp(name, "q")) {
91 cgit_query_search = xstrdup(value);
89 } else if (!strcmp(name, "h")) { 92 } else if (!strcmp(name, "h")) {
90 cgit_query_head = xstrdup(value); 93 cgit_query_head = xstrdup(value);
91 cgit_query_has_symref = 1; 94 cgit_query_has_symref = 1;