summaryrefslogtreecommitdiffabout
path: root/cgit.h
Unidiff
Diffstat (limited to 'cgit.h') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index f1fbeca..cb2f176 100644
--- a/cgit.h
+++ b/cgit.h
@@ -102,48 +102,49 @@ struct refinfo {
102struct reflist { 102struct reflist {
103 struct refinfo **refs; 103 struct refinfo **refs;
104 int alloc; 104 int alloc;
105 int count; 105 int count;
106}; 106};
107 107
108struct cgit_query { 108struct cgit_query {
109 int has_symref; 109 int has_symref;
110 int has_sha1; 110 int has_sha1;
111 char *raw; 111 char *raw;
112 char *repo; 112 char *repo;
113 char *page; 113 char *page;
114 char *search; 114 char *search;
115 char *grep; 115 char *grep;
116 char *head; 116 char *head;
117 char *sha1; 117 char *sha1;
118 char *sha2; 118 char *sha2;
119 char *path; 119 char *path;
120 char *name; 120 char *name;
121 char *mimetype; 121 char *mimetype;
122 char *url; 122 char *url;
123 int ofs; 123 int ofs;
124 int nohead; 124 int nohead;
125 char *sort; 125 char *sort;
126 int showmsg;
126}; 127};
127 128
128struct cgit_config { 129struct cgit_config {
129 char *agefile; 130 char *agefile;
130 char *cache_root; 131 char *cache_root;
131 char *clone_prefix; 132 char *clone_prefix;
132 char *css; 133 char *css;
133 char *favicon; 134 char *favicon;
134 char *footer; 135 char *footer;
135 char *index_header; 136 char *index_header;
136 char *index_info; 137 char *index_info;
137 char *logo; 138 char *logo;
138 char *logo_link; 139 char *logo_link;
139 char *module_link; 140 char *module_link;
140 char *repo_group; 141 char *repo_group;
141 char *robots; 142 char *robots;
142 char *root_title; 143 char *root_title;
143 char *root_desc; 144 char *root_desc;
144 char *root_readme; 145 char *root_readme;
145 char *script_name; 146 char *script_name;
146 char *virtual_root; 147 char *virtual_root;
147 int cache_size; 148 int cache_size;
148 int cache_dynamic_ttl; 149 int cache_dynamic_ttl;
149 int cache_max_create_time; 150 int cache_max_create_time;