summaryrefslogtreecommitdiffabout
path: root/cgit.h
Unidiff
Diffstat (limited to 'cgit.h') (more/less context) (show whitespace changes)
-rw-r--r--cgit.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index 92f0c5a..4fe94c6 100644
--- a/cgit.h
+++ b/cgit.h
@@ -58,12 +58,14 @@ struct cgit_repo {
58 char *module_link; 58 char *module_link;
59 char *readme; 59 char *readme;
60 char *clone_url; 60 char *clone_url;
61 int snapshots; 61 int snapshots;
62 int enable_log_filecount; 62 int enable_log_filecount;
63 int enable_log_linecount; 63 int enable_log_linecount;
64 int max_stats;
65 time_t mtime;
64}; 66};
65 67
66struct cgit_repolist { 68struct cgit_repolist {
67 int length; 69 int length;
68 int count; 70 int count;
69 struct cgit_repo *repos; 71 struct cgit_repo *repos;
@@ -116,14 +118,17 @@ struct cgit_query {
116 char *sha1; 118 char *sha1;
117 char *sha2; 119 char *sha2;
118 char *path; 120 char *path;
119 char *name; 121 char *name;
120 char *mimetype; 122 char *mimetype;
121 char *url; 123 char *url;
124 char *period;
122 int ofs; 125 int ofs;
123 int nohead; 126 int nohead;
127 char *sort;
128 int showmsg;
124}; 129};
125 130
126struct cgit_config { 131struct cgit_config {
127 char *agefile; 132 char *agefile;
128 char *cache_root; 133 char *cache_root;
129 char *clone_prefix; 134 char *clone_prefix;
@@ -154,12 +159,13 @@ struct cgit_config {
154 int local_time; 159 int local_time;
155 int max_repo_count; 160 int max_repo_count;
156 int max_commit_count; 161 int max_commit_count;
157 int max_lock_attempts; 162 int max_lock_attempts;
158 int max_msg_len; 163 int max_msg_len;
159 int max_repodesc_len; 164 int max_repodesc_len;
165 int max_stats;
160 int nocache; 166 int nocache;
161 int renamelimit; 167 int renamelimit;
162 int snapshots; 168 int snapshots;
163 int summary_branches; 169 int summary_branches;
164 int summary_log; 170 int summary_log;
165 int summary_tags; 171 int summary_tags;