diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2006-12-28 02:01:49 +0100 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2006-12-28 02:01:49 +0100 | 
| commit | e39d738c39d37cdef115c145027f3eec85a62272 (patch) | |
| tree | be60a07674a0d118d42f572a35b62ada9529a6bd /shared.c | |
| parent | Test for NULL-pointers in html_txt() and friends (diff) | |
| download | cgit-e39d738c39d37cdef115c145027f3eec85a62272.tar.gz cgit-e39d738c39d37cdef115c145027f3eec85a62272.tar.bz2 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 '')
| -rw-r--r-- | shared.c | 3 | 
1 files changed, 3 insertions, 0 deletions
| @@ -36,6 +36,7 @@ char *cgit_querystring  = NULL;  char *cgit_query_repo   = NULL;  char *cgit_query_page   = NULL;  char *cgit_query_head   = NULL; +char *cgit_query_search = NULL;  char *cgit_query_sha1   = NULL;  char *cgit_query_sha2   = NULL;  int   cgit_query_ofs    = 0; @@ -86,6 +87,8 @@ void cgit_querystring_cb(const char *name, const char *value)  		cgit_query_repo = xstrdup(value);  	} else if (!strcmp(name, "p")) {  		cgit_query_page = xstrdup(value); +	} else if (!strcmp(name, "q")) { +		cgit_query_search = xstrdup(value);  	} else if (!strcmp(name, "h")) {  		cgit_query_head = xstrdup(value);  		cgit_query_has_symref = 1; | 
