author | Lars Hjemli <hjemli@gmail.com> | 2006-12-28 01:01:49 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2006-12-28 01:01:49 (UTC) |
commit | e39d738c39d37cdef115c145027f3eec85a62272 (patch) (unidiff) | |
tree | be60a07674a0d118d42f572a35b62ada9529a6bd /shared.c | |
parent | 27cd3b2a700e1cc46cd0393ddea48c07b62ee3a6 (diff) | |
download | cgit-e39d738c39d37cdef115c145027f3eec85a62272.zip cgit-e39d738c39d37cdef115c145027f3eec85a62272.tar.gz cgit-e39d738c39d37cdef115c145027f3eec85a62272.tar.bz2 |
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>
-rw-r--r-- | shared.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -33,12 +33,13 @@ int cgit_query_has_symref = 0; | |||
33 | int cgit_query_has_sha1 = 0; | 33 | int cgit_query_has_sha1 = 0; |
34 | 34 | ||
35 | char *cgit_querystring = NULL; | 35 | char *cgit_querystring = NULL; |
36 | char *cgit_query_repo = NULL; | 36 | char *cgit_query_repo = NULL; |
37 | char *cgit_query_page = NULL; | 37 | char *cgit_query_page = NULL; |
38 | char *cgit_query_head = NULL; | 38 | char *cgit_query_head = NULL; |
39 | char *cgit_query_search = NULL; | ||
39 | char *cgit_query_sha1 = NULL; | 40 | char *cgit_query_sha1 = NULL; |
40 | char *cgit_query_sha2 = NULL; | 41 | char *cgit_query_sha2 = NULL; |
41 | int cgit_query_ofs = 0; | 42 | int cgit_query_ofs = 0; |
42 | 43 | ||
43 | int htmlfd = 0; | 44 | int htmlfd = 0; |
44 | 45 | ||
@@ -83,12 +84,14 @@ void cgit_repo_config_cb(const char *name, const char *value) | |||
83 | void cgit_querystring_cb(const char *name, const char *value) | 84 | void cgit_querystring_cb(const char *name, const char *value) |
84 | { | 85 | { |
85 | if (!strcmp(name,"r")) { | 86 | if (!strcmp(name,"r")) { |
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; |
92 | } else if (!strcmp(name, "id")) { | 95 | } else if (!strcmp(name, "id")) { |
93 | cgit_query_sha1 = xstrdup(value); | 96 | cgit_query_sha1 = xstrdup(value); |
94 | cgit_query_has_sha1 = 1; | 97 | cgit_query_has_sha1 = 1; |