author | Lars Hjemli <hjemli@gmail.com> | 2009-02-01 18:17:52 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-02-01 18:17:52 (UTC) |
commit | 0b3c746ba80738dbe0885a21406409390936537c (patch) (unidiff) | |
tree | 405a9f959feafab650f53e17561a1d3a85cb8097 /cgit.h | |
parent | d6174b7aab476c2b6a86e59d98cf978d603045f4 (diff) | |
parent | b115955d71c50cd2d0065c45f3df6b02fa4730bd (diff) | |
download | cgit-0b3c746ba80738dbe0885a21406409390936537c.zip cgit-0b3c746ba80738dbe0885a21406409390936537c.tar.gz cgit-0b3c746ba80738dbe0885a21406409390936537c.tar.bz2 |
Merge branch 'lh/header'
-rw-r--r-- | cgit.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,243 +1,244 @@ | |||
1 | #ifndef CGIT_H | 1 | #ifndef CGIT_H |
2 | #define CGIT_H | 2 | #define CGIT_H |
3 | 3 | ||
4 | 4 | ||
5 | #include <git-compat-util.h> | 5 | #include <git-compat-util.h> |
6 | #include <cache.h> | 6 | #include <cache.h> |
7 | #include <grep.h> | 7 | #include <grep.h> |
8 | #include <object.h> | 8 | #include <object.h> |
9 | #include <tree.h> | 9 | #include <tree.h> |
10 | #include <commit.h> | 10 | #include <commit.h> |
11 | #include <tag.h> | 11 | #include <tag.h> |
12 | #include <diff.h> | 12 | #include <diff.h> |
13 | #include <diffcore.h> | 13 | #include <diffcore.h> |
14 | #include <refs.h> | 14 | #include <refs.h> |
15 | #include <revision.h> | 15 | #include <revision.h> |
16 | #include <log-tree.h> | 16 | #include <log-tree.h> |
17 | #include <archive.h> | 17 | #include <archive.h> |
18 | #include <xdiff/xdiff.h> | 18 | #include <xdiff/xdiff.h> |
19 | #include <utf8.h> | 19 | #include <utf8.h> |
20 | 20 | ||
21 | 21 | ||
22 | /* | 22 | /* |
23 | * Dateformats used on misc. pages | 23 | * Dateformats used on misc. pages |
24 | */ | 24 | */ |
25 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)" | 25 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)" |
26 | #define FMT_SHORTDATE "%Y-%m-%d" | 26 | #define FMT_SHORTDATE "%Y-%m-%d" |
27 | #define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ" | 27 | #define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ" |
28 | 28 | ||
29 | 29 | ||
30 | /* | 30 | /* |
31 | * Limits used for relative dates | 31 | * Limits used for relative dates |
32 | */ | 32 | */ |
33 | #define TM_MIN 60 | 33 | #define TM_MIN 60 |
34 | #define TM_HOUR (TM_MIN * 60) | 34 | #define TM_HOUR (TM_MIN * 60) |
35 | #define TM_DAY (TM_HOUR * 24) | 35 | #define TM_DAY (TM_HOUR * 24) |
36 | #define TM_WEEK (TM_DAY * 7) | 36 | #define TM_WEEK (TM_DAY * 7) |
37 | #define TM_YEAR (TM_DAY * 365) | 37 | #define TM_YEAR (TM_DAY * 365) |
38 | #define TM_MONTH (TM_YEAR / 12.0) | 38 | #define TM_MONTH (TM_YEAR / 12.0) |
39 | 39 | ||
40 | 40 | ||
41 | /* | 41 | /* |
42 | * Default encoding | 42 | * Default encoding |
43 | */ | 43 | */ |
44 | #define PAGE_ENCODING "UTF-8" | 44 | #define PAGE_ENCODING "UTF-8" |
45 | 45 | ||
46 | typedef void (*configfn)(const char *name, const char *value); | 46 | typedef void (*configfn)(const char *name, const char *value); |
47 | typedef void (*filepair_fn)(struct diff_filepair *pair); | 47 | typedef void (*filepair_fn)(struct diff_filepair *pair); |
48 | typedef void (*linediff_fn)(char *line, int len); | 48 | typedef void (*linediff_fn)(char *line, int len); |
49 | 49 | ||
50 | struct cgit_repo { | 50 | struct cgit_repo { |
51 | char *url; | 51 | char *url; |
52 | char *name; | 52 | char *name; |
53 | char *path; | 53 | char *path; |
54 | char *desc; | 54 | char *desc; |
55 | char *owner; | 55 | char *owner; |
56 | char *defbranch; | 56 | char *defbranch; |
57 | char *group; | 57 | char *group; |
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; | 64 | int max_stats; |
65 | time_t mtime; | 65 | time_t mtime; |
66 | }; | 66 | }; |
67 | 67 | ||
68 | struct cgit_repolist { | 68 | struct cgit_repolist { |
69 | int length; | 69 | int length; |
70 | int count; | 70 | int count; |
71 | struct cgit_repo *repos; | 71 | struct cgit_repo *repos; |
72 | }; | 72 | }; |
73 | 73 | ||
74 | struct commitinfo { | 74 | struct commitinfo { |
75 | struct commit *commit; | 75 | struct commit *commit; |
76 | char *author; | 76 | char *author; |
77 | char *author_email; | 77 | char *author_email; |
78 | unsigned long author_date; | 78 | unsigned long author_date; |
79 | char *committer; | 79 | char *committer; |
80 | char *committer_email; | 80 | char *committer_email; |
81 | unsigned long committer_date; | 81 | unsigned long committer_date; |
82 | char *subject; | 82 | char *subject; |
83 | char *msg; | 83 | char *msg; |
84 | char *msg_encoding; | 84 | char *msg_encoding; |
85 | }; | 85 | }; |
86 | 86 | ||
87 | struct taginfo { | 87 | struct taginfo { |
88 | char *tagger; | 88 | char *tagger; |
89 | char *tagger_email; | 89 | char *tagger_email; |
90 | unsigned long tagger_date; | 90 | unsigned long tagger_date; |
91 | char *msg; | 91 | char *msg; |
92 | }; | 92 | }; |
93 | 93 | ||
94 | struct refinfo { | 94 | struct refinfo { |
95 | const char *refname; | 95 | const char *refname; |
96 | struct object *object; | 96 | struct object *object; |
97 | union { | 97 | union { |
98 | struct taginfo *tag; | 98 | struct taginfo *tag; |
99 | struct commitinfo *commit; | 99 | struct commitinfo *commit; |
100 | }; | 100 | }; |
101 | }; | 101 | }; |
102 | 102 | ||
103 | struct reflist { | 103 | struct reflist { |
104 | struct refinfo **refs; | 104 | struct refinfo **refs; |
105 | int alloc; | 105 | int alloc; |
106 | int count; | 106 | int count; |
107 | }; | 107 | }; |
108 | 108 | ||
109 | struct cgit_query { | 109 | struct cgit_query { |
110 | int has_symref; | 110 | int has_symref; |
111 | int has_sha1; | 111 | int has_sha1; |
112 | char *raw; | 112 | char *raw; |
113 | char *repo; | 113 | char *repo; |
114 | char *page; | 114 | char *page; |
115 | char *search; | 115 | char *search; |
116 | char *grep; | 116 | char *grep; |
117 | char *head; | 117 | char *head; |
118 | char *sha1; | 118 | char *sha1; |
119 | char *sha2; | 119 | char *sha2; |
120 | char *path; | 120 | char *path; |
121 | char *name; | 121 | char *name; |
122 | char *mimetype; | 122 | char *mimetype; |
123 | char *url; | 123 | char *url; |
124 | char *period; | 124 | char *period; |
125 | int ofs; | 125 | int ofs; |
126 | int nohead; | 126 | int nohead; |
127 | char *sort; | 127 | char *sort; |
128 | int showmsg; | 128 | int showmsg; |
129 | }; | 129 | }; |
130 | 130 | ||
131 | struct cgit_config { | 131 | struct cgit_config { |
132 | char *agefile; | 132 | char *agefile; |
133 | char *cache_root; | 133 | char *cache_root; |
134 | char *clone_prefix; | 134 | char *clone_prefix; |
135 | char *css; | 135 | char *css; |
136 | char *favicon; | 136 | char *favicon; |
137 | char *footer; | 137 | char *footer; |
138 | char *header; | ||
138 | char *index_header; | 139 | char *index_header; |
139 | char *index_info; | 140 | char *index_info; |
140 | char *logo; | 141 | char *logo; |
141 | char *logo_link; | 142 | char *logo_link; |
142 | char *module_link; | 143 | char *module_link; |
143 | char *repo_group; | 144 | char *repo_group; |
144 | char *robots; | 145 | char *robots; |
145 | char *root_title; | 146 | char *root_title; |
146 | char *root_desc; | 147 | char *root_desc; |
147 | char *root_readme; | 148 | char *root_readme; |
148 | char *script_name; | 149 | char *script_name; |
149 | char *virtual_root; | 150 | char *virtual_root; |
150 | int cache_size; | 151 | int cache_size; |
151 | int cache_dynamic_ttl; | 152 | int cache_dynamic_ttl; |
152 | int cache_max_create_time; | 153 | int cache_max_create_time; |
153 | int cache_repo_ttl; | 154 | int cache_repo_ttl; |
154 | int cache_root_ttl; | 155 | int cache_root_ttl; |
155 | int cache_static_ttl; | 156 | int cache_static_ttl; |
156 | int enable_index_links; | 157 | int enable_index_links; |
157 | int enable_log_filecount; | 158 | int enable_log_filecount; |
158 | int enable_log_linecount; | 159 | int enable_log_linecount; |
159 | int local_time; | 160 | int local_time; |
160 | int max_repo_count; | 161 | int max_repo_count; |
161 | int max_commit_count; | 162 | int max_commit_count; |
162 | int max_lock_attempts; | 163 | int max_lock_attempts; |
163 | int max_msg_len; | 164 | int max_msg_len; |
164 | int max_repodesc_len; | 165 | int max_repodesc_len; |
165 | int max_stats; | 166 | int max_stats; |
166 | int nocache; | 167 | int nocache; |
167 | int renamelimit; | 168 | int renamelimit; |
168 | int snapshots; | 169 | int snapshots; |
169 | int summary_branches; | 170 | int summary_branches; |
170 | int summary_log; | 171 | int summary_log; |
171 | int summary_tags; | 172 | int summary_tags; |
172 | }; | 173 | }; |
173 | 174 | ||
174 | struct cgit_page { | 175 | struct cgit_page { |
175 | time_t modified; | 176 | time_t modified; |
176 | time_t expires; | 177 | time_t expires; |
177 | size_t size; | 178 | size_t size; |
178 | char *mimetype; | 179 | char *mimetype; |
179 | char *charset; | 180 | char *charset; |
180 | char *filename; | 181 | char *filename; |
181 | char *title; | 182 | char *title; |
182 | }; | 183 | }; |
183 | 184 | ||
184 | struct cgit_context { | 185 | struct cgit_context { |
185 | struct cgit_query qry; | 186 | struct cgit_query qry; |
186 | struct cgit_config cfg; | 187 | struct cgit_config cfg; |
187 | struct cgit_repo *repo; | 188 | struct cgit_repo *repo; |
188 | struct cgit_page page; | 189 | struct cgit_page page; |
189 | }; | 190 | }; |
190 | 191 | ||
191 | struct cgit_snapshot_format { | 192 | struct cgit_snapshot_format { |
192 | const char *suffix; | 193 | const char *suffix; |
193 | const char *mimetype; | 194 | const char *mimetype; |
194 | write_archive_fn_t write_func; | 195 | write_archive_fn_t write_func; |
195 | int bit; | 196 | int bit; |
196 | }; | 197 | }; |
197 | 198 | ||
198 | extern const char *cgit_version; | 199 | extern const char *cgit_version; |
199 | 200 | ||
200 | extern struct cgit_repolist cgit_repolist; | 201 | extern struct cgit_repolist cgit_repolist; |
201 | extern struct cgit_context ctx; | 202 | extern struct cgit_context ctx; |
202 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; | 203 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
203 | 204 | ||
204 | extern struct cgit_repo *cgit_add_repo(const char *url); | 205 | extern struct cgit_repo *cgit_add_repo(const char *url); |
205 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); | 206 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
206 | extern void cgit_repo_config_cb(const char *name, const char *value); | 207 | extern void cgit_repo_config_cb(const char *name, const char *value); |
207 | 208 | ||
208 | extern int chk_zero(int result, char *msg); | 209 | extern int chk_zero(int result, char *msg); |
209 | extern int chk_positive(int result, char *msg); | 210 | extern int chk_positive(int result, char *msg); |
210 | extern int chk_non_negative(int result, char *msg); | 211 | extern int chk_non_negative(int result, char *msg); |
211 | 212 | ||
212 | extern char *trim_end(const char *str, char c); | 213 | extern char *trim_end(const char *str, char c); |
213 | extern char *strlpart(char *txt, int maxlen); | 214 | extern char *strlpart(char *txt, int maxlen); |
214 | extern char *strrpart(char *txt, int maxlen); | 215 | extern char *strrpart(char *txt, int maxlen); |
215 | 216 | ||
216 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); | 217 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
217 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, | 218 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
218 | int flags, void *cb_data); | 219 | int flags, void *cb_data); |
219 | 220 | ||
220 | extern void *cgit_free_commitinfo(struct commitinfo *info); | 221 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
221 | 222 | ||
222 | extern int cgit_diff_files(const unsigned char *old_sha1, | 223 | extern int cgit_diff_files(const unsigned char *old_sha1, |
223 | const unsigned char *new_sha1, | 224 | const unsigned char *new_sha1, |
224 | linediff_fn fn); | 225 | linediff_fn fn); |
225 | 226 | ||
226 | extern void cgit_diff_tree(const unsigned char *old_sha1, | 227 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
227 | const unsigned char *new_sha1, | 228 | const unsigned char *new_sha1, |
228 | filepair_fn fn, const char *prefix); | 229 | filepair_fn fn, const char *prefix); |
229 | 230 | ||
230 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); | 231 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
231 | 232 | ||
232 | extern char *fmt(const char *format,...); | 233 | extern char *fmt(const char *format,...); |
233 | 234 | ||
234 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); | 235 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
235 | extern struct taginfo *cgit_parse_tag(struct tag *tag); | 236 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
236 | extern void cgit_parse_url(const char *url); | 237 | extern void cgit_parse_url(const char *url); |
237 | 238 | ||
238 | extern const char *cgit_repobasename(const char *reponame); | 239 | extern const char *cgit_repobasename(const char *reponame); |
239 | 240 | ||
240 | extern int cgit_parse_snapshots_mask(const char *str); | 241 | extern int cgit_parse_snapshots_mask(const char *str); |
241 | 242 | ||
242 | 243 | ||
243 | #endif /* CGIT_H */ | 244 | #endif /* CGIT_H */ |