author | Lars Hjemli <hjemli@gmail.com> | 2007-06-26 16:04:31 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-06-26 16:04:39 (UTC) |
commit | 382805ee83b6e6f165159312a9fe20e3971897b6 (patch) (unidiff) | |
tree | 8bcf24b888ba95c91a575640be9ae87e949a99ea | |
parent | 42e459bb1f209df8278f4f4f0ee3f4bcfae80da8 (diff) | |
download | cgit-382805ee83b6e6f165159312a9fe20e3971897b6.zip cgit-382805ee83b6e6f165159312a9fe20e3971897b6.tar.gz cgit-382805ee83b6e6f165159312a9fe20e3971897b6.tar.bz2 |
Add trim_end() and use it to remove trailing slashes from repo paths
The new function removes all trailing instances of an arbitrary character
from a copy of the supplied char array. This is then used to remove any
trailing slashes from cgit_query_path.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.h | 1 | ||||
-rw-r--r-- | parsing.c | 2 | ||||
-rw-r--r-- | shared.c | 24 |
3 files changed, 25 insertions, 2 deletions
@@ -146,32 +146,33 @@ extern char *cgit_query_sha2; | |||
146 | extern char *cgit_query_path; | 146 | extern char *cgit_query_path; |
147 | extern char *cgit_query_name; | 147 | extern char *cgit_query_name; |
148 | extern int cgit_query_ofs; | 148 | extern int cgit_query_ofs; |
149 | 149 | ||
150 | extern int htmlfd; | 150 | extern int htmlfd; |
151 | 151 | ||
152 | extern int cgit_get_cmd_index(const char *cmd); | 152 | extern int cgit_get_cmd_index(const char *cmd); |
153 | extern struct repoinfo *cgit_get_repoinfo(const char *url); | 153 | extern struct repoinfo *cgit_get_repoinfo(const char *url); |
154 | extern void cgit_global_config_cb(const char *name, const char *value); | 154 | extern void cgit_global_config_cb(const char *name, const char *value); |
155 | extern void cgit_repo_config_cb(const char *name, const char *value); | 155 | extern void cgit_repo_config_cb(const char *name, const char *value); |
156 | extern void cgit_querystring_cb(const char *name, const char *value); | 156 | extern void cgit_querystring_cb(const char *name, const char *value); |
157 | 157 | ||
158 | extern int chk_zero(int result, char *msg); | 158 | extern int chk_zero(int result, char *msg); |
159 | extern int chk_positive(int result, char *msg); | 159 | extern int chk_positive(int result, char *msg); |
160 | 160 | ||
161 | extern int hextoint(char c); | 161 | extern int hextoint(char c); |
162 | extern char *trim_end(const char *str, char c); | ||
162 | 163 | ||
163 | extern void *cgit_free_commitinfo(struct commitinfo *info); | 164 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
164 | 165 | ||
165 | extern int cgit_diff_files(const unsigned char *old_sha1, | 166 | extern int cgit_diff_files(const unsigned char *old_sha1, |
166 | const unsigned char *new_sha1, | 167 | const unsigned char *new_sha1, |
167 | linediff_fn fn); | 168 | linediff_fn fn); |
168 | 169 | ||
169 | extern void cgit_diff_tree(const unsigned char *old_sha1, | 170 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
170 | const unsigned char *new_sha1, | 171 | const unsigned char *new_sha1, |
171 | filepair_fn fn); | 172 | filepair_fn fn); |
172 | 173 | ||
173 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); | 174 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
174 | 175 | ||
175 | extern char *fmt(const char *format,...); | 176 | extern char *fmt(const char *format,...); |
176 | 177 | ||
177 | extern void html(const char *txt); | 178 | extern void html(const char *txt); |
@@ -155,33 +155,33 @@ void cgit_parse_url(const char *url) | |||
155 | 155 | ||
156 | cmd = strchr(url, '/'); | 156 | cmd = strchr(url, '/'); |
157 | while (!cgit_repo && cmd) { | 157 | while (!cgit_repo && cmd) { |
158 | cmd[0] = '\0'; | 158 | cmd[0] = '\0'; |
159 | cgit_repo = cgit_get_repoinfo(url); | 159 | cgit_repo = cgit_get_repoinfo(url); |
160 | if (cgit_repo == NULL) { | 160 | if (cgit_repo == NULL) { |
161 | cmd[0] = '/'; | 161 | cmd[0] = '/'; |
162 | cmd = strchr(cmd + 1, '/'); | 162 | cmd = strchr(cmd + 1, '/'); |
163 | continue; | 163 | continue; |
164 | } | 164 | } |
165 | 165 | ||
166 | cgit_query_repo = cgit_repo->url; | 166 | cgit_query_repo = cgit_repo->url; |
167 | p = strchr(cmd + 1, '/'); | 167 | p = strchr(cmd + 1, '/'); |
168 | if (p) { | 168 | if (p) { |
169 | p[0] = '\0'; | 169 | p[0] = '\0'; |
170 | if (p[1]) | 170 | if (p[1]) |
171 | cgit_query_path = xstrdup(p + 1); | 171 | cgit_query_path = trim_end(p + 1, '/'); |
172 | } | 172 | } |
173 | cgit_cmd = cgit_get_cmd_index(cmd + 1); | 173 | cgit_cmd = cgit_get_cmd_index(cmd + 1); |
174 | cgit_query_page = xstrdup(cmd + 1); | 174 | cgit_query_page = xstrdup(cmd + 1); |
175 | return; | 175 | return; |
176 | } | 176 | } |
177 | } | 177 | } |
178 | 178 | ||
179 | char *substr(const char *head, const char *tail) | 179 | char *substr(const char *head, const char *tail) |
180 | { | 180 | { |
181 | char *buf; | 181 | char *buf; |
182 | 182 | ||
183 | buf = xmalloc(tail - head + 1); | 183 | buf = xmalloc(tail - head + 1); |
184 | strncpy(buf, head, tail - head); | 184 | strncpy(buf, head, tail - head); |
185 | buf[tail - head] = '\0'; | 185 | buf[tail - head] = '\0'; |
186 | return buf; | 186 | return buf; |
187 | } | 187 | } |
@@ -215,61 +215,83 @@ void cgit_querystring_cb(const char *name, const char *value) | |||
215 | } else if (!strcmp(name, "url")) { | 215 | } else if (!strcmp(name, "url")) { |
216 | cgit_parse_url(value); | 216 | cgit_parse_url(value); |
217 | } else if (!strcmp(name, "q")) { | 217 | } else if (!strcmp(name, "q")) { |
218 | cgit_query_search = xstrdup(value); | 218 | cgit_query_search = xstrdup(value); |
219 | } else if (!strcmp(name, "h")) { | 219 | } else if (!strcmp(name, "h")) { |
220 | cgit_query_head = xstrdup(value); | 220 | cgit_query_head = xstrdup(value); |
221 | cgit_query_has_symref = 1; | 221 | cgit_query_has_symref = 1; |
222 | } else if (!strcmp(name, "id")) { | 222 | } else if (!strcmp(name, "id")) { |
223 | cgit_query_sha1 = xstrdup(value); | 223 | cgit_query_sha1 = xstrdup(value); |
224 | cgit_query_has_sha1 = 1; | 224 | cgit_query_has_sha1 = 1; |
225 | } else if (!strcmp(name, "id2")) { | 225 | } else if (!strcmp(name, "id2")) { |
226 | cgit_query_sha2 = xstrdup(value); | 226 | cgit_query_sha2 = xstrdup(value); |
227 | cgit_query_has_sha1 = 1; | 227 | cgit_query_has_sha1 = 1; |
228 | } else if (!strcmp(name, "ofs")) { | 228 | } else if (!strcmp(name, "ofs")) { |
229 | cgit_query_ofs = atoi(value); | 229 | cgit_query_ofs = atoi(value); |
230 | } else if (!strcmp(name, "path")) { | 230 | } else if (!strcmp(name, "path")) { |
231 | cgit_query_path = xstrdup(value); | 231 | cgit_query_path = trim_end(value, '/'); |
232 | } else if (!strcmp(name, "name")) { | 232 | } else if (!strcmp(name, "name")) { |
233 | cgit_query_name = xstrdup(value); | 233 | cgit_query_name = xstrdup(value); |
234 | } | 234 | } |
235 | } | 235 | } |
236 | 236 | ||
237 | void *cgit_free_commitinfo(struct commitinfo *info) | 237 | void *cgit_free_commitinfo(struct commitinfo *info) |
238 | { | 238 | { |
239 | free(info->author); | 239 | free(info->author); |
240 | free(info->author_email); | 240 | free(info->author_email); |
241 | free(info->committer); | 241 | free(info->committer); |
242 | free(info->committer_email); | 242 | free(info->committer_email); |
243 | free(info->subject); | 243 | free(info->subject); |
244 | free(info); | 244 | free(info); |
245 | return NULL; | 245 | return NULL; |
246 | } | 246 | } |
247 | 247 | ||
248 | int hextoint(char c) | 248 | int hextoint(char c) |
249 | { | 249 | { |
250 | if (c >= 'a' && c <= 'f') | 250 | if (c >= 'a' && c <= 'f') |
251 | return 10 + c - 'a'; | 251 | return 10 + c - 'a'; |
252 | else if (c >= 'A' && c <= 'F') | 252 | else if (c >= 'A' && c <= 'F') |
253 | return 10 + c - 'A'; | 253 | return 10 + c - 'A'; |
254 | else if (c >= '0' && c <= '9') | 254 | else if (c >= '0' && c <= '9') |
255 | return c - '0'; | 255 | return c - '0'; |
256 | else | 256 | else |
257 | return -1; | 257 | return -1; |
258 | } | 258 | } |
259 | 259 | ||
260 | char *trim_end(const char *str, char c) | ||
261 | { | ||
262 | int len; | ||
263 | char *s, *t; | ||
264 | |||
265 | if (str == NULL) | ||
266 | return NULL; | ||
267 | t = (char *)str; | ||
268 | len = strlen(t); | ||
269 | while(len > 0 && t[len - 1] == c) | ||
270 | len--; | ||
271 | |||
272 | if (len == 0) | ||
273 | return NULL; | ||
274 | |||
275 | c = t[len]; | ||
276 | t[len] = '\0'; | ||
277 | s = xstrdup(t); | ||
278 | t[len] = c; | ||
279 | return s; | ||
280 | } | ||
281 | |||
260 | void cgit_diff_tree_cb(struct diff_queue_struct *q, | 282 | void cgit_diff_tree_cb(struct diff_queue_struct *q, |
261 | struct diff_options *options, void *data) | 283 | struct diff_options *options, void *data) |
262 | { | 284 | { |
263 | int i; | 285 | int i; |
264 | 286 | ||
265 | for (i = 0; i < q->nr; i++) { | 287 | for (i = 0; i < q->nr; i++) { |
266 | if (q->queue[i]->status == 'U') | 288 | if (q->queue[i]->status == 'U') |
267 | continue; | 289 | continue; |
268 | ((filepair_fn)data)(q->queue[i]); | 290 | ((filepair_fn)data)(q->queue[i]); |
269 | } | 291 | } |
270 | } | 292 | } |
271 | 293 | ||
272 | static int load_mmfile(mmfile_t *file, const unsigned char *sha1) | 294 | static int load_mmfile(mmfile_t *file, const unsigned char *sha1) |
273 | { | 295 | { |
274 | enum object_type type; | 296 | enum object_type type; |
275 | 297 | ||