summaryrefslogtreecommitdiffabout
path: root/shared.c
authorLars Hjemli <hjemli@gmail.com>2006-12-28 01:01:49 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2006-12-28 01:01:49 (UTC)
commite39d738c39d37cdef115c145027f3eec85a62272 (patch) (unidiff)
treebe60a07674a0d118d42f572a35b62ada9529a6bd /shared.c
parent27cd3b2a700e1cc46cd0393ddea48c07b62ee3a6 (diff)
downloadcgit-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>
Diffstat (limited to 'shared.c') (more/less context) (ignore whitespace changes)
-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
@@ -23,32 +23,33 @@ int cgit_cache_root_ttl = 5;
23int cgit_cache_repo_ttl = 5; 23int cgit_cache_repo_ttl = 5;
24int cgit_cache_dynamic_ttl = 5; 24int cgit_cache_dynamic_ttl = 5;
25int cgit_cache_static_ttl = -1; 25int cgit_cache_static_ttl = -1;
26int cgit_cache_max_create_time = 5; 26int cgit_cache_max_create_time = 5;
27 27
28char *cgit_repo_name = NULL; 28char *cgit_repo_name = NULL;
29char *cgit_repo_desc = NULL; 29char *cgit_repo_desc = NULL;
30char *cgit_repo_owner = NULL; 30char *cgit_repo_owner = NULL;
31 31
32int cgit_query_has_symref = 0; 32int cgit_query_has_symref = 0;
33int cgit_query_has_sha1 = 0; 33int cgit_query_has_sha1 = 0;
34 34
35char *cgit_querystring = NULL; 35char *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;
42 43
43int htmlfd = 0; 44int htmlfd = 0;
44 45
45void cgit_global_config_cb(const char *name, const char *value) 46void cgit_global_config_cb(const char *name, const char *value)
46{ 47{
47 if (!strcmp(name, "root")) 48 if (!strcmp(name, "root"))
48 cgit_root = xstrdup(value); 49 cgit_root = xstrdup(value);
49 else if (!strcmp(name, "root-title")) 50 else if (!strcmp(name, "root-title"))
50 cgit_root_title = xstrdup(value); 51 cgit_root_title = xstrdup(value);
51 else if (!strcmp(name, "css")) 52 else if (!strcmp(name, "css"))
52 cgit_css = xstrdup(value); 53 cgit_css = xstrdup(value);
53 else if (!strcmp(name, "logo")) 54 else if (!strcmp(name, "logo"))
54 cgit_logo = xstrdup(value); 55 cgit_logo = xstrdup(value);
@@ -73,32 +74,34 @@ void cgit_global_config_cb(const char *name, const char *value)
73void cgit_repo_config_cb(const char *name, const char *value) 74void cgit_repo_config_cb(const char *name, const char *value)
74{ 75{
75 if (!strcmp(name, "name")) 76 if (!strcmp(name, "name"))
76 cgit_repo_name = xstrdup(value); 77 cgit_repo_name = xstrdup(value);
77 else if (!strcmp(name, "desc")) 78 else if (!strcmp(name, "desc"))
78 cgit_repo_desc = xstrdup(value); 79 cgit_repo_desc = xstrdup(value);
79 else if (!strcmp(name, "owner")) 80 else if (!strcmp(name, "owner"))
80 cgit_repo_owner = xstrdup(value); 81 cgit_repo_owner = xstrdup(value);
81} 82}
82 83
83void cgit_querystring_cb(const char *name, const char *value) 84void 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;
95 } else if (!strcmp(name, "id2")) { 98 } else if (!strcmp(name, "id2")) {
96 cgit_query_sha2 = xstrdup(value); 99 cgit_query_sha2 = xstrdup(value);
97 cgit_query_has_sha1 = 1; 100 cgit_query_has_sha1 = 1;
98 } else if (!strcmp(name, "ofs")) { 101 } else if (!strcmp(name, "ofs")) {
99 cgit_query_ofs = atoi(value); 102 cgit_query_ofs = atoi(value);
100 } 103 }
101} 104}
102 105
103void *cgit_free_commitinfo(struct commitinfo *info) 106void *cgit_free_commitinfo(struct commitinfo *info)
104{ 107{