author | Lars Hjemli <hjemli@gmail.com> | 2008-02-16 10:53:40 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-02-16 11:07:28 (UTC) |
commit | d14d77fe95c3b6224b40df9b101dded0deea913c (patch) (unidiff) | |
tree | 7e0d9c8f2c0f86b8946aea0bb823085c33b164b3 | |
parent | e5ed227ef0da561e2bde8646ec816842392377ee (diff) | |
download | cgit-d14d77fe95c3b6224b40df9b101dded0deea913c.zip cgit-d14d77fe95c3b6224b40df9b101dded0deea913c.tar.gz cgit-d14d77fe95c3b6224b40df9b101dded0deea913c.tar.bz2 |
Introduce struct cgit_context
This struct will hold all the cgit runtime information currently found in
a multitude of global variables.
The first cleanup removes all querystring-related variables.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cache.c | 4 | ||||
-rw-r--r-- | cgit.c | 72 | ||||
-rw-r--r-- | cgit.h | 35 | ||||
-rw-r--r-- | parsing.c | 8 | ||||
-rw-r--r-- | shared.c | 43 | ||||
-rw-r--r-- | ui-commit.c | 14 | ||||
-rw-r--r-- | ui-diff.c | 6 | ||||
-rw-r--r-- | ui-log.c | 20 | ||||
-rw-r--r-- | ui-patch.c | 2 | ||||
-rw-r--r-- | ui-refs.c | 4 | ||||
-rw-r--r-- | ui-shared.c | 86 | ||||
-rw-r--r-- | ui-summary.c | 6 | ||||
-rw-r--r-- | ui-tree.c | 20 |
13 files changed, 156 insertions, 164 deletions
@@ -1,119 +1,119 @@ | |||
1 | /* cache.c: cache management | 1 | /* cache.c: cache management |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | const int NOLOCK = -1; | 11 | const int NOLOCK = -1; |
12 | 12 | ||
13 | char *cache_safe_filename(const char *unsafe) | 13 | char *cache_safe_filename(const char *unsafe) |
14 | { | 14 | { |
15 | static char buf[4][PATH_MAX]; | 15 | static char buf[4][PATH_MAX]; |
16 | static int bufidx; | 16 | static int bufidx; |
17 | char *s; | 17 | char *s; |
18 | char c; | 18 | char c; |
19 | 19 | ||
20 | bufidx++; | 20 | bufidx++; |
21 | bufidx &= 3; | 21 | bufidx &= 3; |
22 | s = buf[bufidx]; | 22 | s = buf[bufidx]; |
23 | 23 | ||
24 | while(unsafe && (c = *unsafe++) != 0) { | 24 | while(unsafe && (c = *unsafe++) != 0) { |
25 | if (c == '/' || c == ' ' || c == '&' || c == '|' || | 25 | if (c == '/' || c == ' ' || c == '&' || c == '|' || |
26 | c == '>' || c == '<' || c == '.') | 26 | c == '>' || c == '<' || c == '.') |
27 | c = '_'; | 27 | c = '_'; |
28 | *s++ = c; | 28 | *s++ = c; |
29 | } | 29 | } |
30 | *s = '\0'; | 30 | *s = '\0'; |
31 | return buf[bufidx]; | 31 | return buf[bufidx]; |
32 | } | 32 | } |
33 | 33 | ||
34 | int cache_exist(struct cacheitem *item) | 34 | int cache_exist(struct cacheitem *item) |
35 | { | 35 | { |
36 | if (stat(item->name, &item->st)) { | 36 | if (stat(item->name, &item->st)) { |
37 | item->st.st_mtime = 0; | 37 | item->st.st_mtime = 0; |
38 | return 0; | 38 | return 0; |
39 | } | 39 | } |
40 | return 1; | 40 | return 1; |
41 | } | 41 | } |
42 | 42 | ||
43 | int cache_create_dirs() | 43 | int cache_create_dirs() |
44 | { | 44 | { |
45 | char *path; | 45 | char *path; |
46 | 46 | ||
47 | path = fmt("%s", cgit_cache_root); | 47 | path = fmt("%s", cgit_cache_root); |
48 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) | 48 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
49 | return 0; | 49 | return 0; |
50 | 50 | ||
51 | if (!cgit_repo) | 51 | if (!cgit_repo) |
52 | return 0; | 52 | return 0; |
53 | 53 | ||
54 | path = fmt("%s/%s", cgit_cache_root, | 54 | path = fmt("%s/%s", cgit_cache_root, |
55 | cache_safe_filename(cgit_repo->url)); | 55 | cache_safe_filename(cgit_repo->url)); |
56 | 56 | ||
57 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) | 57 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
58 | return 0; | 58 | return 0; |
59 | 59 | ||
60 | if (cgit_query_page) { | 60 | if (ctx.qry.page) { |
61 | path = fmt("%s/%s/%s", cgit_cache_root, | 61 | path = fmt("%s/%s/%s", cgit_cache_root, |
62 | cache_safe_filename(cgit_repo->url), | 62 | cache_safe_filename(cgit_repo->url), |
63 | cgit_query_page); | 63 | ctx.qry.page); |
64 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) | 64 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
65 | return 0; | 65 | return 0; |
66 | } | 66 | } |
67 | return 1; | 67 | return 1; |
68 | } | 68 | } |
69 | 69 | ||
70 | int cache_refill_overdue(const char *lockfile) | 70 | int cache_refill_overdue(const char *lockfile) |
71 | { | 71 | { |
72 | struct stat st; | 72 | struct stat st; |
73 | 73 | ||
74 | if (stat(lockfile, &st)) | 74 | if (stat(lockfile, &st)) |
75 | return 0; | 75 | return 0; |
76 | else | 76 | else |
77 | return (time(NULL) - st.st_mtime > cgit_cache_max_create_time); | 77 | return (time(NULL) - st.st_mtime > cgit_cache_max_create_time); |
78 | } | 78 | } |
79 | 79 | ||
80 | int cache_lock(struct cacheitem *item) | 80 | int cache_lock(struct cacheitem *item) |
81 | { | 81 | { |
82 | int i = 0; | 82 | int i = 0; |
83 | char *lockfile = xstrdup(fmt("%s.lock", item->name)); | 83 | char *lockfile = xstrdup(fmt("%s.lock", item->name)); |
84 | 84 | ||
85 | top: | 85 | top: |
86 | if (++i > cgit_max_lock_attempts) | 86 | if (++i > cgit_max_lock_attempts) |
87 | die("cache_lock: unable to lock %s: %s", | 87 | die("cache_lock: unable to lock %s: %s", |
88 | item->name, strerror(errno)); | 88 | item->name, strerror(errno)); |
89 | 89 | ||
90 | item->fd = open(lockfile, O_WRONLY|O_CREAT|O_EXCL, S_IRUSR|S_IWUSR); | 90 | item->fd = open(lockfile, O_WRONLY|O_CREAT|O_EXCL, S_IRUSR|S_IWUSR); |
91 | 91 | ||
92 | if (item->fd == NOLOCK && errno == ENOENT && cache_create_dirs()) | 92 | if (item->fd == NOLOCK && errno == ENOENT && cache_create_dirs()) |
93 | goto top; | 93 | goto top; |
94 | 94 | ||
95 | if (item->fd == NOLOCK && errno == EEXIST && | 95 | if (item->fd == NOLOCK && errno == EEXIST && |
96 | cache_refill_overdue(lockfile) && !unlink(lockfile)) | 96 | cache_refill_overdue(lockfile) && !unlink(lockfile)) |
97 | goto top; | 97 | goto top; |
98 | 98 | ||
99 | free(lockfile); | 99 | free(lockfile); |
100 | return (item->fd > 0); | 100 | return (item->fd > 0); |
101 | } | 101 | } |
102 | 102 | ||
103 | int cache_unlock(struct cacheitem *item) | 103 | int cache_unlock(struct cacheitem *item) |
104 | { | 104 | { |
105 | close(item->fd); | 105 | close(item->fd); |
106 | return (rename(fmt("%s.lock", item->name), item->name) == 0); | 106 | return (rename(fmt("%s.lock", item->name), item->name) == 0); |
107 | } | 107 | } |
108 | 108 | ||
109 | int cache_cancel_lock(struct cacheitem *item) | 109 | int cache_cancel_lock(struct cacheitem *item) |
110 | { | 110 | { |
111 | return (unlink(fmt("%s.lock", item->name)) == 0); | 111 | return (unlink(fmt("%s.lock", item->name)) == 0); |
112 | } | 112 | } |
113 | 113 | ||
114 | int cache_expired(struct cacheitem *item) | 114 | int cache_expired(struct cacheitem *item) |
115 | { | 115 | { |
116 | if (item->ttl < 0) | 116 | if (item->ttl < 0) |
117 | return 0; | 117 | return 0; |
118 | return item->st.st_mtime + item->ttl * 60 < time(NULL); | 118 | return item->st.st_mtime + item->ttl * 60 < time(NULL); |
119 | } | 119 | } |
@@ -1,318 +1,318 @@ | |||
1 | /* cgit.c: cgi for the git scm | 1 | /* cgit.c: cgi for the git scm |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | static int cgit_prepare_cache(struct cacheitem *item) | 11 | static int cgit_prepare_cache(struct cacheitem *item) |
12 | { | 12 | { |
13 | if (!cgit_repo && cgit_query_repo) { | 13 | if (!cgit_repo && ctx.qry.repo) { |
14 | char *title = fmt("%s - %s", cgit_root_title, "Bad request"); | 14 | char *title = fmt("%s - %s", cgit_root_title, "Bad request"); |
15 | cgit_print_docstart(title, item); | 15 | cgit_print_docstart(title, item); |
16 | cgit_print_pageheader(title, 0); | 16 | cgit_print_pageheader(title, 0); |
17 | cgit_print_error(fmt("Unknown repo: %s", cgit_query_repo)); | 17 | cgit_print_error(fmt("Unknown repo: %s", ctx.qry.repo)); |
18 | cgit_print_docend(); | 18 | cgit_print_docend(); |
19 | return 0; | 19 | return 0; |
20 | } | 20 | } |
21 | 21 | ||
22 | if (!cgit_repo) { | 22 | if (!cgit_repo) { |
23 | item->name = xstrdup(fmt("%s/index.html", cgit_cache_root)); | 23 | item->name = xstrdup(fmt("%s/index.html", cgit_cache_root)); |
24 | item->ttl = cgit_cache_root_ttl; | 24 | item->ttl = cgit_cache_root_ttl; |
25 | return 1; | 25 | return 1; |
26 | } | 26 | } |
27 | 27 | ||
28 | if (!cgit_cmd) { | 28 | if (!cgit_cmd) { |
29 | item->name = xstrdup(fmt("%s/%s/index.%s.html", cgit_cache_root, | 29 | item->name = xstrdup(fmt("%s/%s/index.%s.html", cgit_cache_root, |
30 | cache_safe_filename(cgit_repo->url), | 30 | cache_safe_filename(cgit_repo->url), |
31 | cache_safe_filename(cgit_querystring))); | 31 | cache_safe_filename(ctx.qry.raw))); |
32 | item->ttl = cgit_cache_repo_ttl; | 32 | item->ttl = cgit_cache_repo_ttl; |
33 | } else { | 33 | } else { |
34 | item->name = xstrdup(fmt("%s/%s/%s/%s.html", cgit_cache_root, | 34 | item->name = xstrdup(fmt("%s/%s/%s/%s.html", cgit_cache_root, |
35 | cache_safe_filename(cgit_repo->url), | 35 | cache_safe_filename(cgit_repo->url), |
36 | cgit_query_page, | 36 | ctx.qry.page, |
37 | cache_safe_filename(cgit_querystring))); | 37 | cache_safe_filename(ctx.qry.raw))); |
38 | if (cgit_query_has_symref) | 38 | if (ctx.qry.has_symref) |
39 | item->ttl = cgit_cache_dynamic_ttl; | 39 | item->ttl = cgit_cache_dynamic_ttl; |
40 | else if (cgit_query_has_sha1) | 40 | else if (ctx.qry.has_sha1) |
41 | item->ttl = cgit_cache_static_ttl; | 41 | item->ttl = cgit_cache_static_ttl; |
42 | else | 42 | else |
43 | item->ttl = cgit_cache_repo_ttl; | 43 | item->ttl = cgit_cache_repo_ttl; |
44 | } | 44 | } |
45 | return 1; | 45 | return 1; |
46 | } | 46 | } |
47 | 47 | ||
48 | struct refmatch { | 48 | struct refmatch { |
49 | char *req_ref; | 49 | char *req_ref; |
50 | char *first_ref; | 50 | char *first_ref; |
51 | int match; | 51 | int match; |
52 | }; | 52 | }; |
53 | 53 | ||
54 | int find_current_ref(const char *refname, const unsigned char *sha1, | 54 | int find_current_ref(const char *refname, const unsigned char *sha1, |
55 | int flags, void *cb_data) | 55 | int flags, void *cb_data) |
56 | { | 56 | { |
57 | struct refmatch *info; | 57 | struct refmatch *info; |
58 | 58 | ||
59 | info = (struct refmatch *)cb_data; | 59 | info = (struct refmatch *)cb_data; |
60 | if (!strcmp(refname, info->req_ref)) | 60 | if (!strcmp(refname, info->req_ref)) |
61 | info->match = 1; | 61 | info->match = 1; |
62 | if (!info->first_ref) | 62 | if (!info->first_ref) |
63 | info->first_ref = xstrdup(refname); | 63 | info->first_ref = xstrdup(refname); |
64 | return info->match; | 64 | return info->match; |
65 | } | 65 | } |
66 | 66 | ||
67 | char *find_default_branch(struct repoinfo *repo) | 67 | char *find_default_branch(struct repoinfo *repo) |
68 | { | 68 | { |
69 | struct refmatch info; | 69 | struct refmatch info; |
70 | 70 | ||
71 | info.req_ref = repo->defbranch; | 71 | info.req_ref = repo->defbranch; |
72 | info.first_ref = NULL; | 72 | info.first_ref = NULL; |
73 | info.match = 0; | 73 | info.match = 0; |
74 | for_each_branch_ref(find_current_ref, &info); | 74 | for_each_branch_ref(find_current_ref, &info); |
75 | if (info.match) | 75 | if (info.match) |
76 | return info.req_ref; | 76 | return info.req_ref; |
77 | else | 77 | else |
78 | return info.first_ref; | 78 | return info.first_ref; |
79 | } | 79 | } |
80 | 80 | ||
81 | static void cgit_print_repo_page(struct cacheitem *item) | 81 | static void cgit_print_repo_page(struct cacheitem *item) |
82 | { | 82 | { |
83 | char *title, *tmp; | 83 | char *title, *tmp; |
84 | int show_search; | 84 | int show_search; |
85 | unsigned char sha1[20]; | 85 | unsigned char sha1[20]; |
86 | 86 | ||
87 | if (chdir(cgit_repo->path)) { | 87 | if (chdir(cgit_repo->path)) { |
88 | title = fmt("%s - %s", cgit_root_title, "Bad request"); | 88 | title = fmt("%s - %s", cgit_root_title, "Bad request"); |
89 | cgit_print_docstart(title, item); | 89 | cgit_print_docstart(title, item); |
90 | cgit_print_pageheader(title, 0); | 90 | cgit_print_pageheader(title, 0); |
91 | cgit_print_error(fmt("Unable to scan repository: %s", | 91 | cgit_print_error(fmt("Unable to scan repository: %s", |
92 | strerror(errno))); | 92 | strerror(errno))); |
93 | cgit_print_docend(); | 93 | cgit_print_docend(); |
94 | return; | 94 | return; |
95 | } | 95 | } |
96 | 96 | ||
97 | title = fmt("%s - %s", cgit_repo->name, cgit_repo->desc); | 97 | title = fmt("%s - %s", cgit_repo->name, cgit_repo->desc); |
98 | show_search = 0; | 98 | show_search = 0; |
99 | setenv("GIT_DIR", cgit_repo->path, 1); | 99 | setenv("GIT_DIR", cgit_repo->path, 1); |
100 | 100 | ||
101 | if (!cgit_query_head) { | 101 | if (!ctx.qry.head) { |
102 | cgit_query_head = xstrdup(find_default_branch(cgit_repo)); | 102 | ctx.qry.head = xstrdup(find_default_branch(cgit_repo)); |
103 | cgit_repo->defbranch = cgit_query_head; | 103 | cgit_repo->defbranch = ctx.qry.head; |
104 | } | 104 | } |
105 | 105 | ||
106 | if (!cgit_query_head) { | 106 | if (!ctx.qry.head) { |
107 | cgit_print_docstart(title, item); | 107 | cgit_print_docstart(title, item); |
108 | cgit_print_pageheader(title, 0); | 108 | cgit_print_pageheader(title, 0); |
109 | cgit_print_error("Repository seems to be empty"); | 109 | cgit_print_error("Repository seems to be empty"); |
110 | cgit_print_docend(); | 110 | cgit_print_docend(); |
111 | return; | 111 | return; |
112 | } | 112 | } |
113 | 113 | ||
114 | if (get_sha1(cgit_query_head, sha1)) { | 114 | if (get_sha1(ctx.qry.head, sha1)) { |
115 | tmp = xstrdup(cgit_query_head); | 115 | tmp = xstrdup(ctx.qry.head); |
116 | cgit_query_head = cgit_repo->defbranch; | 116 | ctx.qry.head = cgit_repo->defbranch; |
117 | cgit_print_docstart(title, item); | 117 | cgit_print_docstart(title, item); |
118 | cgit_print_pageheader(title, 0); | 118 | cgit_print_pageheader(title, 0); |
119 | cgit_print_error(fmt("Invalid branch: %s", tmp)); | 119 | cgit_print_error(fmt("Invalid branch: %s", tmp)); |
120 | cgit_print_docend(); | 120 | cgit_print_docend(); |
121 | return; | 121 | return; |
122 | } | 122 | } |
123 | 123 | ||
124 | if ((cgit_cmd == CMD_SNAPSHOT) && cgit_repo->snapshots) { | 124 | if ((cgit_cmd == CMD_SNAPSHOT) && cgit_repo->snapshots) { |
125 | cgit_print_snapshot(item, cgit_query_head, cgit_query_sha1, | 125 | cgit_print_snapshot(item, ctx.qry.head, ctx.qry.sha1, |
126 | cgit_repobasename(cgit_repo->url), | 126 | cgit_repobasename(cgit_repo->url), |
127 | cgit_query_path, | 127 | ctx.qry.path, |
128 | cgit_repo->snapshots ); | 128 | cgit_repo->snapshots ); |
129 | return; | 129 | return; |
130 | } | 130 | } |
131 | 131 | ||
132 | if (cgit_cmd == CMD_PATCH) { | 132 | if (cgit_cmd == CMD_PATCH) { |
133 | cgit_print_patch(cgit_query_sha1, item); | 133 | cgit_print_patch(ctx.qry.sha1, item); |
134 | return; | 134 | return; |
135 | } | 135 | } |
136 | 136 | ||
137 | if (cgit_cmd == CMD_BLOB) { | 137 | if (cgit_cmd == CMD_BLOB) { |
138 | cgit_print_blob(item, cgit_query_sha1, cgit_query_path); | 138 | cgit_print_blob(item, ctx.qry.sha1, ctx.qry.path); |
139 | return; | 139 | return; |
140 | } | 140 | } |
141 | 141 | ||
142 | show_search = (cgit_cmd == CMD_LOG); | 142 | show_search = (cgit_cmd == CMD_LOG); |
143 | cgit_print_docstart(title, item); | 143 | cgit_print_docstart(title, item); |
144 | if (!cgit_cmd) { | 144 | if (!cgit_cmd) { |
145 | cgit_print_pageheader("summary", show_search); | 145 | cgit_print_pageheader("summary", show_search); |
146 | cgit_print_summary(); | 146 | cgit_print_summary(); |
147 | cgit_print_docend(); | 147 | cgit_print_docend(); |
148 | return; | 148 | return; |
149 | } | 149 | } |
150 | 150 | ||
151 | cgit_print_pageheader(cgit_query_page, show_search); | 151 | cgit_print_pageheader(ctx.qry.page, show_search); |
152 | 152 | ||
153 | switch(cgit_cmd) { | 153 | switch(cgit_cmd) { |
154 | case CMD_LOG: | 154 | case CMD_LOG: |
155 | cgit_print_log(cgit_query_sha1, cgit_query_ofs, | 155 | cgit_print_log(ctx.qry.sha1, ctx.qry.ofs, |
156 | cgit_max_commit_count, cgit_query_grep, cgit_query_search, | 156 | cgit_max_commit_count, ctx.qry.grep, ctx.qry.search, |
157 | cgit_query_path, 1); | 157 | ctx.qry.path, 1); |
158 | break; | 158 | break; |
159 | case CMD_TREE: | 159 | case CMD_TREE: |
160 | cgit_print_tree(cgit_query_sha1, cgit_query_path); | 160 | cgit_print_tree(ctx.qry.sha1, ctx.qry.path); |
161 | break; | 161 | break; |
162 | case CMD_COMMIT: | 162 | case CMD_COMMIT: |
163 | cgit_print_commit(cgit_query_sha1); | 163 | cgit_print_commit(ctx.qry.sha1); |
164 | break; | 164 | break; |
165 | case CMD_REFS: | 165 | case CMD_REFS: |
166 | cgit_print_refs(); | 166 | cgit_print_refs(); |
167 | break; | 167 | break; |
168 | case CMD_TAG: | 168 | case CMD_TAG: |
169 | cgit_print_tag(cgit_query_sha1); | 169 | cgit_print_tag(ctx.qry.sha1); |
170 | break; | 170 | break; |
171 | case CMD_DIFF: | 171 | case CMD_DIFF: |
172 | cgit_print_diff(cgit_query_sha1, cgit_query_sha2, cgit_query_path); | 172 | cgit_print_diff(ctx.qry.sha1, ctx.qry.sha2, ctx.qry.path); |
173 | break; | 173 | break; |
174 | default: | 174 | default: |
175 | cgit_print_error("Invalid request"); | 175 | cgit_print_error("Invalid request"); |
176 | } | 176 | } |
177 | cgit_print_docend(); | 177 | cgit_print_docend(); |
178 | } | 178 | } |
179 | 179 | ||
180 | static void cgit_fill_cache(struct cacheitem *item, int use_cache) | 180 | static void cgit_fill_cache(struct cacheitem *item, int use_cache) |
181 | { | 181 | { |
182 | static char buf[PATH_MAX]; | 182 | static char buf[PATH_MAX]; |
183 | int stdout2; | 183 | int stdout2; |
184 | 184 | ||
185 | getcwd(buf, sizeof(buf)); | 185 | getcwd(buf, sizeof(buf)); |
186 | item->st.st_mtime = time(NULL); | 186 | item->st.st_mtime = time(NULL); |
187 | 187 | ||
188 | if (use_cache) { | 188 | if (use_cache) { |
189 | stdout2 = chk_positive(dup(STDOUT_FILENO), | 189 | stdout2 = chk_positive(dup(STDOUT_FILENO), |
190 | "Preserving STDOUT"); | 190 | "Preserving STDOUT"); |
191 | chk_zero(close(STDOUT_FILENO), "Closing STDOUT"); | 191 | chk_zero(close(STDOUT_FILENO), "Closing STDOUT"); |
192 | chk_positive(dup2(item->fd, STDOUT_FILENO), "Dup2(cachefile)"); | 192 | chk_positive(dup2(item->fd, STDOUT_FILENO), "Dup2(cachefile)"); |
193 | } | 193 | } |
194 | 194 | ||
195 | if (cgit_repo) | 195 | if (cgit_repo) |
196 | cgit_print_repo_page(item); | 196 | cgit_print_repo_page(item); |
197 | else | 197 | else |
198 | cgit_print_repolist(item); | 198 | cgit_print_repolist(item); |
199 | 199 | ||
200 | if (use_cache) { | 200 | if (use_cache) { |
201 | chk_zero(close(STDOUT_FILENO), "Close redirected STDOUT"); | 201 | chk_zero(close(STDOUT_FILENO), "Close redirected STDOUT"); |
202 | chk_positive(dup2(stdout2, STDOUT_FILENO), | 202 | chk_positive(dup2(stdout2, STDOUT_FILENO), |
203 | "Restoring original STDOUT"); | 203 | "Restoring original STDOUT"); |
204 | chk_zero(close(stdout2), "Closing temporary STDOUT"); | 204 | chk_zero(close(stdout2), "Closing temporary STDOUT"); |
205 | } | 205 | } |
206 | 206 | ||
207 | chdir(buf); | 207 | chdir(buf); |
208 | } | 208 | } |
209 | 209 | ||
210 | static void cgit_check_cache(struct cacheitem *item) | 210 | static void cgit_check_cache(struct cacheitem *item) |
211 | { | 211 | { |
212 | int i = 0; | 212 | int i = 0; |
213 | 213 | ||
214 | top: | 214 | top: |
215 | if (++i > cgit_max_lock_attempts) { | 215 | if (++i > cgit_max_lock_attempts) { |
216 | die("cgit_refresh_cache: unable to lock %s: %s", | 216 | die("cgit_refresh_cache: unable to lock %s: %s", |
217 | item->name, strerror(errno)); | 217 | item->name, strerror(errno)); |
218 | } | 218 | } |
219 | if (!cache_exist(item)) { | 219 | if (!cache_exist(item)) { |
220 | if (!cache_lock(item)) { | 220 | if (!cache_lock(item)) { |
221 | sleep(1); | 221 | sleep(1); |
222 | goto top; | 222 | goto top; |
223 | } | 223 | } |
224 | if (!cache_exist(item)) { | 224 | if (!cache_exist(item)) { |
225 | cgit_fill_cache(item, 1); | 225 | cgit_fill_cache(item, 1); |
226 | cache_unlock(item); | 226 | cache_unlock(item); |
227 | } else { | 227 | } else { |
228 | cache_cancel_lock(item); | 228 | cache_cancel_lock(item); |
229 | } | 229 | } |
230 | } else if (cache_expired(item) && cache_lock(item)) { | 230 | } else if (cache_expired(item) && cache_lock(item)) { |
231 | if (cache_expired(item)) { | 231 | if (cache_expired(item)) { |
232 | cgit_fill_cache(item, 1); | 232 | cgit_fill_cache(item, 1); |
233 | cache_unlock(item); | 233 | cache_unlock(item); |
234 | } else { | 234 | } else { |
235 | cache_cancel_lock(item); | 235 | cache_cancel_lock(item); |
236 | } | 236 | } |
237 | } | 237 | } |
238 | } | 238 | } |
239 | 239 | ||
240 | static void cgit_print_cache(struct cacheitem *item) | 240 | static void cgit_print_cache(struct cacheitem *item) |
241 | { | 241 | { |
242 | static char buf[4096]; | 242 | static char buf[4096]; |
243 | ssize_t i; | 243 | ssize_t i; |
244 | 244 | ||
245 | int fd = open(item->name, O_RDONLY); | 245 | int fd = open(item->name, O_RDONLY); |
246 | if (fd<0) | 246 | if (fd<0) |
247 | die("Unable to open cached file %s", item->name); | 247 | die("Unable to open cached file %s", item->name); |
248 | 248 | ||
249 | while((i=read(fd, buf, sizeof(buf))) > 0) | 249 | while((i=read(fd, buf, sizeof(buf))) > 0) |
250 | write(STDOUT_FILENO, buf, i); | 250 | write(STDOUT_FILENO, buf, i); |
251 | 251 | ||
252 | close(fd); | 252 | close(fd); |
253 | } | 253 | } |
254 | 254 | ||
255 | static void cgit_parse_args(int argc, const char **argv) | 255 | static void cgit_parse_args(int argc, const char **argv) |
256 | { | 256 | { |
257 | int i; | 257 | int i; |
258 | 258 | ||
259 | for (i = 1; i < argc; i++) { | 259 | for (i = 1; i < argc; i++) { |
260 | if (!strncmp(argv[i], "--cache=", 8)) { | 260 | if (!strncmp(argv[i], "--cache=", 8)) { |
261 | cgit_cache_root = xstrdup(argv[i]+8); | 261 | cgit_cache_root = xstrdup(argv[i]+8); |
262 | } | 262 | } |
263 | if (!strcmp(argv[i], "--nocache")) { | 263 | if (!strcmp(argv[i], "--nocache")) { |
264 | cgit_nocache = 1; | 264 | cgit_nocache = 1; |
265 | } | 265 | } |
266 | if (!strncmp(argv[i], "--query=", 8)) { | 266 | if (!strncmp(argv[i], "--query=", 8)) { |
267 | cgit_querystring = xstrdup(argv[i]+8); | 267 | ctx.qry.raw = xstrdup(argv[i]+8); |
268 | } | 268 | } |
269 | if (!strncmp(argv[i], "--repo=", 7)) { | 269 | if (!strncmp(argv[i], "--repo=", 7)) { |
270 | cgit_query_repo = xstrdup(argv[i]+7); | 270 | ctx.qry.repo = xstrdup(argv[i]+7); |
271 | } | 271 | } |
272 | if (!strncmp(argv[i], "--page=", 7)) { | 272 | if (!strncmp(argv[i], "--page=", 7)) { |
273 | cgit_query_page = xstrdup(argv[i]+7); | 273 | ctx.qry.page = xstrdup(argv[i]+7); |
274 | } | 274 | } |
275 | if (!strncmp(argv[i], "--head=", 7)) { | 275 | if (!strncmp(argv[i], "--head=", 7)) { |
276 | cgit_query_head = xstrdup(argv[i]+7); | 276 | ctx.qry.head = xstrdup(argv[i]+7); |
277 | cgit_query_has_symref = 1; | 277 | ctx.qry.has_symref = 1; |
278 | } | 278 | } |
279 | if (!strncmp(argv[i], "--sha1=", 7)) { | 279 | if (!strncmp(argv[i], "--sha1=", 7)) { |
280 | cgit_query_sha1 = xstrdup(argv[i]+7); | 280 | ctx.qry.sha1 = xstrdup(argv[i]+7); |
281 | cgit_query_has_sha1 = 1; | 281 | ctx.qry.has_sha1 = 1; |
282 | } | 282 | } |
283 | if (!strncmp(argv[i], "--ofs=", 6)) { | 283 | if (!strncmp(argv[i], "--ofs=", 6)) { |
284 | cgit_query_ofs = atoi(argv[i]+6); | 284 | ctx.qry.ofs = atoi(argv[i]+6); |
285 | } | 285 | } |
286 | } | 286 | } |
287 | } | 287 | } |
288 | 288 | ||
289 | int main(int argc, const char **argv) | 289 | int main(int argc, const char **argv) |
290 | { | 290 | { |
291 | struct cacheitem item; | 291 | struct cacheitem item; |
292 | const char *cgit_config_env = getenv("CGIT_CONFIG"); | 292 | const char *cgit_config_env = getenv("CGIT_CONFIG"); |
293 | 293 | ||
294 | htmlfd = STDOUT_FILENO; | 294 | htmlfd = STDOUT_FILENO; |
295 | item.st.st_mtime = time(NULL); | 295 | item.st.st_mtime = time(NULL); |
296 | cgit_repolist.length = 0; | 296 | cgit_repolist.length = 0; |
297 | cgit_repolist.count = 0; | 297 | cgit_repolist.count = 0; |
298 | cgit_repolist.repos = NULL; | 298 | cgit_repolist.repos = NULL; |
299 | 299 | ||
300 | cgit_read_config(cgit_config_env ? cgit_config_env : CGIT_CONFIG, | 300 | cgit_read_config(cgit_config_env ? cgit_config_env : CGIT_CONFIG, |
301 | cgit_global_config_cb); | 301 | cgit_global_config_cb); |
302 | cgit_repo = NULL; | 302 | cgit_repo = NULL; |
303 | if (getenv("SCRIPT_NAME")) | 303 | if (getenv("SCRIPT_NAME")) |
304 | cgit_script_name = xstrdup(getenv("SCRIPT_NAME")); | 304 | cgit_script_name = xstrdup(getenv("SCRIPT_NAME")); |
305 | if (getenv("QUERY_STRING")) | 305 | if (getenv("QUERY_STRING")) |
306 | cgit_querystring = xstrdup(getenv("QUERY_STRING")); | 306 | ctx.qry.raw = xstrdup(getenv("QUERY_STRING")); |
307 | cgit_parse_args(argc, argv); | 307 | cgit_parse_args(argc, argv); |
308 | cgit_parse_query(cgit_querystring, cgit_querystring_cb); | 308 | cgit_parse_query(ctx.qry.raw, cgit_querystring_cb); |
309 | if (!cgit_prepare_cache(&item)) | 309 | if (!cgit_prepare_cache(&item)) |
310 | return 0; | 310 | return 0; |
311 | if (cgit_nocache) { | 311 | if (cgit_nocache) { |
312 | cgit_fill_cache(&item, 0); | 312 | cgit_fill_cache(&item, 0); |
313 | } else { | 313 | } else { |
314 | cgit_check_cache(&item); | 314 | cgit_check_cache(&item); |
315 | cgit_print_cache(&item); | 315 | cgit_print_cache(&item); |
316 | } | 316 | } |
317 | return 0; | 317 | return 0; |
318 | } | 318 | } |
@@ -1,295 +1,302 @@ | |||
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 | * The valid cgit repo-commands | 23 | * The valid cgit repo-commands |
24 | */ | 24 | */ |
25 | #define CMD_LOG 1 | 25 | #define CMD_LOG 1 |
26 | #define CMD_COMMIT 2 | 26 | #define CMD_COMMIT 2 |
27 | #define CMD_DIFF 3 | 27 | #define CMD_DIFF 3 |
28 | #define CMD_TREE 4 | 28 | #define CMD_TREE 4 |
29 | #define CMD_BLOB 5 | 29 | #define CMD_BLOB 5 |
30 | #define CMD_SNAPSHOT 6 | 30 | #define CMD_SNAPSHOT 6 |
31 | #define CMD_TAG 7 | 31 | #define CMD_TAG 7 |
32 | #define CMD_REFS 8 | 32 | #define CMD_REFS 8 |
33 | #define CMD_PATCH 9 | 33 | #define CMD_PATCH 9 |
34 | 34 | ||
35 | /* | 35 | /* |
36 | * Dateformats used on misc. pages | 36 | * Dateformats used on misc. pages |
37 | */ | 37 | */ |
38 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S" | 38 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S" |
39 | #define FMT_SHORTDATE "%Y-%m-%d" | 39 | #define FMT_SHORTDATE "%Y-%m-%d" |
40 | 40 | ||
41 | 41 | ||
42 | /* | 42 | /* |
43 | * Limits used for relative dates | 43 | * Limits used for relative dates |
44 | */ | 44 | */ |
45 | #define TM_MIN 60 | 45 | #define TM_MIN 60 |
46 | #define TM_HOUR (TM_MIN * 60) | 46 | #define TM_HOUR (TM_MIN * 60) |
47 | #define TM_DAY (TM_HOUR * 24) | 47 | #define TM_DAY (TM_HOUR * 24) |
48 | #define TM_WEEK (TM_DAY * 7) | 48 | #define TM_WEEK (TM_DAY * 7) |
49 | #define TM_YEAR (TM_DAY * 365) | 49 | #define TM_YEAR (TM_DAY * 365) |
50 | #define TM_MONTH (TM_YEAR / 12.0) | 50 | #define TM_MONTH (TM_YEAR / 12.0) |
51 | 51 | ||
52 | 52 | ||
53 | /* | 53 | /* |
54 | * Default encoding | 54 | * Default encoding |
55 | */ | 55 | */ |
56 | #define PAGE_ENCODING "UTF-8" | 56 | #define PAGE_ENCODING "UTF-8" |
57 | 57 | ||
58 | typedef void (*configfn)(const char *name, const char *value); | 58 | typedef void (*configfn)(const char *name, const char *value); |
59 | typedef void (*filepair_fn)(struct diff_filepair *pair); | 59 | typedef void (*filepair_fn)(struct diff_filepair *pair); |
60 | typedef void (*linediff_fn)(char *line, int len); | 60 | typedef void (*linediff_fn)(char *line, int len); |
61 | 61 | ||
62 | struct cacheitem { | 62 | struct cacheitem { |
63 | char *name; | 63 | char *name; |
64 | struct stat st; | 64 | struct stat st; |
65 | int ttl; | 65 | int ttl; |
66 | int fd; | 66 | int fd; |
67 | }; | 67 | }; |
68 | 68 | ||
69 | struct repoinfo { | 69 | struct repoinfo { |
70 | char *url; | 70 | char *url; |
71 | char *name; | 71 | char *name; |
72 | char *path; | 72 | char *path; |
73 | char *desc; | 73 | char *desc; |
74 | char *owner; | 74 | char *owner; |
75 | char *defbranch; | 75 | char *defbranch; |
76 | char *group; | 76 | char *group; |
77 | char *module_link; | 77 | char *module_link; |
78 | char *readme; | 78 | char *readme; |
79 | char *clone_url; | 79 | char *clone_url; |
80 | int snapshots; | 80 | int snapshots; |
81 | int enable_log_filecount; | 81 | int enable_log_filecount; |
82 | int enable_log_linecount; | 82 | int enable_log_linecount; |
83 | }; | 83 | }; |
84 | 84 | ||
85 | struct repolist { | 85 | struct repolist { |
86 | int length; | 86 | int length; |
87 | int count; | 87 | int count; |
88 | struct repoinfo *repos; | 88 | struct repoinfo *repos; |
89 | }; | 89 | }; |
90 | 90 | ||
91 | struct commitinfo { | 91 | struct commitinfo { |
92 | struct commit *commit; | 92 | struct commit *commit; |
93 | char *author; | 93 | char *author; |
94 | char *author_email; | 94 | char *author_email; |
95 | unsigned long author_date; | 95 | unsigned long author_date; |
96 | char *committer; | 96 | char *committer; |
97 | char *committer_email; | 97 | char *committer_email; |
98 | unsigned long committer_date; | 98 | unsigned long committer_date; |
99 | char *subject; | 99 | char *subject; |
100 | char *msg; | 100 | char *msg; |
101 | char *msg_encoding; | 101 | char *msg_encoding; |
102 | }; | 102 | }; |
103 | 103 | ||
104 | struct taginfo { | 104 | struct taginfo { |
105 | char *tagger; | 105 | char *tagger; |
106 | char *tagger_email; | 106 | char *tagger_email; |
107 | int tagger_date; | 107 | int tagger_date; |
108 | char *msg; | 108 | char *msg; |
109 | }; | 109 | }; |
110 | 110 | ||
111 | struct refinfo { | 111 | struct refinfo { |
112 | const char *refname; | 112 | const char *refname; |
113 | struct object *object; | 113 | struct object *object; |
114 | union { | 114 | union { |
115 | struct taginfo *tag; | 115 | struct taginfo *tag; |
116 | struct commitinfo *commit; | 116 | struct commitinfo *commit; |
117 | }; | 117 | }; |
118 | }; | 118 | }; |
119 | 119 | ||
120 | struct reflist { | 120 | struct reflist { |
121 | struct refinfo **refs; | 121 | struct refinfo **refs; |
122 | int alloc; | 122 | int alloc; |
123 | int count; | 123 | int count; |
124 | }; | 124 | }; |
125 | 125 | ||
126 | struct cgit_query { | ||
127 | int has_symref; | ||
128 | int has_sha1; | ||
129 | char *raw; | ||
130 | char *repo; | ||
131 | char *page; | ||
132 | char *search; | ||
133 | char *grep; | ||
134 | char *head; | ||
135 | char *sha1; | ||
136 | char *sha2; | ||
137 | char *path; | ||
138 | char *name; | ||
139 | int ofs; | ||
140 | }; | ||
141 | |||
142 | struct cgit_context { | ||
143 | struct cgit_query qry; | ||
144 | }; | ||
145 | |||
126 | extern const char *cgit_version; | 146 | extern const char *cgit_version; |
127 | 147 | ||
128 | extern struct repolist cgit_repolist; | 148 | extern struct repolist cgit_repolist; |
129 | extern struct repoinfo *cgit_repo; | 149 | extern struct repoinfo *cgit_repo; |
150 | extern struct cgit_context ctx; | ||
130 | extern int cgit_cmd; | 151 | extern int cgit_cmd; |
131 | 152 | ||
132 | extern char *cgit_root_title; | 153 | extern char *cgit_root_title; |
133 | extern char *cgit_css; | 154 | extern char *cgit_css; |
134 | extern char *cgit_logo; | 155 | extern char *cgit_logo; |
135 | extern char *cgit_index_header; | 156 | extern char *cgit_index_header; |
136 | extern char *cgit_index_info; | 157 | extern char *cgit_index_info; |
137 | extern char *cgit_logo_link; | 158 | extern char *cgit_logo_link; |
138 | extern char *cgit_module_link; | 159 | extern char *cgit_module_link; |
139 | extern char *cgit_agefile; | 160 | extern char *cgit_agefile; |
140 | extern char *cgit_virtual_root; | 161 | extern char *cgit_virtual_root; |
141 | extern char *cgit_script_name; | 162 | extern char *cgit_script_name; |
142 | extern char *cgit_cache_root; | 163 | extern char *cgit_cache_root; |
143 | extern char *cgit_repo_group; | 164 | extern char *cgit_repo_group; |
144 | extern char *cgit_robots; | 165 | extern char *cgit_robots; |
145 | extern char *cgit_clone_prefix; | 166 | extern char *cgit_clone_prefix; |
146 | 167 | ||
147 | extern int cgit_nocache; | 168 | extern int cgit_nocache; |
148 | extern int cgit_snapshots; | 169 | extern int cgit_snapshots; |
149 | extern int cgit_enable_index_links; | 170 | extern int cgit_enable_index_links; |
150 | extern int cgit_enable_log_filecount; | 171 | extern int cgit_enable_log_filecount; |
151 | extern int cgit_enable_log_linecount; | 172 | extern int cgit_enable_log_linecount; |
152 | extern int cgit_max_lock_attempts; | 173 | extern int cgit_max_lock_attempts; |
153 | extern int cgit_cache_root_ttl; | 174 | extern int cgit_cache_root_ttl; |
154 | extern int cgit_cache_repo_ttl; | 175 | extern int cgit_cache_repo_ttl; |
155 | extern int cgit_cache_dynamic_ttl; | 176 | extern int cgit_cache_dynamic_ttl; |
156 | extern int cgit_cache_static_ttl; | 177 | extern int cgit_cache_static_ttl; |
157 | extern int cgit_cache_max_create_time; | 178 | extern int cgit_cache_max_create_time; |
158 | extern int cgit_summary_log; | 179 | extern int cgit_summary_log; |
159 | extern int cgit_summary_tags; | 180 | extern int cgit_summary_tags; |
160 | extern int cgit_summary_branches; | 181 | extern int cgit_summary_branches; |
161 | 182 | ||
162 | extern int cgit_max_msg_len; | 183 | extern int cgit_max_msg_len; |
163 | extern int cgit_max_repodesc_len; | 184 | extern int cgit_max_repodesc_len; |
164 | extern int cgit_max_commit_count; | 185 | extern int cgit_max_commit_count; |
165 | 186 | ||
166 | extern int cgit_query_has_symref; | ||
167 | extern int cgit_query_has_sha1; | ||
168 | |||
169 | extern char *cgit_querystring; | ||
170 | extern char *cgit_query_repo; | ||
171 | extern char *cgit_query_page; | ||
172 | extern char *cgit_query_search; | ||
173 | extern char *cgit_query_grep; | ||
174 | extern char *cgit_query_head; | ||
175 | extern char *cgit_query_sha1; | ||
176 | extern char *cgit_query_sha2; | ||
177 | extern char *cgit_query_path; | ||
178 | extern char *cgit_query_name; | ||
179 | extern int cgit_query_ofs; | ||
180 | 187 | ||
181 | extern int htmlfd; | 188 | extern int htmlfd; |
182 | 189 | ||
183 | extern int cgit_get_cmd_index(const char *cmd); | 190 | extern int cgit_get_cmd_index(const char *cmd); |
184 | extern struct repoinfo *cgit_get_repoinfo(const char *url); | 191 | extern struct repoinfo *cgit_get_repoinfo(const char *url); |
185 | extern void cgit_global_config_cb(const char *name, const char *value); | 192 | extern void cgit_global_config_cb(const char *name, const char *value); |
186 | extern void cgit_repo_config_cb(const char *name, const char *value); | 193 | extern void cgit_repo_config_cb(const char *name, const char *value); |
187 | extern void cgit_querystring_cb(const char *name, const char *value); | 194 | extern void cgit_querystring_cb(const char *name, const char *value); |
188 | 195 | ||
189 | extern int chk_zero(int result, char *msg); | 196 | extern int chk_zero(int result, char *msg); |
190 | extern int chk_positive(int result, char *msg); | 197 | extern int chk_positive(int result, char *msg); |
191 | extern int chk_non_negative(int result, char *msg); | 198 | extern int chk_non_negative(int result, char *msg); |
192 | 199 | ||
193 | extern int hextoint(char c); | 200 | extern int hextoint(char c); |
194 | extern char *trim_end(const char *str, char c); | 201 | extern char *trim_end(const char *str, char c); |
195 | extern char *strlpart(char *txt, int maxlen); | 202 | extern char *strlpart(char *txt, int maxlen); |
196 | extern char *strrpart(char *txt, int maxlen); | 203 | extern char *strrpart(char *txt, int maxlen); |
197 | 204 | ||
198 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); | 205 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
199 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, | 206 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
200 | int flags, void *cb_data); | 207 | int flags, void *cb_data); |
201 | 208 | ||
202 | extern void *cgit_free_commitinfo(struct commitinfo *info); | 209 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
203 | 210 | ||
204 | extern int cgit_diff_files(const unsigned char *old_sha1, | 211 | extern int cgit_diff_files(const unsigned char *old_sha1, |
205 | const unsigned char *new_sha1, | 212 | const unsigned char *new_sha1, |
206 | linediff_fn fn); | 213 | linediff_fn fn); |
207 | 214 | ||
208 | extern void cgit_diff_tree(const unsigned char *old_sha1, | 215 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
209 | const unsigned char *new_sha1, | 216 | const unsigned char *new_sha1, |
210 | filepair_fn fn, const char *prefix); | 217 | filepair_fn fn, const char *prefix); |
211 | 218 | ||
212 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); | 219 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
213 | 220 | ||
214 | extern char *fmt(const char *format,...); | 221 | extern char *fmt(const char *format,...); |
215 | 222 | ||
216 | extern void html(const char *txt); | 223 | extern void html(const char *txt); |
217 | extern void htmlf(const char *format,...); | 224 | extern void htmlf(const char *format,...); |
218 | extern void html_txt(char *txt); | 225 | extern void html_txt(char *txt); |
219 | extern void html_ntxt(int len, char *txt); | 226 | extern void html_ntxt(int len, char *txt); |
220 | extern void html_attr(char *txt); | 227 | extern void html_attr(char *txt); |
221 | extern void html_hidden(char *name, char *value); | 228 | extern void html_hidden(char *name, char *value); |
222 | extern void html_option(char *value, char *text, char *selected_value); | 229 | extern void html_option(char *value, char *text, char *selected_value); |
223 | extern void html_link_open(char *url, char *title, char *class); | 230 | extern void html_link_open(char *url, char *title, char *class); |
224 | extern void html_link_close(void); | 231 | extern void html_link_close(void); |
225 | extern void html_filemode(unsigned short mode); | 232 | extern void html_filemode(unsigned short mode); |
226 | extern int html_include(const char *filename); | 233 | extern int html_include(const char *filename); |
227 | 234 | ||
228 | extern int cgit_read_config(const char *filename, configfn fn); | 235 | extern int cgit_read_config(const char *filename, configfn fn); |
229 | extern int cgit_parse_query(char *txt, configfn fn); | 236 | extern int cgit_parse_query(char *txt, configfn fn); |
230 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); | 237 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
231 | extern struct taginfo *cgit_parse_tag(struct tag *tag); | 238 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
232 | extern void cgit_parse_url(const char *url); | 239 | extern void cgit_parse_url(const char *url); |
233 | 240 | ||
234 | extern char *cache_safe_filename(const char *unsafe); | 241 | extern char *cache_safe_filename(const char *unsafe); |
235 | extern int cache_lock(struct cacheitem *item); | 242 | extern int cache_lock(struct cacheitem *item); |
236 | extern int cache_unlock(struct cacheitem *item); | 243 | extern int cache_unlock(struct cacheitem *item); |
237 | extern int cache_cancel_lock(struct cacheitem *item); | 244 | extern int cache_cancel_lock(struct cacheitem *item); |
238 | extern int cache_exist(struct cacheitem *item); | 245 | extern int cache_exist(struct cacheitem *item); |
239 | extern int cache_expired(struct cacheitem *item); | 246 | extern int cache_expired(struct cacheitem *item); |
240 | 247 | ||
241 | extern char *cgit_repourl(const char *reponame); | 248 | extern char *cgit_repourl(const char *reponame); |
242 | extern char *cgit_fileurl(const char *reponame, const char *pagename, | 249 | extern char *cgit_fileurl(const char *reponame, const char *pagename, |
243 | const char *filename, const char *query); | 250 | const char *filename, const char *query); |
244 | extern char *cgit_pageurl(const char *reponame, const char *pagename, | 251 | extern char *cgit_pageurl(const char *reponame, const char *pagename, |
245 | const char *query); | 252 | const char *query); |
246 | 253 | ||
247 | extern const char *cgit_repobasename(const char *reponame); | 254 | extern const char *cgit_repobasename(const char *reponame); |
248 | 255 | ||
249 | extern void cgit_tree_link(char *name, char *title, char *class, char *head, | 256 | extern void cgit_tree_link(char *name, char *title, char *class, char *head, |
250 | char *rev, char *path); | 257 | char *rev, char *path); |
251 | extern void cgit_log_link(char *name, char *title, char *class, char *head, | 258 | extern void cgit_log_link(char *name, char *title, char *class, char *head, |
252 | char *rev, char *path, int ofs, char *grep, | 259 | char *rev, char *path, int ofs, char *grep, |
253 | char *pattern); | 260 | char *pattern); |
254 | extern void cgit_commit_link(char *name, char *title, char *class, char *head, | 261 | extern void cgit_commit_link(char *name, char *title, char *class, char *head, |
255 | char *rev); | 262 | char *rev); |
256 | extern void cgit_refs_link(char *name, char *title, char *class, char *head, | 263 | extern void cgit_refs_link(char *name, char *title, char *class, char *head, |
257 | char *rev, char *path); | 264 | char *rev, char *path); |
258 | extern void cgit_snapshot_link(char *name, char *title, char *class, | 265 | extern void cgit_snapshot_link(char *name, char *title, char *class, |
259 | char *head, char *rev, char *archivename); | 266 | char *head, char *rev, char *archivename); |
260 | extern void cgit_diff_link(char *name, char *title, char *class, char *head, | 267 | extern void cgit_diff_link(char *name, char *title, char *class, char *head, |
261 | char *new_rev, char *old_rev, char *path); | 268 | char *new_rev, char *old_rev, char *path); |
262 | 269 | ||
263 | extern void cgit_object_link(struct object *obj); | 270 | extern void cgit_object_link(struct object *obj); |
264 | 271 | ||
265 | extern void cgit_print_error(char *msg); | 272 | extern void cgit_print_error(char *msg); |
266 | extern void cgit_print_date(time_t secs, char *format); | 273 | extern void cgit_print_date(time_t secs, char *format); |
267 | extern void cgit_print_age(time_t t, time_t max_relative, char *format); | 274 | extern void cgit_print_age(time_t t, time_t max_relative, char *format); |
268 | extern void cgit_print_docstart(char *title, struct cacheitem *item); | 275 | extern void cgit_print_docstart(char *title, struct cacheitem *item); |
269 | extern void cgit_print_docend(); | 276 | extern void cgit_print_docend(); |
270 | extern void cgit_print_pageheader(char *title, int show_search); | 277 | extern void cgit_print_pageheader(char *title, int show_search); |
271 | extern void cgit_print_snapshot_start(const char *mimetype, | 278 | extern void cgit_print_snapshot_start(const char *mimetype, |
272 | const char *filename, | 279 | const char *filename, |
273 | struct cacheitem *item); | 280 | struct cacheitem *item); |
274 | extern void cgit_print_branches(int maxcount); | 281 | extern void cgit_print_branches(int maxcount); |
275 | extern void cgit_print_tags(int maxcount); | 282 | extern void cgit_print_tags(int maxcount); |
276 | 283 | ||
277 | extern void cgit_print_repolist(struct cacheitem *item); | 284 | extern void cgit_print_repolist(struct cacheitem *item); |
278 | extern void cgit_print_summary(); | 285 | extern void cgit_print_summary(); |
279 | extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, | 286 | extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, |
280 | char *pattern, char *path, int pager); | 287 | char *pattern, char *path, int pager); |
281 | extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path); | 288 | extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path); |
282 | extern void cgit_print_tree(const char *rev, char *path); | 289 | extern void cgit_print_tree(const char *rev, char *path); |
283 | extern void cgit_print_commit(char *hex); | 290 | extern void cgit_print_commit(char *hex); |
284 | extern void cgit_print_refs(); | 291 | extern void cgit_print_refs(); |
285 | extern void cgit_print_tag(char *revname); | 292 | extern void cgit_print_tag(char *revname); |
286 | extern void cgit_print_diff(const char *new_hex, const char *old_hex, const char *prefix); | 293 | extern void cgit_print_diff(const char *new_hex, const char *old_hex, const char *prefix); |
287 | extern void cgit_print_patch(char *hex, struct cacheitem *item); | 294 | extern void cgit_print_patch(char *hex, struct cacheitem *item); |
288 | extern void cgit_print_snapshot(struct cacheitem *item, const char *head, | 295 | extern void cgit_print_snapshot(struct cacheitem *item, const char *head, |
289 | const char *hex, const char *prefix, | 296 | const char *hex, const char *prefix, |
290 | const char *filename, int snapshot); | 297 | const char *filename, int snapshot); |
291 | extern void cgit_print_snapshot_links(const char *repo, const char *head, | 298 | extern void cgit_print_snapshot_links(const char *repo, const char *head, |
292 | const char *hex, int snapshots); | 299 | const char *hex, int snapshots); |
293 | extern int cgit_parse_snapshots_mask(const char *str); | 300 | extern int cgit_parse_snapshots_mask(const char *str); |
294 | 301 | ||
295 | #endif /* CGIT_H */ | 302 | #endif /* CGIT_H */ |
@@ -1,332 +1,332 @@ | |||
1 | /* config.c: parsing of config files | 1 | /* config.c: parsing of config files |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | int next_char(FILE *f) | 11 | int next_char(FILE *f) |
12 | { | 12 | { |
13 | int c = fgetc(f); | 13 | int c = fgetc(f); |
14 | if (c=='\r') { | 14 | if (c=='\r') { |
15 | c = fgetc(f); | 15 | c = fgetc(f); |
16 | if (c!='\n') { | 16 | if (c!='\n') { |
17 | ungetc(c, f); | 17 | ungetc(c, f); |
18 | c = '\r'; | 18 | c = '\r'; |
19 | } | 19 | } |
20 | } | 20 | } |
21 | return c; | 21 | return c; |
22 | } | 22 | } |
23 | 23 | ||
24 | void skip_line(FILE *f) | 24 | void skip_line(FILE *f) |
25 | { | 25 | { |
26 | int c; | 26 | int c; |
27 | 27 | ||
28 | while((c=next_char(f)) && c!='\n' && c!=EOF) | 28 | while((c=next_char(f)) && c!='\n' && c!=EOF) |
29 | ; | 29 | ; |
30 | } | 30 | } |
31 | 31 | ||
32 | int read_config_line(FILE *f, char *line, const char **value, int bufsize) | 32 | int read_config_line(FILE *f, char *line, const char **value, int bufsize) |
33 | { | 33 | { |
34 | int i = 0, isname = 0; | 34 | int i = 0, isname = 0; |
35 | 35 | ||
36 | *value = NULL; | 36 | *value = NULL; |
37 | while(i<bufsize-1) { | 37 | while(i<bufsize-1) { |
38 | int c = next_char(f); | 38 | int c = next_char(f); |
39 | if (!isname && (c=='#' || c==';')) { | 39 | if (!isname && (c=='#' || c==';')) { |
40 | skip_line(f); | 40 | skip_line(f); |
41 | continue; | 41 | continue; |
42 | } | 42 | } |
43 | if (!isname && isspace(c)) | 43 | if (!isname && isspace(c)) |
44 | continue; | 44 | continue; |
45 | 45 | ||
46 | if (c=='=' && !*value) { | 46 | if (c=='=' && !*value) { |
47 | line[i] = 0; | 47 | line[i] = 0; |
48 | *value = &line[i+1]; | 48 | *value = &line[i+1]; |
49 | } else if (c=='\n' && !isname) { | 49 | } else if (c=='\n' && !isname) { |
50 | i = 0; | 50 | i = 0; |
51 | continue; | 51 | continue; |
52 | } else if (c=='\n' || c==EOF) { | 52 | } else if (c=='\n' || c==EOF) { |
53 | line[i] = 0; | 53 | line[i] = 0; |
54 | break; | 54 | break; |
55 | } else { | 55 | } else { |
56 | line[i]=c; | 56 | line[i]=c; |
57 | } | 57 | } |
58 | isname = 1; | 58 | isname = 1; |
59 | i++; | 59 | i++; |
60 | } | 60 | } |
61 | line[i+1] = 0; | 61 | line[i+1] = 0; |
62 | return i; | 62 | return i; |
63 | } | 63 | } |
64 | 64 | ||
65 | int cgit_read_config(const char *filename, configfn fn) | 65 | int cgit_read_config(const char *filename, configfn fn) |
66 | { | 66 | { |
67 | static int nesting; | 67 | static int nesting; |
68 | int len; | 68 | int len; |
69 | char line[256]; | 69 | char line[256]; |
70 | const char *value; | 70 | const char *value; |
71 | FILE *f; | 71 | FILE *f; |
72 | 72 | ||
73 | /* cancel deeply nested include-commands */ | 73 | /* cancel deeply nested include-commands */ |
74 | if (nesting > 8) | 74 | if (nesting > 8) |
75 | return -1; | 75 | return -1; |
76 | if (!(f = fopen(filename, "r"))) | 76 | if (!(f = fopen(filename, "r"))) |
77 | return -1; | 77 | return -1; |
78 | nesting++; | 78 | nesting++; |
79 | while((len = read_config_line(f, line, &value, sizeof(line))) > 0) | 79 | while((len = read_config_line(f, line, &value, sizeof(line))) > 0) |
80 | (*fn)(line, value); | 80 | (*fn)(line, value); |
81 | nesting--; | 81 | nesting--; |
82 | fclose(f); | 82 | fclose(f); |
83 | return 0; | 83 | return 0; |
84 | } | 84 | } |
85 | 85 | ||
86 | char *convert_query_hexchar(char *txt) | 86 | char *convert_query_hexchar(char *txt) |
87 | { | 87 | { |
88 | int d1, d2; | 88 | int d1, d2; |
89 | if (strlen(txt) < 3) { | 89 | if (strlen(txt) < 3) { |
90 | *txt = '\0'; | 90 | *txt = '\0'; |
91 | return txt-1; | 91 | return txt-1; |
92 | } | 92 | } |
93 | d1 = hextoint(*(txt+1)); | 93 | d1 = hextoint(*(txt+1)); |
94 | d2 = hextoint(*(txt+2)); | 94 | d2 = hextoint(*(txt+2)); |
95 | if (d1<0 || d2<0) { | 95 | if (d1<0 || d2<0) { |
96 | strcpy(txt, txt+3); | 96 | strcpy(txt, txt+3); |
97 | return txt-1; | 97 | return txt-1; |
98 | } else { | 98 | } else { |
99 | *txt = d1 * 16 + d2; | 99 | *txt = d1 * 16 + d2; |
100 | strcpy(txt+1, txt+3); | 100 | strcpy(txt+1, txt+3); |
101 | return txt; | 101 | return txt; |
102 | } | 102 | } |
103 | } | 103 | } |
104 | 104 | ||
105 | int cgit_parse_query(char *txt, configfn fn) | 105 | int cgit_parse_query(char *txt, configfn fn) |
106 | { | 106 | { |
107 | char *t, *value = NULL, c; | 107 | char *t, *value = NULL, c; |
108 | 108 | ||
109 | if (!txt) | 109 | if (!txt) |
110 | return 0; | 110 | return 0; |
111 | 111 | ||
112 | t = txt = xstrdup(txt); | 112 | t = txt = xstrdup(txt); |
113 | 113 | ||
114 | while((c=*t) != '\0') { | 114 | while((c=*t) != '\0') { |
115 | if (c=='=') { | 115 | if (c=='=') { |
116 | *t = '\0'; | 116 | *t = '\0'; |
117 | value = t+1; | 117 | value = t+1; |
118 | } else if (c=='+') { | 118 | } else if (c=='+') { |
119 | *t = ' '; | 119 | *t = ' '; |
120 | } else if (c=='%') { | 120 | } else if (c=='%') { |
121 | t = convert_query_hexchar(t); | 121 | t = convert_query_hexchar(t); |
122 | } else if (c=='&') { | 122 | } else if (c=='&') { |
123 | *t = '\0'; | 123 | *t = '\0'; |
124 | (*fn)(txt, value); | 124 | (*fn)(txt, value); |
125 | txt = t+1; | 125 | txt = t+1; |
126 | value = NULL; | 126 | value = NULL; |
127 | } | 127 | } |
128 | t++; | 128 | t++; |
129 | } | 129 | } |
130 | if (t!=txt) | 130 | if (t!=txt) |
131 | (*fn)(txt, value); | 131 | (*fn)(txt, value); |
132 | return 0; | 132 | return 0; |
133 | } | 133 | } |
134 | 134 | ||
135 | /* | 135 | /* |
136 | * url syntax: [repo ['/' cmd [ '/' path]]] | 136 | * url syntax: [repo ['/' cmd [ '/' path]]] |
137 | * repo: any valid repo url, may contain '/' | 137 | * repo: any valid repo url, may contain '/' |
138 | * cmd: log | commit | diff | tree | view | blob | snapshot | 138 | * cmd: log | commit | diff | tree | view | blob | snapshot |
139 | * path: any valid path, may contain '/' | 139 | * path: any valid path, may contain '/' |
140 | * | 140 | * |
141 | */ | 141 | */ |
142 | void cgit_parse_url(const char *url) | 142 | void cgit_parse_url(const char *url) |
143 | { | 143 | { |
144 | char *cmd, *p; | 144 | char *cmd, *p; |
145 | 145 | ||
146 | cgit_repo = NULL; | 146 | cgit_repo = NULL; |
147 | if (!url || url[0] == '\0') | 147 | if (!url || url[0] == '\0') |
148 | return; | 148 | return; |
149 | 149 | ||
150 | cgit_repo = cgit_get_repoinfo(url); | 150 | cgit_repo = cgit_get_repoinfo(url); |
151 | if (cgit_repo) { | 151 | if (cgit_repo) { |
152 | cgit_query_repo = cgit_repo->url; | 152 | ctx.qry.repo = cgit_repo->url; |
153 | return; | 153 | return; |
154 | } | 154 | } |
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 | ctx.qry.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 = trim_end(p + 1, '/'); | 171 | ctx.qry.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 | ctx.qry.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 | } |
188 | 188 | ||
189 | struct commitinfo *cgit_parse_commit(struct commit *commit) | 189 | struct commitinfo *cgit_parse_commit(struct commit *commit) |
190 | { | 190 | { |
191 | struct commitinfo *ret; | 191 | struct commitinfo *ret; |
192 | char *p = commit->buffer, *t = commit->buffer; | 192 | char *p = commit->buffer, *t = commit->buffer; |
193 | 193 | ||
194 | ret = xmalloc(sizeof(*ret)); | 194 | ret = xmalloc(sizeof(*ret)); |
195 | ret->commit = commit; | 195 | ret->commit = commit; |
196 | ret->author = NULL; | 196 | ret->author = NULL; |
197 | ret->author_email = NULL; | 197 | ret->author_email = NULL; |
198 | ret->committer = NULL; | 198 | ret->committer = NULL; |
199 | ret->committer_email = NULL; | 199 | ret->committer_email = NULL; |
200 | ret->subject = NULL; | 200 | ret->subject = NULL; |
201 | ret->msg = NULL; | 201 | ret->msg = NULL; |
202 | ret->msg_encoding = NULL; | 202 | ret->msg_encoding = NULL; |
203 | 203 | ||
204 | if (p == NULL) | 204 | if (p == NULL) |
205 | return ret; | 205 | return ret; |
206 | 206 | ||
207 | if (strncmp(p, "tree ", 5)) | 207 | if (strncmp(p, "tree ", 5)) |
208 | die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); | 208 | die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); |
209 | else | 209 | else |
210 | p += 46; // "tree " + hex[40] + "\n" | 210 | p += 46; // "tree " + hex[40] + "\n" |
211 | 211 | ||
212 | while (!strncmp(p, "parent ", 7)) | 212 | while (!strncmp(p, "parent ", 7)) |
213 | p += 48; // "parent " + hex[40] + "\n" | 213 | p += 48; // "parent " + hex[40] + "\n" |
214 | 214 | ||
215 | if (!strncmp(p, "author ", 7)) { | 215 | if (!strncmp(p, "author ", 7)) { |
216 | p += 7; | 216 | p += 7; |
217 | t = strchr(p, '<') - 1; | 217 | t = strchr(p, '<') - 1; |
218 | ret->author = substr(p, t); | 218 | ret->author = substr(p, t); |
219 | p = t; | 219 | p = t; |
220 | t = strchr(t, '>') + 1; | 220 | t = strchr(t, '>') + 1; |
221 | ret->author_email = substr(p, t); | 221 | ret->author_email = substr(p, t); |
222 | ret->author_date = atol(t+1); | 222 | ret->author_date = atol(t+1); |
223 | p = strchr(t, '\n') + 1; | 223 | p = strchr(t, '\n') + 1; |
224 | } | 224 | } |
225 | 225 | ||
226 | if (!strncmp(p, "committer ", 9)) { | 226 | if (!strncmp(p, "committer ", 9)) { |
227 | p += 9; | 227 | p += 9; |
228 | t = strchr(p, '<') - 1; | 228 | t = strchr(p, '<') - 1; |
229 | ret->committer = substr(p, t); | 229 | ret->committer = substr(p, t); |
230 | p = t; | 230 | p = t; |
231 | t = strchr(t, '>') + 1; | 231 | t = strchr(t, '>') + 1; |
232 | ret->committer_email = substr(p, t); | 232 | ret->committer_email = substr(p, t); |
233 | ret->committer_date = atol(t+1); | 233 | ret->committer_date = atol(t+1); |
234 | p = strchr(t, '\n') + 1; | 234 | p = strchr(t, '\n') + 1; |
235 | } | 235 | } |
236 | 236 | ||
237 | if (!strncmp(p, "encoding ", 9)) { | 237 | if (!strncmp(p, "encoding ", 9)) { |
238 | p += 9; | 238 | p += 9; |
239 | t = strchr(p, '\n') + 1; | 239 | t = strchr(p, '\n') + 1; |
240 | ret->msg_encoding = substr(p, t); | 240 | ret->msg_encoding = substr(p, t); |
241 | p = t; | 241 | p = t; |
242 | } else | 242 | } else |
243 | ret->msg_encoding = xstrdup(PAGE_ENCODING); | 243 | ret->msg_encoding = xstrdup(PAGE_ENCODING); |
244 | 244 | ||
245 | while (*p && (*p != '\n')) | 245 | while (*p && (*p != '\n')) |
246 | p = strchr(p, '\n') + 1; // skip unknown header fields | 246 | p = strchr(p, '\n') + 1; // skip unknown header fields |
247 | 247 | ||
248 | while (*p == '\n') | 248 | while (*p == '\n') |
249 | p = strchr(p, '\n') + 1; | 249 | p = strchr(p, '\n') + 1; |
250 | 250 | ||
251 | t = strchr(p, '\n'); | 251 | t = strchr(p, '\n'); |
252 | if (t) { | 252 | if (t) { |
253 | if (*t == '\0') | 253 | if (*t == '\0') |
254 | ret->subject = "** empty **"; | 254 | ret->subject = "** empty **"; |
255 | else | 255 | else |
256 | ret->subject = substr(p, t); | 256 | ret->subject = substr(p, t); |
257 | p = t + 1; | 257 | p = t + 1; |
258 | 258 | ||
259 | while (*p == '\n') | 259 | while (*p == '\n') |
260 | p = strchr(p, '\n') + 1; | 260 | p = strchr(p, '\n') + 1; |
261 | ret->msg = xstrdup(p); | 261 | ret->msg = xstrdup(p); |
262 | } else | 262 | } else |
263 | ret->subject = substr(p, p+strlen(p)); | 263 | ret->subject = substr(p, p+strlen(p)); |
264 | 264 | ||
265 | if(strcmp(ret->msg_encoding, PAGE_ENCODING)) { | 265 | if(strcmp(ret->msg_encoding, PAGE_ENCODING)) { |
266 | t = reencode_string(ret->subject, PAGE_ENCODING, | 266 | t = reencode_string(ret->subject, PAGE_ENCODING, |
267 | ret->msg_encoding); | 267 | ret->msg_encoding); |
268 | if(t) { | 268 | if(t) { |
269 | free(ret->subject); | 269 | free(ret->subject); |
270 | ret->subject = t; | 270 | ret->subject = t; |
271 | } | 271 | } |
272 | 272 | ||
273 | t = reencode_string(ret->msg, PAGE_ENCODING, | 273 | t = reencode_string(ret->msg, PAGE_ENCODING, |
274 | ret->msg_encoding); | 274 | ret->msg_encoding); |
275 | if(t) { | 275 | if(t) { |
276 | free(ret->msg); | 276 | free(ret->msg); |
277 | ret->msg = t; | 277 | ret->msg = t; |
278 | } | 278 | } |
279 | } | 279 | } |
280 | 280 | ||
281 | return ret; | 281 | return ret; |
282 | } | 282 | } |
283 | 283 | ||
284 | 284 | ||
285 | struct taginfo *cgit_parse_tag(struct tag *tag) | 285 | struct taginfo *cgit_parse_tag(struct tag *tag) |
286 | { | 286 | { |
287 | void *data; | 287 | void *data; |
288 | enum object_type type; | 288 | enum object_type type; |
289 | unsigned long size; | 289 | unsigned long size; |
290 | char *p, *t; | 290 | char *p, *t; |
291 | struct taginfo *ret; | 291 | struct taginfo *ret; |
292 | 292 | ||
293 | data = read_sha1_file(tag->object.sha1, &type, &size); | 293 | data = read_sha1_file(tag->object.sha1, &type, &size); |
294 | if (!data || type != OBJ_TAG) { | 294 | if (!data || type != OBJ_TAG) { |
295 | free(data); | 295 | free(data); |
296 | return 0; | 296 | return 0; |
297 | } | 297 | } |
298 | 298 | ||
299 | ret = xmalloc(sizeof(*ret)); | 299 | ret = xmalloc(sizeof(*ret)); |
300 | ret->tagger = NULL; | 300 | ret->tagger = NULL; |
301 | ret->tagger_email = NULL; | 301 | ret->tagger_email = NULL; |
302 | ret->tagger_date = 0; | 302 | ret->tagger_date = 0; |
303 | ret->msg = NULL; | 303 | ret->msg = NULL; |
304 | 304 | ||
305 | p = data; | 305 | p = data; |
306 | 306 | ||
307 | while (p && *p) { | 307 | while (p && *p) { |
308 | if (*p == '\n') | 308 | if (*p == '\n') |
309 | break; | 309 | break; |
310 | 310 | ||
311 | if (!strncmp(p, "tagger ", 7)) { | 311 | if (!strncmp(p, "tagger ", 7)) { |
312 | p += 7; | 312 | p += 7; |
313 | t = strchr(p, '<') - 1; | 313 | t = strchr(p, '<') - 1; |
314 | ret->tagger = substr(p, t); | 314 | ret->tagger = substr(p, t); |
315 | p = t; | 315 | p = t; |
316 | t = strchr(t, '>') + 1; | 316 | t = strchr(t, '>') + 1; |
317 | ret->tagger_email = substr(p, t); | 317 | ret->tagger_email = substr(p, t); |
318 | ret->tagger_date = atol(t+1); | 318 | ret->tagger_date = atol(t+1); |
319 | } | 319 | } |
320 | p = strchr(p, '\n') + 1; | 320 | p = strchr(p, '\n') + 1; |
321 | } | 321 | } |
322 | 322 | ||
323 | while (p && *p && (*p != '\n')) | 323 | while (p && *p && (*p != '\n')) |
324 | p = strchr(p, '\n') + 1; // skip unknown tag fields | 324 | p = strchr(p, '\n') + 1; // skip unknown tag fields |
325 | 325 | ||
326 | while (p && (*p == '\n')) | 326 | while (p && (*p == '\n')) |
327 | p = strchr(p, '\n') + 1; | 327 | p = strchr(p, '\n') + 1; |
328 | if (p && *p) | 328 | if (p && *p) |
329 | ret->msg = xstrdup(p); | 329 | ret->msg = xstrdup(p); |
330 | free(data); | 330 | free(data); |
331 | return ret; | 331 | return ret; |
332 | } | 332 | } |
@@ -1,521 +1,506 @@ | |||
1 | /* shared.c: global vars + some callback functions | 1 | /* shared.c: global vars + some callback functions |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | struct repolist cgit_repolist; | 11 | struct repolist cgit_repolist; |
12 | struct repoinfo *cgit_repo; | 12 | struct repoinfo *cgit_repo; |
13 | struct cgit_context ctx; | ||
13 | int cgit_cmd; | 14 | int cgit_cmd; |
14 | 15 | ||
15 | const char *cgit_version = CGIT_VERSION; | 16 | const char *cgit_version = CGIT_VERSION; |
16 | 17 | ||
17 | char *cgit_root_title = "Git repository browser"; | 18 | char *cgit_root_title = "Git repository browser"; |
18 | char *cgit_css = "/cgit.css"; | 19 | char *cgit_css = "/cgit.css"; |
19 | char *cgit_logo = "/git-logo.png"; | 20 | char *cgit_logo = "/git-logo.png"; |
20 | char *cgit_index_header = NULL; | 21 | char *cgit_index_header = NULL; |
21 | char *cgit_index_info = NULL; | 22 | char *cgit_index_info = NULL; |
22 | char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; | 23 | char *cgit_logo_link = "http://www.kernel.org/pub/software/scm/git/docs/"; |
23 | char *cgit_module_link = "./?repo=%s&page=commit&id=%s"; | 24 | char *cgit_module_link = "./?repo=%s&page=commit&id=%s"; |
24 | char *cgit_agefile = "info/web/last-modified"; | 25 | char *cgit_agefile = "info/web/last-modified"; |
25 | char *cgit_virtual_root = NULL; | 26 | char *cgit_virtual_root = NULL; |
26 | char *cgit_script_name = CGIT_SCRIPT_NAME; | 27 | char *cgit_script_name = CGIT_SCRIPT_NAME; |
27 | char *cgit_cache_root = CGIT_CACHE_ROOT; | 28 | char *cgit_cache_root = CGIT_CACHE_ROOT; |
28 | char *cgit_repo_group = NULL; | 29 | char *cgit_repo_group = NULL; |
29 | char *cgit_robots = "index, nofollow"; | 30 | char *cgit_robots = "index, nofollow"; |
30 | char *cgit_clone_prefix = NULL; | 31 | char *cgit_clone_prefix = NULL; |
31 | 32 | ||
32 | int cgit_nocache = 0; | 33 | int cgit_nocache = 0; |
33 | int cgit_snapshots = 0; | 34 | int cgit_snapshots = 0; |
34 | int cgit_enable_index_links = 0; | 35 | int cgit_enable_index_links = 0; |
35 | int cgit_enable_log_filecount = 0; | 36 | int cgit_enable_log_filecount = 0; |
36 | int cgit_enable_log_linecount = 0; | 37 | int cgit_enable_log_linecount = 0; |
37 | int cgit_max_lock_attempts = 5; | 38 | int cgit_max_lock_attempts = 5; |
38 | int cgit_cache_root_ttl = 5; | 39 | int cgit_cache_root_ttl = 5; |
39 | int cgit_cache_repo_ttl = 5; | 40 | int cgit_cache_repo_ttl = 5; |
40 | int cgit_cache_dynamic_ttl = 5; | 41 | int cgit_cache_dynamic_ttl = 5; |
41 | int cgit_cache_static_ttl = -1; | 42 | int cgit_cache_static_ttl = -1; |
42 | int cgit_cache_max_create_time = 5; | 43 | int cgit_cache_max_create_time = 5; |
43 | int cgit_summary_log = 0; | 44 | int cgit_summary_log = 0; |
44 | int cgit_summary_tags = 0; | 45 | int cgit_summary_tags = 0; |
45 | int cgit_summary_branches = 0; | 46 | int cgit_summary_branches = 0; |
46 | int cgit_renamelimit = -1; | 47 | int cgit_renamelimit = -1; |
47 | 48 | ||
48 | int cgit_max_msg_len = 60; | 49 | int cgit_max_msg_len = 60; |
49 | int cgit_max_repodesc_len = 60; | 50 | int cgit_max_repodesc_len = 60; |
50 | int cgit_max_commit_count = 50; | 51 | int cgit_max_commit_count = 50; |
51 | 52 | ||
52 | int cgit_query_has_symref = 0; | ||
53 | int cgit_query_has_sha1 = 0; | ||
54 | |||
55 | char *cgit_querystring = NULL; | ||
56 | char *cgit_query_repo = NULL; | ||
57 | char *cgit_query_page = NULL; | ||
58 | char *cgit_query_head = NULL; | ||
59 | char *cgit_query_search = NULL; | ||
60 | char *cgit_query_grep = NULL; | ||
61 | char *cgit_query_sha1 = NULL; | ||
62 | char *cgit_query_sha2 = NULL; | ||
63 | char *cgit_query_path = NULL; | ||
64 | char *cgit_query_name = NULL; | ||
65 | int cgit_query_ofs = 0; | ||
66 | |||
67 | int htmlfd = 0; | 53 | int htmlfd = 0; |
68 | 54 | ||
69 | |||
70 | int cgit_get_cmd_index(const char *cmd) | 55 | int cgit_get_cmd_index(const char *cmd) |
71 | { | 56 | { |
72 | static char *cmds[] = {"log", "commit", "diff", "tree", "blob", | 57 | static char *cmds[] = {"log", "commit", "diff", "tree", "blob", |
73 | "snapshot", "tag", "refs", "patch", NULL}; | 58 | "snapshot", "tag", "refs", "patch", NULL}; |
74 | int i; | 59 | int i; |
75 | 60 | ||
76 | for(i = 0; cmds[i]; i++) | 61 | for(i = 0; cmds[i]; i++) |
77 | if (!strcmp(cmd, cmds[i])) | 62 | if (!strcmp(cmd, cmds[i])) |
78 | return i + 1; | 63 | return i + 1; |
79 | return 0; | 64 | return 0; |
80 | } | 65 | } |
81 | 66 | ||
82 | int chk_zero(int result, char *msg) | 67 | int chk_zero(int result, char *msg) |
83 | { | 68 | { |
84 | if (result != 0) | 69 | if (result != 0) |
85 | die("%s: %s", msg, strerror(errno)); | 70 | die("%s: %s", msg, strerror(errno)); |
86 | return result; | 71 | return result; |
87 | } | 72 | } |
88 | 73 | ||
89 | int chk_positive(int result, char *msg) | 74 | int chk_positive(int result, char *msg) |
90 | { | 75 | { |
91 | if (result <= 0) | 76 | if (result <= 0) |
92 | die("%s: %s", msg, strerror(errno)); | 77 | die("%s: %s", msg, strerror(errno)); |
93 | return result; | 78 | return result; |
94 | } | 79 | } |
95 | 80 | ||
96 | int chk_non_negative(int result, char *msg) | 81 | int chk_non_negative(int result, char *msg) |
97 | { | 82 | { |
98 | if (result < 0) | 83 | if (result < 0) |
99 | die("%s: %s",msg, strerror(errno)); | 84 | die("%s: %s",msg, strerror(errno)); |
100 | return result; | 85 | return result; |
101 | } | 86 | } |
102 | 87 | ||
103 | struct repoinfo *add_repo(const char *url) | 88 | struct repoinfo *add_repo(const char *url) |
104 | { | 89 | { |
105 | struct repoinfo *ret; | 90 | struct repoinfo *ret; |
106 | 91 | ||
107 | if (++cgit_repolist.count > cgit_repolist.length) { | 92 | if (++cgit_repolist.count > cgit_repolist.length) { |
108 | if (cgit_repolist.length == 0) | 93 | if (cgit_repolist.length == 0) |
109 | cgit_repolist.length = 8; | 94 | cgit_repolist.length = 8; |
110 | else | 95 | else |
111 | cgit_repolist.length *= 2; | 96 | cgit_repolist.length *= 2; |
112 | cgit_repolist.repos = xrealloc(cgit_repolist.repos, | 97 | cgit_repolist.repos = xrealloc(cgit_repolist.repos, |
113 | cgit_repolist.length * | 98 | cgit_repolist.length * |
114 | sizeof(struct repoinfo)); | 99 | sizeof(struct repoinfo)); |
115 | } | 100 | } |
116 | 101 | ||
117 | ret = &cgit_repolist.repos[cgit_repolist.count-1]; | 102 | ret = &cgit_repolist.repos[cgit_repolist.count-1]; |
118 | ret->url = trim_end(url, '/'); | 103 | ret->url = trim_end(url, '/'); |
119 | ret->name = ret->url; | 104 | ret->name = ret->url; |
120 | ret->path = NULL; | 105 | ret->path = NULL; |
121 | ret->desc = "[no description]"; | 106 | ret->desc = "[no description]"; |
122 | ret->owner = NULL; | 107 | ret->owner = NULL; |
123 | ret->group = cgit_repo_group; | 108 | ret->group = cgit_repo_group; |
124 | ret->defbranch = "master"; | 109 | ret->defbranch = "master"; |
125 | ret->snapshots = cgit_snapshots; | 110 | ret->snapshots = cgit_snapshots; |
126 | ret->enable_log_filecount = cgit_enable_log_filecount; | 111 | ret->enable_log_filecount = cgit_enable_log_filecount; |
127 | ret->enable_log_linecount = cgit_enable_log_linecount; | 112 | ret->enable_log_linecount = cgit_enable_log_linecount; |
128 | ret->module_link = cgit_module_link; | 113 | ret->module_link = cgit_module_link; |
129 | ret->readme = NULL; | 114 | ret->readme = NULL; |
130 | return ret; | 115 | return ret; |
131 | } | 116 | } |
132 | 117 | ||
133 | struct repoinfo *cgit_get_repoinfo(const char *url) | 118 | struct repoinfo *cgit_get_repoinfo(const char *url) |
134 | { | 119 | { |
135 | int i; | 120 | int i; |
136 | struct repoinfo *repo; | 121 | struct repoinfo *repo; |
137 | 122 | ||
138 | for (i=0; i<cgit_repolist.count; i++) { | 123 | for (i=0; i<cgit_repolist.count; i++) { |
139 | repo = &cgit_repolist.repos[i]; | 124 | repo = &cgit_repolist.repos[i]; |
140 | if (!strcmp(repo->url, url)) | 125 | if (!strcmp(repo->url, url)) |
141 | return repo; | 126 | return repo; |
142 | } | 127 | } |
143 | return NULL; | 128 | return NULL; |
144 | } | 129 | } |
145 | 130 | ||
146 | void cgit_global_config_cb(const char *name, const char *value) | 131 | void cgit_global_config_cb(const char *name, const char *value) |
147 | { | 132 | { |
148 | if (!strcmp(name, "root-title")) | 133 | if (!strcmp(name, "root-title")) |
149 | cgit_root_title = xstrdup(value); | 134 | cgit_root_title = xstrdup(value); |
150 | else if (!strcmp(name, "css")) | 135 | else if (!strcmp(name, "css")) |
151 | cgit_css = xstrdup(value); | 136 | cgit_css = xstrdup(value); |
152 | else if (!strcmp(name, "logo")) | 137 | else if (!strcmp(name, "logo")) |
153 | cgit_logo = xstrdup(value); | 138 | cgit_logo = xstrdup(value); |
154 | else if (!strcmp(name, "index-header")) | 139 | else if (!strcmp(name, "index-header")) |
155 | cgit_index_header = xstrdup(value); | 140 | cgit_index_header = xstrdup(value); |
156 | else if (!strcmp(name, "index-info")) | 141 | else if (!strcmp(name, "index-info")) |
157 | cgit_index_info = xstrdup(value); | 142 | cgit_index_info = xstrdup(value); |
158 | else if (!strcmp(name, "logo-link")) | 143 | else if (!strcmp(name, "logo-link")) |
159 | cgit_logo_link = xstrdup(value); | 144 | cgit_logo_link = xstrdup(value); |
160 | else if (!strcmp(name, "module-link")) | 145 | else if (!strcmp(name, "module-link")) |
161 | cgit_module_link = xstrdup(value); | 146 | cgit_module_link = xstrdup(value); |
162 | else if (!strcmp(name, "virtual-root")) { | 147 | else if (!strcmp(name, "virtual-root")) { |
163 | cgit_virtual_root = trim_end(value, '/'); | 148 | cgit_virtual_root = trim_end(value, '/'); |
164 | if (!cgit_virtual_root && (!strcmp(value, "/"))) | 149 | if (!cgit_virtual_root && (!strcmp(value, "/"))) |
165 | cgit_virtual_root = ""; | 150 | cgit_virtual_root = ""; |
166 | } else if (!strcmp(name, "nocache")) | 151 | } else if (!strcmp(name, "nocache")) |
167 | cgit_nocache = atoi(value); | 152 | cgit_nocache = atoi(value); |
168 | else if (!strcmp(name, "snapshots")) | 153 | else if (!strcmp(name, "snapshots")) |
169 | cgit_snapshots = cgit_parse_snapshots_mask(value); | 154 | cgit_snapshots = cgit_parse_snapshots_mask(value); |
170 | else if (!strcmp(name, "enable-index-links")) | 155 | else if (!strcmp(name, "enable-index-links")) |
171 | cgit_enable_index_links = atoi(value); | 156 | cgit_enable_index_links = atoi(value); |
172 | else if (!strcmp(name, "enable-log-filecount")) | 157 | else if (!strcmp(name, "enable-log-filecount")) |
173 | cgit_enable_log_filecount = atoi(value); | 158 | cgit_enable_log_filecount = atoi(value); |
174 | else if (!strcmp(name, "enable-log-linecount")) | 159 | else if (!strcmp(name, "enable-log-linecount")) |
175 | cgit_enable_log_linecount = atoi(value); | 160 | cgit_enable_log_linecount = atoi(value); |
176 | else if (!strcmp(name, "cache-root")) | 161 | else if (!strcmp(name, "cache-root")) |
177 | cgit_cache_root = xstrdup(value); | 162 | cgit_cache_root = xstrdup(value); |
178 | else if (!strcmp(name, "cache-root-ttl")) | 163 | else if (!strcmp(name, "cache-root-ttl")) |
179 | cgit_cache_root_ttl = atoi(value); | 164 | cgit_cache_root_ttl = atoi(value); |
180 | else if (!strcmp(name, "cache-repo-ttl")) | 165 | else if (!strcmp(name, "cache-repo-ttl")) |
181 | cgit_cache_repo_ttl = atoi(value); | 166 | cgit_cache_repo_ttl = atoi(value); |
182 | else if (!strcmp(name, "cache-static-ttl")) | 167 | else if (!strcmp(name, "cache-static-ttl")) |
183 | cgit_cache_static_ttl = atoi(value); | 168 | cgit_cache_static_ttl = atoi(value); |
184 | else if (!strcmp(name, "cache-dynamic-ttl")) | 169 | else if (!strcmp(name, "cache-dynamic-ttl")) |
185 | cgit_cache_dynamic_ttl = atoi(value); | 170 | cgit_cache_dynamic_ttl = atoi(value); |
186 | else if (!strcmp(name, "max-message-length")) | 171 | else if (!strcmp(name, "max-message-length")) |
187 | cgit_max_msg_len = atoi(value); | 172 | cgit_max_msg_len = atoi(value); |
188 | else if (!strcmp(name, "max-repodesc-length")) | 173 | else if (!strcmp(name, "max-repodesc-length")) |
189 | cgit_max_repodesc_len = atoi(value); | 174 | cgit_max_repodesc_len = atoi(value); |
190 | else if (!strcmp(name, "max-commit-count")) | 175 | else if (!strcmp(name, "max-commit-count")) |
191 | cgit_max_commit_count = atoi(value); | 176 | cgit_max_commit_count = atoi(value); |
192 | else if (!strcmp(name, "summary-log")) | 177 | else if (!strcmp(name, "summary-log")) |
193 | cgit_summary_log = atoi(value); | 178 | cgit_summary_log = atoi(value); |
194 | else if (!strcmp(name, "summary-branches")) | 179 | else if (!strcmp(name, "summary-branches")) |
195 | cgit_summary_branches = atoi(value); | 180 | cgit_summary_branches = atoi(value); |
196 | else if (!strcmp(name, "summary-tags")) | 181 | else if (!strcmp(name, "summary-tags")) |
197 | cgit_summary_tags = atoi(value); | 182 | cgit_summary_tags = atoi(value); |
198 | else if (!strcmp(name, "agefile")) | 183 | else if (!strcmp(name, "agefile")) |
199 | cgit_agefile = xstrdup(value); | 184 | cgit_agefile = xstrdup(value); |
200 | else if (!strcmp(name, "renamelimit")) | 185 | else if (!strcmp(name, "renamelimit")) |
201 | cgit_renamelimit = atoi(value); | 186 | cgit_renamelimit = atoi(value); |
202 | else if (!strcmp(name, "robots")) | 187 | else if (!strcmp(name, "robots")) |
203 | cgit_robots = xstrdup(value); | 188 | cgit_robots = xstrdup(value); |
204 | else if (!strcmp(name, "clone-prefix")) | 189 | else if (!strcmp(name, "clone-prefix")) |
205 | cgit_clone_prefix = xstrdup(value); | 190 | cgit_clone_prefix = xstrdup(value); |
206 | else if (!strcmp(name, "repo.group")) | 191 | else if (!strcmp(name, "repo.group")) |
207 | cgit_repo_group = xstrdup(value); | 192 | cgit_repo_group = xstrdup(value); |
208 | else if (!strcmp(name, "repo.url")) | 193 | else if (!strcmp(name, "repo.url")) |
209 | cgit_repo = add_repo(value); | 194 | cgit_repo = add_repo(value); |
210 | else if (!strcmp(name, "repo.name")) | 195 | else if (!strcmp(name, "repo.name")) |
211 | cgit_repo->name = xstrdup(value); | 196 | cgit_repo->name = xstrdup(value); |
212 | else if (cgit_repo && !strcmp(name, "repo.path")) | 197 | else if (cgit_repo && !strcmp(name, "repo.path")) |
213 | cgit_repo->path = trim_end(value, '/'); | 198 | cgit_repo->path = trim_end(value, '/'); |
214 | else if (cgit_repo && !strcmp(name, "repo.clone-url")) | 199 | else if (cgit_repo && !strcmp(name, "repo.clone-url")) |
215 | cgit_repo->clone_url = xstrdup(value); | 200 | cgit_repo->clone_url = xstrdup(value); |
216 | else if (cgit_repo && !strcmp(name, "repo.desc")) | 201 | else if (cgit_repo && !strcmp(name, "repo.desc")) |
217 | cgit_repo->desc = xstrdup(value); | 202 | cgit_repo->desc = xstrdup(value); |
218 | else if (cgit_repo && !strcmp(name, "repo.owner")) | 203 | else if (cgit_repo && !strcmp(name, "repo.owner")) |
219 | cgit_repo->owner = xstrdup(value); | 204 | cgit_repo->owner = xstrdup(value); |
220 | else if (cgit_repo && !strcmp(name, "repo.defbranch")) | 205 | else if (cgit_repo && !strcmp(name, "repo.defbranch")) |
221 | cgit_repo->defbranch = xstrdup(value); | 206 | cgit_repo->defbranch = xstrdup(value); |
222 | else if (cgit_repo && !strcmp(name, "repo.snapshots")) | 207 | else if (cgit_repo && !strcmp(name, "repo.snapshots")) |
223 | cgit_repo->snapshots = cgit_snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */ | 208 | cgit_repo->snapshots = cgit_snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */ |
224 | else if (cgit_repo && !strcmp(name, "repo.enable-log-filecount")) | 209 | else if (cgit_repo && !strcmp(name, "repo.enable-log-filecount")) |
225 | cgit_repo->enable_log_filecount = cgit_enable_log_filecount * atoi(value); | 210 | cgit_repo->enable_log_filecount = cgit_enable_log_filecount * atoi(value); |
226 | else if (cgit_repo && !strcmp(name, "repo.enable-log-linecount")) | 211 | else if (cgit_repo && !strcmp(name, "repo.enable-log-linecount")) |
227 | cgit_repo->enable_log_linecount = cgit_enable_log_linecount * atoi(value); | 212 | cgit_repo->enable_log_linecount = cgit_enable_log_linecount * atoi(value); |
228 | else if (cgit_repo && !strcmp(name, "repo.module-link")) | 213 | else if (cgit_repo && !strcmp(name, "repo.module-link")) |
229 | cgit_repo->module_link= xstrdup(value); | 214 | cgit_repo->module_link= xstrdup(value); |
230 | else if (cgit_repo && !strcmp(name, "repo.readme") && value != NULL) { | 215 | else if (cgit_repo && !strcmp(name, "repo.readme") && value != NULL) { |
231 | if (*value == '/') | 216 | if (*value == '/') |
232 | cgit_repo->readme = xstrdup(value); | 217 | cgit_repo->readme = xstrdup(value); |
233 | else | 218 | else |
234 | cgit_repo->readme = xstrdup(fmt("%s/%s", cgit_repo->path, value)); | 219 | cgit_repo->readme = xstrdup(fmt("%s/%s", cgit_repo->path, value)); |
235 | } else if (!strcmp(name, "include")) | 220 | } else if (!strcmp(name, "include")) |
236 | cgit_read_config(value, cgit_global_config_cb); | 221 | cgit_read_config(value, cgit_global_config_cb); |
237 | } | 222 | } |
238 | 223 | ||
239 | void cgit_querystring_cb(const char *name, const char *value) | 224 | void cgit_querystring_cb(const char *name, const char *value) |
240 | { | 225 | { |
241 | if (!strcmp(name,"r")) { | 226 | if (!strcmp(name,"r")) { |
242 | cgit_query_repo = xstrdup(value); | 227 | ctx.qry.repo = xstrdup(value); |
243 | cgit_repo = cgit_get_repoinfo(value); | 228 | cgit_repo = cgit_get_repoinfo(value); |
244 | } else if (!strcmp(name, "p")) { | 229 | } else if (!strcmp(name, "p")) { |
245 | cgit_query_page = xstrdup(value); | 230 | ctx.qry.page = xstrdup(value); |
246 | cgit_cmd = cgit_get_cmd_index(value); | 231 | cgit_cmd = cgit_get_cmd_index(value); |
247 | } else if (!strcmp(name, "url")) { | 232 | } else if (!strcmp(name, "url")) { |
248 | cgit_parse_url(value); | 233 | cgit_parse_url(value); |
249 | } else if (!strcmp(name, "qt")) { | 234 | } else if (!strcmp(name, "qt")) { |
250 | cgit_query_grep = xstrdup(value); | 235 | ctx.qry.grep = xstrdup(value); |
251 | } else if (!strcmp(name, "q")) { | 236 | } else if (!strcmp(name, "q")) { |
252 | cgit_query_search = xstrdup(value); | 237 | ctx.qry.search = xstrdup(value); |
253 | } else if (!strcmp(name, "h")) { | 238 | } else if (!strcmp(name, "h")) { |
254 | cgit_query_head = xstrdup(value); | 239 | ctx.qry.head = xstrdup(value); |
255 | cgit_query_has_symref = 1; | 240 | ctx.qry.has_symref = 1; |
256 | } else if (!strcmp(name, "id")) { | 241 | } else if (!strcmp(name, "id")) { |
257 | cgit_query_sha1 = xstrdup(value); | 242 | ctx.qry.sha1 = xstrdup(value); |
258 | cgit_query_has_sha1 = 1; | 243 | ctx.qry.has_sha1 = 1; |
259 | } else if (!strcmp(name, "id2")) { | 244 | } else if (!strcmp(name, "id2")) { |
260 | cgit_query_sha2 = xstrdup(value); | 245 | ctx.qry.sha2 = xstrdup(value); |
261 | cgit_query_has_sha1 = 1; | 246 | ctx.qry.has_sha1 = 1; |
262 | } else if (!strcmp(name, "ofs")) { | 247 | } else if (!strcmp(name, "ofs")) { |
263 | cgit_query_ofs = atoi(value); | 248 | ctx.qry.ofs = atoi(value); |
264 | } else if (!strcmp(name, "path")) { | 249 | } else if (!strcmp(name, "path")) { |
265 | cgit_query_path = trim_end(value, '/'); | 250 | ctx.qry.path = trim_end(value, '/'); |
266 | } else if (!strcmp(name, "name")) { | 251 | } else if (!strcmp(name, "name")) { |
267 | cgit_query_name = xstrdup(value); | 252 | ctx.qry.name = xstrdup(value); |
268 | } | 253 | } |
269 | } | 254 | } |
270 | 255 | ||
271 | void *cgit_free_commitinfo(struct commitinfo *info) | 256 | void *cgit_free_commitinfo(struct commitinfo *info) |
272 | { | 257 | { |
273 | free(info->author); | 258 | free(info->author); |
274 | free(info->author_email); | 259 | free(info->author_email); |
275 | free(info->committer); | 260 | free(info->committer); |
276 | free(info->committer_email); | 261 | free(info->committer_email); |
277 | free(info->subject); | 262 | free(info->subject); |
278 | free(info->msg); | 263 | free(info->msg); |
279 | free(info->msg_encoding); | 264 | free(info->msg_encoding); |
280 | free(info); | 265 | free(info); |
281 | return NULL; | 266 | return NULL; |
282 | } | 267 | } |
283 | 268 | ||
284 | int hextoint(char c) | 269 | int hextoint(char c) |
285 | { | 270 | { |
286 | if (c >= 'a' && c <= 'f') | 271 | if (c >= 'a' && c <= 'f') |
287 | return 10 + c - 'a'; | 272 | return 10 + c - 'a'; |
288 | else if (c >= 'A' && c <= 'F') | 273 | else if (c >= 'A' && c <= 'F') |
289 | return 10 + c - 'A'; | 274 | return 10 + c - 'A'; |
290 | else if (c >= '0' && c <= '9') | 275 | else if (c >= '0' && c <= '9') |
291 | return c - '0'; | 276 | return c - '0'; |
292 | else | 277 | else |
293 | return -1; | 278 | return -1; |
294 | } | 279 | } |
295 | 280 | ||
296 | char *trim_end(const char *str, char c) | 281 | char *trim_end(const char *str, char c) |
297 | { | 282 | { |
298 | int len; | 283 | int len; |
299 | char *s, *t; | 284 | char *s, *t; |
300 | 285 | ||
301 | if (str == NULL) | 286 | if (str == NULL) |
302 | return NULL; | 287 | return NULL; |
303 | t = (char *)str; | 288 | t = (char *)str; |
304 | len = strlen(t); | 289 | len = strlen(t); |
305 | while(len > 0 && t[len - 1] == c) | 290 | while(len > 0 && t[len - 1] == c) |
306 | len--; | 291 | len--; |
307 | 292 | ||
308 | if (len == 0) | 293 | if (len == 0) |
309 | return NULL; | 294 | return NULL; |
310 | 295 | ||
311 | c = t[len]; | 296 | c = t[len]; |
312 | t[len] = '\0'; | 297 | t[len] = '\0'; |
313 | s = xstrdup(t); | 298 | s = xstrdup(t); |
314 | t[len] = c; | 299 | t[len] = c; |
315 | return s; | 300 | return s; |
316 | } | 301 | } |
317 | 302 | ||
318 | char *strlpart(char *txt, int maxlen) | 303 | char *strlpart(char *txt, int maxlen) |
319 | { | 304 | { |
320 | char *result; | 305 | char *result; |
321 | 306 | ||
322 | if (!txt) | 307 | if (!txt) |
323 | return txt; | 308 | return txt; |
324 | 309 | ||
325 | if (strlen(txt) <= maxlen) | 310 | if (strlen(txt) <= maxlen) |
326 | return txt; | 311 | return txt; |
327 | result = xmalloc(maxlen + 1); | 312 | result = xmalloc(maxlen + 1); |
328 | memcpy(result, txt, maxlen - 3); | 313 | memcpy(result, txt, maxlen - 3); |
329 | result[maxlen-1] = result[maxlen-2] = result[maxlen-3] = '.'; | 314 | result[maxlen-1] = result[maxlen-2] = result[maxlen-3] = '.'; |
330 | result[maxlen] = '\0'; | 315 | result[maxlen] = '\0'; |
331 | return result; | 316 | return result; |
332 | } | 317 | } |
333 | 318 | ||
334 | char *strrpart(char *txt, int maxlen) | 319 | char *strrpart(char *txt, int maxlen) |
335 | { | 320 | { |
336 | char *result; | 321 | char *result; |
337 | 322 | ||
338 | if (!txt) | 323 | if (!txt) |
339 | return txt; | 324 | return txt; |
340 | 325 | ||
341 | if (strlen(txt) <= maxlen) | 326 | if (strlen(txt) <= maxlen) |
342 | return txt; | 327 | return txt; |
343 | result = xmalloc(maxlen + 1); | 328 | result = xmalloc(maxlen + 1); |
344 | memcpy(result + 3, txt + strlen(txt) - maxlen + 4, maxlen - 3); | 329 | memcpy(result + 3, txt + strlen(txt) - maxlen + 4, maxlen - 3); |
345 | result[0] = result[1] = result[2] = '.'; | 330 | result[0] = result[1] = result[2] = '.'; |
346 | return result; | 331 | return result; |
347 | } | 332 | } |
348 | 333 | ||
349 | void cgit_add_ref(struct reflist *list, struct refinfo *ref) | 334 | void cgit_add_ref(struct reflist *list, struct refinfo *ref) |
350 | { | 335 | { |
351 | size_t size; | 336 | size_t size; |
352 | 337 | ||
353 | if (list->count >= list->alloc) { | 338 | if (list->count >= list->alloc) { |
354 | list->alloc += (list->alloc ? list->alloc : 4); | 339 | list->alloc += (list->alloc ? list->alloc : 4); |
355 | size = list->alloc * sizeof(struct refinfo *); | 340 | size = list->alloc * sizeof(struct refinfo *); |
356 | list->refs = xrealloc(list->refs, size); | 341 | list->refs = xrealloc(list->refs, size); |
357 | } | 342 | } |
358 | list->refs[list->count++] = ref; | 343 | list->refs[list->count++] = ref; |
359 | } | 344 | } |
360 | 345 | ||
361 | struct refinfo *cgit_mk_refinfo(const char *refname, const unsigned char *sha1) | 346 | struct refinfo *cgit_mk_refinfo(const char *refname, const unsigned char *sha1) |
362 | { | 347 | { |
363 | struct refinfo *ref; | 348 | struct refinfo *ref; |
364 | 349 | ||
365 | ref = xmalloc(sizeof (struct refinfo)); | 350 | ref = xmalloc(sizeof (struct refinfo)); |
366 | ref->refname = xstrdup(refname); | 351 | ref->refname = xstrdup(refname); |
367 | ref->object = parse_object(sha1); | 352 | ref->object = parse_object(sha1); |
368 | switch (ref->object->type) { | 353 | switch (ref->object->type) { |
369 | case OBJ_TAG: | 354 | case OBJ_TAG: |
370 | ref->tag = cgit_parse_tag((struct tag *)ref->object); | 355 | ref->tag = cgit_parse_tag((struct tag *)ref->object); |
371 | break; | 356 | break; |
372 | case OBJ_COMMIT: | 357 | case OBJ_COMMIT: |
373 | ref->commit = cgit_parse_commit((struct commit *)ref->object); | 358 | ref->commit = cgit_parse_commit((struct commit *)ref->object); |
374 | break; | 359 | break; |
375 | } | 360 | } |
376 | return ref; | 361 | return ref; |
377 | } | 362 | } |
378 | 363 | ||
379 | int cgit_refs_cb(const char *refname, const unsigned char *sha1, int flags, | 364 | int cgit_refs_cb(const char *refname, const unsigned char *sha1, int flags, |
380 | void *cb_data) | 365 | void *cb_data) |
381 | { | 366 | { |
382 | struct reflist *list = (struct reflist *)cb_data; | 367 | struct reflist *list = (struct reflist *)cb_data; |
383 | struct refinfo *info = cgit_mk_refinfo(refname, sha1); | 368 | struct refinfo *info = cgit_mk_refinfo(refname, sha1); |
384 | 369 | ||
385 | if (info) | 370 | if (info) |
386 | cgit_add_ref(list, info); | 371 | cgit_add_ref(list, info); |
387 | return 0; | 372 | return 0; |
388 | } | 373 | } |
389 | 374 | ||
390 | void cgit_diff_tree_cb(struct diff_queue_struct *q, | 375 | void cgit_diff_tree_cb(struct diff_queue_struct *q, |
391 | struct diff_options *options, void *data) | 376 | struct diff_options *options, void *data) |
392 | { | 377 | { |
393 | int i; | 378 | int i; |
394 | 379 | ||
395 | for (i = 0; i < q->nr; i++) { | 380 | for (i = 0; i < q->nr; i++) { |
396 | if (q->queue[i]->status == 'U') | 381 | if (q->queue[i]->status == 'U') |
397 | continue; | 382 | continue; |
398 | ((filepair_fn)data)(q->queue[i]); | 383 | ((filepair_fn)data)(q->queue[i]); |
399 | } | 384 | } |
400 | } | 385 | } |
401 | 386 | ||
402 | static int load_mmfile(mmfile_t *file, const unsigned char *sha1) | 387 | static int load_mmfile(mmfile_t *file, const unsigned char *sha1) |
403 | { | 388 | { |
404 | enum object_type type; | 389 | enum object_type type; |
405 | 390 | ||
406 | if (is_null_sha1(sha1)) { | 391 | if (is_null_sha1(sha1)) { |
407 | file->ptr = (char *)""; | 392 | file->ptr = (char *)""; |
408 | file->size = 0; | 393 | file->size = 0; |
409 | } else { | 394 | } else { |
410 | file->ptr = read_sha1_file(sha1, &type, | 395 | file->ptr = read_sha1_file(sha1, &type, |
411 | (unsigned long *)&file->size); | 396 | (unsigned long *)&file->size); |
412 | } | 397 | } |
413 | return 1; | 398 | return 1; |
414 | } | 399 | } |
415 | 400 | ||
416 | /* | 401 | /* |
417 | * Receive diff-buffers from xdiff and concatenate them as | 402 | * Receive diff-buffers from xdiff and concatenate them as |
418 | * needed across multiple callbacks. | 403 | * needed across multiple callbacks. |
419 | * | 404 | * |
420 | * This is basically a copy of xdiff-interface.c/xdiff_outf(), | 405 | * This is basically a copy of xdiff-interface.c/xdiff_outf(), |
421 | * ripped from git and modified to use globals instead of | 406 | * ripped from git and modified to use globals instead of |
422 | * a special callback-struct. | 407 | * a special callback-struct. |
423 | */ | 408 | */ |
424 | char *diffbuf = NULL; | 409 | char *diffbuf = NULL; |
425 | int buflen = 0; | 410 | int buflen = 0; |
426 | 411 | ||
427 | int filediff_cb(void *priv, mmbuffer_t *mb, int nbuf) | 412 | int filediff_cb(void *priv, mmbuffer_t *mb, int nbuf) |
428 | { | 413 | { |
429 | int i; | 414 | int i; |
430 | 415 | ||
431 | for (i = 0; i < nbuf; i++) { | 416 | for (i = 0; i < nbuf; i++) { |
432 | if (mb[i].ptr[mb[i].size-1] != '\n') { | 417 | if (mb[i].ptr[mb[i].size-1] != '\n') { |
433 | /* Incomplete line */ | 418 | /* Incomplete line */ |
434 | diffbuf = xrealloc(diffbuf, buflen + mb[i].size); | 419 | diffbuf = xrealloc(diffbuf, buflen + mb[i].size); |
435 | memcpy(diffbuf + buflen, mb[i].ptr, mb[i].size); | 420 | memcpy(diffbuf + buflen, mb[i].ptr, mb[i].size); |
436 | buflen += mb[i].size; | 421 | buflen += mb[i].size; |
437 | continue; | 422 | continue; |
438 | } | 423 | } |
439 | 424 | ||
440 | /* we have a complete line */ | 425 | /* we have a complete line */ |
441 | if (!diffbuf) { | 426 | if (!diffbuf) { |
442 | ((linediff_fn)priv)(mb[i].ptr, mb[i].size); | 427 | ((linediff_fn)priv)(mb[i].ptr, mb[i].size); |
443 | continue; | 428 | continue; |
444 | } | 429 | } |
445 | diffbuf = xrealloc(diffbuf, buflen + mb[i].size); | 430 | diffbuf = xrealloc(diffbuf, buflen + mb[i].size); |
446 | memcpy(diffbuf + buflen, mb[i].ptr, mb[i].size); | 431 | memcpy(diffbuf + buflen, mb[i].ptr, mb[i].size); |
447 | ((linediff_fn)priv)(diffbuf, buflen + mb[i].size); | 432 | ((linediff_fn)priv)(diffbuf, buflen + mb[i].size); |
448 | free(diffbuf); | 433 | free(diffbuf); |
449 | diffbuf = NULL; | 434 | diffbuf = NULL; |
450 | buflen = 0; | 435 | buflen = 0; |
451 | } | 436 | } |
452 | if (diffbuf) { | 437 | if (diffbuf) { |
453 | ((linediff_fn)priv)(diffbuf, buflen); | 438 | ((linediff_fn)priv)(diffbuf, buflen); |
454 | free(diffbuf); | 439 | free(diffbuf); |
455 | diffbuf = NULL; | 440 | diffbuf = NULL; |
456 | buflen = 0; | 441 | buflen = 0; |
457 | } | 442 | } |
458 | return 0; | 443 | return 0; |
459 | } | 444 | } |
460 | 445 | ||
461 | int cgit_diff_files(const unsigned char *old_sha1, | 446 | int cgit_diff_files(const unsigned char *old_sha1, |
462 | const unsigned char *new_sha1, | 447 | const unsigned char *new_sha1, |
463 | linediff_fn fn) | 448 | linediff_fn fn) |
464 | { | 449 | { |
465 | mmfile_t file1, file2; | 450 | mmfile_t file1, file2; |
466 | xpparam_t diff_params; | 451 | xpparam_t diff_params; |
467 | xdemitconf_t emit_params; | 452 | xdemitconf_t emit_params; |
468 | xdemitcb_t emit_cb; | 453 | xdemitcb_t emit_cb; |
469 | 454 | ||
470 | if (!load_mmfile(&file1, old_sha1) || !load_mmfile(&file2, new_sha1)) | 455 | if (!load_mmfile(&file1, old_sha1) || !load_mmfile(&file2, new_sha1)) |
471 | return 1; | 456 | return 1; |
472 | 457 | ||
473 | diff_params.flags = XDF_NEED_MINIMAL; | 458 | diff_params.flags = XDF_NEED_MINIMAL; |
474 | emit_params.ctxlen = 3; | 459 | emit_params.ctxlen = 3; |
475 | emit_params.flags = XDL_EMIT_FUNCNAMES; | 460 | emit_params.flags = XDL_EMIT_FUNCNAMES; |
476 | emit_params.find_func = NULL; | 461 | emit_params.find_func = NULL; |
477 | emit_cb.outf = filediff_cb; | 462 | emit_cb.outf = filediff_cb; |
478 | emit_cb.priv = fn; | 463 | emit_cb.priv = fn; |
479 | xdl_diff(&file1, &file2, &diff_params, &emit_params, &emit_cb); | 464 | xdl_diff(&file1, &file2, &diff_params, &emit_params, &emit_cb); |
480 | return 0; | 465 | return 0; |
481 | } | 466 | } |
482 | 467 | ||
483 | void cgit_diff_tree(const unsigned char *old_sha1, | 468 | void cgit_diff_tree(const unsigned char *old_sha1, |
484 | const unsigned char *new_sha1, | 469 | const unsigned char *new_sha1, |
485 | filepair_fn fn, const char *prefix) | 470 | filepair_fn fn, const char *prefix) |
486 | { | 471 | { |
487 | struct diff_options opt; | 472 | struct diff_options opt; |
488 | int ret; | 473 | int ret; |
489 | int prefixlen; | 474 | int prefixlen; |
490 | 475 | ||
491 | diff_setup(&opt); | 476 | diff_setup(&opt); |
492 | opt.output_format = DIFF_FORMAT_CALLBACK; | 477 | opt.output_format = DIFF_FORMAT_CALLBACK; |
493 | opt.detect_rename = 1; | 478 | opt.detect_rename = 1; |
494 | opt.rename_limit = cgit_renamelimit; | 479 | opt.rename_limit = cgit_renamelimit; |
495 | DIFF_OPT_SET(&opt, RECURSIVE); | 480 | DIFF_OPT_SET(&opt, RECURSIVE); |
496 | opt.format_callback = cgit_diff_tree_cb; | 481 | opt.format_callback = cgit_diff_tree_cb; |
497 | opt.format_callback_data = fn; | 482 | opt.format_callback_data = fn; |
498 | if (prefix) { | 483 | if (prefix) { |
499 | opt.nr_paths = 1; | 484 | opt.nr_paths = 1; |
500 | opt.paths = &prefix; | 485 | opt.paths = &prefix; |
501 | prefixlen = strlen(prefix); | 486 | prefixlen = strlen(prefix); |
502 | opt.pathlens = &prefixlen; | 487 | opt.pathlens = &prefixlen; |
503 | } | 488 | } |
504 | diff_setup_done(&opt); | 489 | diff_setup_done(&opt); |
505 | 490 | ||
506 | if (old_sha1 && !is_null_sha1(old_sha1)) | 491 | if (old_sha1 && !is_null_sha1(old_sha1)) |
507 | ret = diff_tree_sha1(old_sha1, new_sha1, "", &opt); | 492 | ret = diff_tree_sha1(old_sha1, new_sha1, "", &opt); |
508 | else | 493 | else |
509 | ret = diff_root_tree_sha1(new_sha1, "", &opt); | 494 | ret = diff_root_tree_sha1(new_sha1, "", &opt); |
510 | diffcore_std(&opt); | 495 | diffcore_std(&opt); |
511 | diff_flush(&opt); | 496 | diff_flush(&opt); |
512 | } | 497 | } |
513 | 498 | ||
514 | void cgit_diff_commit(struct commit *commit, filepair_fn fn) | 499 | void cgit_diff_commit(struct commit *commit, filepair_fn fn) |
515 | { | 500 | { |
516 | unsigned char *old_sha1 = NULL; | 501 | unsigned char *old_sha1 = NULL; |
517 | 502 | ||
518 | if (commit->parents) | 503 | if (commit->parents) |
519 | old_sha1 = commit->parents->item->object.sha1; | 504 | old_sha1 = commit->parents->item->object.sha1; |
520 | cgit_diff_tree(old_sha1, commit->object.sha1, fn, NULL); | 505 | cgit_diff_tree(old_sha1, commit->object.sha1, fn, NULL); |
521 | } | 506 | } |
diff --git a/ui-commit.c b/ui-commit.c index bd55a33..3b0919b 100644 --- a/ui-commit.c +++ b/ui-commit.c | |||
@@ -1,226 +1,226 @@ | |||
1 | /* ui-commit.c: generate commit view | 1 | /* ui-commit.c: generate commit view |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | static int files, slots; | 11 | static int files, slots; |
12 | static int total_adds, total_rems, max_changes; | 12 | static int total_adds, total_rems, max_changes; |
13 | static int lines_added, lines_removed; | 13 | static int lines_added, lines_removed; |
14 | static char *curr_rev; | 14 | static char *curr_rev; |
15 | 15 | ||
16 | static struct fileinfo { | 16 | static struct fileinfo { |
17 | char status; | 17 | char status; |
18 | unsigned char old_sha1[20]; | 18 | unsigned char old_sha1[20]; |
19 | unsigned char new_sha1[20]; | 19 | unsigned char new_sha1[20]; |
20 | unsigned short old_mode; | 20 | unsigned short old_mode; |
21 | unsigned short new_mode; | 21 | unsigned short new_mode; |
22 | char *old_path; | 22 | char *old_path; |
23 | char *new_path; | 23 | char *new_path; |
24 | unsigned int added; | 24 | unsigned int added; |
25 | unsigned int removed; | 25 | unsigned int removed; |
26 | } *items; | 26 | } *items; |
27 | 27 | ||
28 | 28 | ||
29 | void print_fileinfo(struct fileinfo *info) | 29 | void print_fileinfo(struct fileinfo *info) |
30 | { | 30 | { |
31 | char *class; | 31 | char *class; |
32 | 32 | ||
33 | switch (info->status) { | 33 | switch (info->status) { |
34 | case DIFF_STATUS_ADDED: | 34 | case DIFF_STATUS_ADDED: |
35 | class = "add"; | 35 | class = "add"; |
36 | break; | 36 | break; |
37 | case DIFF_STATUS_COPIED: | 37 | case DIFF_STATUS_COPIED: |
38 | class = "cpy"; | 38 | class = "cpy"; |
39 | break; | 39 | break; |
40 | case DIFF_STATUS_DELETED: | 40 | case DIFF_STATUS_DELETED: |
41 | class = "del"; | 41 | class = "del"; |
42 | break; | 42 | break; |
43 | case DIFF_STATUS_MODIFIED: | 43 | case DIFF_STATUS_MODIFIED: |
44 | class = "upd"; | 44 | class = "upd"; |
45 | break; | 45 | break; |
46 | case DIFF_STATUS_RENAMED: | 46 | case DIFF_STATUS_RENAMED: |
47 | class = "mov"; | 47 | class = "mov"; |
48 | break; | 48 | break; |
49 | case DIFF_STATUS_TYPE_CHANGED: | 49 | case DIFF_STATUS_TYPE_CHANGED: |
50 | class = "typ"; | 50 | class = "typ"; |
51 | break; | 51 | break; |
52 | case DIFF_STATUS_UNKNOWN: | 52 | case DIFF_STATUS_UNKNOWN: |
53 | class = "unk"; | 53 | class = "unk"; |
54 | break; | 54 | break; |
55 | case DIFF_STATUS_UNMERGED: | 55 | case DIFF_STATUS_UNMERGED: |
56 | class = "stg"; | 56 | class = "stg"; |
57 | break; | 57 | break; |
58 | default: | 58 | default: |
59 | die("bug: unhandled diff status %c", info->status); | 59 | die("bug: unhandled diff status %c", info->status); |
60 | } | 60 | } |
61 | 61 | ||
62 | html("<tr>"); | 62 | html("<tr>"); |
63 | htmlf("<td class='mode'>"); | 63 | htmlf("<td class='mode'>"); |
64 | if (is_null_sha1(info->new_sha1)) { | 64 | if (is_null_sha1(info->new_sha1)) { |
65 | html_filemode(info->old_mode); | 65 | html_filemode(info->old_mode); |
66 | } else { | 66 | } else { |
67 | html_filemode(info->new_mode); | 67 | html_filemode(info->new_mode); |
68 | } | 68 | } |
69 | 69 | ||
70 | if (info->old_mode != info->new_mode && | 70 | if (info->old_mode != info->new_mode && |
71 | !is_null_sha1(info->old_sha1) && | 71 | !is_null_sha1(info->old_sha1) && |
72 | !is_null_sha1(info->new_sha1)) { | 72 | !is_null_sha1(info->new_sha1)) { |
73 | html("<span class='modechange'>["); | 73 | html("<span class='modechange'>["); |
74 | html_filemode(info->old_mode); | 74 | html_filemode(info->old_mode); |
75 | html("]</span>"); | 75 | html("]</span>"); |
76 | } | 76 | } |
77 | htmlf("</td><td class='%s'>", class); | 77 | htmlf("</td><td class='%s'>", class); |
78 | cgit_diff_link(info->new_path, NULL, NULL, cgit_query_head, curr_rev, | 78 | cgit_diff_link(info->new_path, NULL, NULL, ctx.qry.head, curr_rev, |
79 | NULL, info->new_path); | 79 | NULL, info->new_path); |
80 | if (info->status == DIFF_STATUS_COPIED || info->status == DIFF_STATUS_RENAMED) | 80 | if (info->status == DIFF_STATUS_COPIED || info->status == DIFF_STATUS_RENAMED) |
81 | htmlf(" (%s from %s)", | 81 | htmlf(" (%s from %s)", |
82 | info->status == DIFF_STATUS_COPIED ? "copied" : "renamed", | 82 | info->status == DIFF_STATUS_COPIED ? "copied" : "renamed", |
83 | info->old_path); | 83 | info->old_path); |
84 | html("</td><td class='right'>"); | 84 | html("</td><td class='right'>"); |
85 | htmlf("%d", info->added + info->removed); | 85 | htmlf("%d", info->added + info->removed); |
86 | html("</td><td class='graph'>"); | 86 | html("</td><td class='graph'>"); |
87 | htmlf("<table summary='file diffstat' width='%d%%'><tr>", (max_changes > 100 ? 100 : max_changes)); | 87 | htmlf("<table summary='file diffstat' width='%d%%'><tr>", (max_changes > 100 ? 100 : max_changes)); |
88 | htmlf("<td class='add' style='width: %.1f%%;'/>", | 88 | htmlf("<td class='add' style='width: %.1f%%;'/>", |
89 | info->added * 100.0 / max_changes); | 89 | info->added * 100.0 / max_changes); |
90 | htmlf("<td class='rem' style='width: %.1f%%;'/>", | 90 | htmlf("<td class='rem' style='width: %.1f%%;'/>", |
91 | info->removed * 100.0 / max_changes); | 91 | info->removed * 100.0 / max_changes); |
92 | htmlf("<td class='none' style='width: %.1f%%;'/>", | 92 | htmlf("<td class='none' style='width: %.1f%%;'/>", |
93 | (max_changes - info->removed - info->added) * 100.0 / max_changes); | 93 | (max_changes - info->removed - info->added) * 100.0 / max_changes); |
94 | html("</tr></table></td></tr>\n"); | 94 | html("</tr></table></td></tr>\n"); |
95 | } | 95 | } |
96 | 96 | ||
97 | void cgit_count_diff_lines(char *line, int len) | 97 | void cgit_count_diff_lines(char *line, int len) |
98 | { | 98 | { |
99 | if (line && (len > 0)) { | 99 | if (line && (len > 0)) { |
100 | if (line[0] == '+') | 100 | if (line[0] == '+') |
101 | lines_added++; | 101 | lines_added++; |
102 | else if (line[0] == '-') | 102 | else if (line[0] == '-') |
103 | lines_removed++; | 103 | lines_removed++; |
104 | } | 104 | } |
105 | } | 105 | } |
106 | 106 | ||
107 | void inspect_filepair(struct diff_filepair *pair) | 107 | void inspect_filepair(struct diff_filepair *pair) |
108 | { | 108 | { |
109 | files++; | 109 | files++; |
110 | lines_added = 0; | 110 | lines_added = 0; |
111 | lines_removed = 0; | 111 | lines_removed = 0; |
112 | cgit_diff_files(pair->one->sha1, pair->two->sha1, cgit_count_diff_lines); | 112 | cgit_diff_files(pair->one->sha1, pair->two->sha1, cgit_count_diff_lines); |
113 | if (files >= slots) { | 113 | if (files >= slots) { |
114 | if (slots == 0) | 114 | if (slots == 0) |
115 | slots = 4; | 115 | slots = 4; |
116 | else | 116 | else |
117 | slots = slots * 2; | 117 | slots = slots * 2; |
118 | items = xrealloc(items, slots * sizeof(struct fileinfo)); | 118 | items = xrealloc(items, slots * sizeof(struct fileinfo)); |
119 | } | 119 | } |
120 | items[files-1].status = pair->status; | 120 | items[files-1].status = pair->status; |
121 | hashcpy(items[files-1].old_sha1, pair->one->sha1); | 121 | hashcpy(items[files-1].old_sha1, pair->one->sha1); |
122 | hashcpy(items[files-1].new_sha1, pair->two->sha1); | 122 | hashcpy(items[files-1].new_sha1, pair->two->sha1); |
123 | items[files-1].old_mode = pair->one->mode; | 123 | items[files-1].old_mode = pair->one->mode; |
124 | items[files-1].new_mode = pair->two->mode; | 124 | items[files-1].new_mode = pair->two->mode; |
125 | items[files-1].old_path = xstrdup(pair->one->path); | 125 | items[files-1].old_path = xstrdup(pair->one->path); |
126 | items[files-1].new_path = xstrdup(pair->two->path); | 126 | items[files-1].new_path = xstrdup(pair->two->path); |
127 | items[files-1].added = lines_added; | 127 | items[files-1].added = lines_added; |
128 | items[files-1].removed = lines_removed; | 128 | items[files-1].removed = lines_removed; |
129 | if (lines_added + lines_removed > max_changes) | 129 | if (lines_added + lines_removed > max_changes) |
130 | max_changes = lines_added + lines_removed; | 130 | max_changes = lines_added + lines_removed; |
131 | total_adds += lines_added; | 131 | total_adds += lines_added; |
132 | total_rems += lines_removed; | 132 | total_rems += lines_removed; |
133 | } | 133 | } |
134 | 134 | ||
135 | 135 | ||
136 | void cgit_print_commit(char *hex) | 136 | void cgit_print_commit(char *hex) |
137 | { | 137 | { |
138 | struct commit *commit, *parent; | 138 | struct commit *commit, *parent; |
139 | struct commitinfo *info; | 139 | struct commitinfo *info; |
140 | struct commit_list *p; | 140 | struct commit_list *p; |
141 | unsigned char sha1[20]; | 141 | unsigned char sha1[20]; |
142 | char *tmp; | 142 | char *tmp; |
143 | int i; | 143 | int i; |
144 | 144 | ||
145 | if (!hex) | 145 | if (!hex) |
146 | hex = cgit_query_head; | 146 | hex = ctx.qry.head; |
147 | curr_rev = hex; | 147 | curr_rev = hex; |
148 | 148 | ||
149 | if (get_sha1(hex, sha1)) { | 149 | if (get_sha1(hex, sha1)) { |
150 | cgit_print_error(fmt("Bad object id: %s", hex)); | 150 | cgit_print_error(fmt("Bad object id: %s", hex)); |
151 | return; | 151 | return; |
152 | } | 152 | } |
153 | commit = lookup_commit_reference(sha1); | 153 | commit = lookup_commit_reference(sha1); |
154 | if (!commit) { | 154 | if (!commit) { |
155 | cgit_print_error(fmt("Bad commit reference: %s", hex)); | 155 | cgit_print_error(fmt("Bad commit reference: %s", hex)); |
156 | return; | 156 | return; |
157 | } | 157 | } |
158 | info = cgit_parse_commit(commit); | 158 | info = cgit_parse_commit(commit); |
159 | 159 | ||
160 | html("<table summary='commit info' class='commit-info'>\n"); | 160 | html("<table summary='commit info' class='commit-info'>\n"); |
161 | html("<tr><th>author</th><td>"); | 161 | html("<tr><th>author</th><td>"); |
162 | html_txt(info->author); | 162 | html_txt(info->author); |
163 | html(" "); | 163 | html(" "); |
164 | html_txt(info->author_email); | 164 | html_txt(info->author_email); |
165 | html("</td><td class='right'>"); | 165 | html("</td><td class='right'>"); |
166 | cgit_print_date(info->author_date, FMT_LONGDATE); | 166 | cgit_print_date(info->author_date, FMT_LONGDATE); |
167 | html("</td></tr>\n"); | 167 | html("</td></tr>\n"); |
168 | html("<tr><th>committer</th><td>"); | 168 | html("<tr><th>committer</th><td>"); |
169 | html_txt(info->committer); | 169 | html_txt(info->committer); |
170 | html(" "); | 170 | html(" "); |
171 | html_txt(info->committer_email); | 171 | html_txt(info->committer_email); |
172 | html("</td><td class='right'>"); | 172 | html("</td><td class='right'>"); |
173 | cgit_print_date(info->committer_date, FMT_LONGDATE); | 173 | cgit_print_date(info->committer_date, FMT_LONGDATE); |
174 | html("</td></tr>\n"); | 174 | html("</td></tr>\n"); |
175 | html("<tr><th>tree</th><td colspan='2' class='sha1'>"); | 175 | html("<tr><th>tree</th><td colspan='2' class='sha1'>"); |
176 | tmp = xstrdup(hex); | 176 | tmp = xstrdup(hex); |
177 | cgit_tree_link(sha1_to_hex(commit->tree->object.sha1), NULL, NULL, | 177 | cgit_tree_link(sha1_to_hex(commit->tree->object.sha1), NULL, NULL, |
178 | cgit_query_head, tmp, NULL); | 178 | ctx.qry.head, tmp, NULL); |
179 | html("</td></tr>\n"); | 179 | html("</td></tr>\n"); |
180 | for (p = commit->parents; p ; p = p->next) { | 180 | for (p = commit->parents; p ; p = p->next) { |
181 | parent = lookup_commit_reference(p->item->object.sha1); | 181 | parent = lookup_commit_reference(p->item->object.sha1); |
182 | if (!parent) { | 182 | if (!parent) { |
183 | html("<tr><td colspan='3'>"); | 183 | html("<tr><td colspan='3'>"); |
184 | cgit_print_error("Error reading parent commit"); | 184 | cgit_print_error("Error reading parent commit"); |
185 | html("</td></tr>"); | 185 | html("</td></tr>"); |
186 | continue; | 186 | continue; |
187 | } | 187 | } |
188 | html("<tr><th>parent</th>" | 188 | html("<tr><th>parent</th>" |
189 | "<td colspan='2' class='sha1'>"); | 189 | "<td colspan='2' class='sha1'>"); |
190 | cgit_commit_link(sha1_to_hex(p->item->object.sha1), NULL, NULL, | 190 | cgit_commit_link(sha1_to_hex(p->item->object.sha1), NULL, NULL, |
191 | cgit_query_head, sha1_to_hex(p->item->object.sha1)); | 191 | ctx.qry.head, sha1_to_hex(p->item->object.sha1)); |
192 | html(" ("); | 192 | html(" ("); |
193 | cgit_diff_link("diff", NULL, NULL, cgit_query_head, hex, | 193 | cgit_diff_link("diff", NULL, NULL, ctx.qry.head, hex, |
194 | sha1_to_hex(p->item->object.sha1), NULL); | 194 | sha1_to_hex(p->item->object.sha1), NULL); |
195 | html(")</td></tr>"); | 195 | html(")</td></tr>"); |
196 | } | 196 | } |
197 | if (cgit_repo->snapshots) { | 197 | if (cgit_repo->snapshots) { |
198 | html("<tr><th>download</th><td colspan='2' class='sha1'>"); | 198 | html("<tr><th>download</th><td colspan='2' class='sha1'>"); |
199 | cgit_print_snapshot_links(cgit_query_repo, cgit_query_head, | 199 | cgit_print_snapshot_links(ctx.qry.repo, ctx.qry.head, |
200 | hex, cgit_repo->snapshots); | 200 | hex, cgit_repo->snapshots); |
201 | html("</td></tr>"); | 201 | html("</td></tr>"); |
202 | } | 202 | } |
203 | html("</table>\n"); | 203 | html("</table>\n"); |
204 | html("<div class='commit-subject'>"); | 204 | html("<div class='commit-subject'>"); |
205 | html_txt(info->subject); | 205 | html_txt(info->subject); |
206 | html("</div>"); | 206 | html("</div>"); |
207 | html("<div class='commit-msg'>"); | 207 | html("<div class='commit-msg'>"); |
208 | html_txt(info->msg); | 208 | html_txt(info->msg); |
209 | html("</div>"); | 209 | html("</div>"); |
210 | if (!(commit->parents && commit->parents->next && commit->parents->next->next)) { | 210 | if (!(commit->parents && commit->parents->next && commit->parents->next->next)) { |
211 | html("<div class='diffstat-header'>Diffstat</div>"); | 211 | html("<div class='diffstat-header'>Diffstat</div>"); |
212 | html("<table summary='diffstat' class='diffstat'>"); | 212 | html("<table summary='diffstat' class='diffstat'>"); |
213 | max_changes = 0; | 213 | max_changes = 0; |
214 | cgit_diff_commit(commit, inspect_filepair); | 214 | cgit_diff_commit(commit, inspect_filepair); |
215 | for(i = 0; i<files; i++) | 215 | for(i = 0; i<files; i++) |
216 | print_fileinfo(&items[i]); | 216 | print_fileinfo(&items[i]); |
217 | html("</table>"); | 217 | html("</table>"); |
218 | html("<div class='diffstat-summary'>"); | 218 | html("<div class='diffstat-summary'>"); |
219 | htmlf("%d files changed, %d insertions, %d deletions (", | 219 | htmlf("%d files changed, %d insertions, %d deletions (", |
220 | files, total_adds, total_rems); | 220 | files, total_adds, total_rems); |
221 | cgit_diff_link("show diff", NULL, NULL, cgit_query_head, hex, | 221 | cgit_diff_link("show diff", NULL, NULL, ctx.qry.head, hex, |
222 | NULL, NULL); | 222 | NULL, NULL); |
223 | html(")</div>"); | 223 | html(")</div>"); |
224 | } | 224 | } |
225 | cgit_free_commitinfo(info); | 225 | cgit_free_commitinfo(info); |
226 | } | 226 | } |
@@ -1,149 +1,149 @@ | |||
1 | /* ui-diff.c: show diff between two blobs | 1 | /* ui-diff.c: show diff between two blobs |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | 11 | ||
12 | unsigned char old_rev_sha1[20]; | 12 | unsigned char old_rev_sha1[20]; |
13 | unsigned char new_rev_sha1[20]; | 13 | unsigned char new_rev_sha1[20]; |
14 | 14 | ||
15 | /* | 15 | /* |
16 | * print a single line returned from xdiff | 16 | * print a single line returned from xdiff |
17 | */ | 17 | */ |
18 | static void print_line(char *line, int len) | 18 | static void print_line(char *line, int len) |
19 | { | 19 | { |
20 | char *class = "ctx"; | 20 | char *class = "ctx"; |
21 | char c = line[len-1]; | 21 | char c = line[len-1]; |
22 | 22 | ||
23 | if (line[0] == '+') | 23 | if (line[0] == '+') |
24 | class = "add"; | 24 | class = "add"; |
25 | else if (line[0] == '-') | 25 | else if (line[0] == '-') |
26 | class = "del"; | 26 | class = "del"; |
27 | else if (line[0] == '@') | 27 | else if (line[0] == '@') |
28 | class = "hunk"; | 28 | class = "hunk"; |
29 | 29 | ||
30 | htmlf("<div class='%s'>", class); | 30 | htmlf("<div class='%s'>", class); |
31 | line[len-1] = '\0'; | 31 | line[len-1] = '\0'; |
32 | html_txt(line); | 32 | html_txt(line); |
33 | html("</div>"); | 33 | html("</div>"); |
34 | line[len-1] = c; | 34 | line[len-1] = c; |
35 | } | 35 | } |
36 | 36 | ||
37 | static void header(unsigned char *sha1, char *path1, int mode1, | 37 | static void header(unsigned char *sha1, char *path1, int mode1, |
38 | unsigned char *sha2, char *path2, int mode2) | 38 | unsigned char *sha2, char *path2, int mode2) |
39 | { | 39 | { |
40 | char *abbrev1, *abbrev2; | 40 | char *abbrev1, *abbrev2; |
41 | int subproject; | 41 | int subproject; |
42 | 42 | ||
43 | subproject = (S_ISGITLINK(mode1) || S_ISGITLINK(mode2)); | 43 | subproject = (S_ISGITLINK(mode1) || S_ISGITLINK(mode2)); |
44 | html("<div class='head'>"); | 44 | html("<div class='head'>"); |
45 | html("diff --git a/"); | 45 | html("diff --git a/"); |
46 | html_txt(path1); | 46 | html_txt(path1); |
47 | html(" b/"); | 47 | html(" b/"); |
48 | html_txt(path2); | 48 | html_txt(path2); |
49 | 49 | ||
50 | if (is_null_sha1(sha1)) | 50 | if (is_null_sha1(sha1)) |
51 | path1 = "dev/null"; | 51 | path1 = "dev/null"; |
52 | if (is_null_sha1(sha2)) | 52 | if (is_null_sha1(sha2)) |
53 | path2 = "dev/null"; | 53 | path2 = "dev/null"; |
54 | 54 | ||
55 | if (mode1 == 0) | 55 | if (mode1 == 0) |
56 | htmlf("<br/>new file mode %.6o", mode2); | 56 | htmlf("<br/>new file mode %.6o", mode2); |
57 | 57 | ||
58 | if (mode2 == 0) | 58 | if (mode2 == 0) |
59 | htmlf("<br/>deleted file mode %.6o", mode1); | 59 | htmlf("<br/>deleted file mode %.6o", mode1); |
60 | 60 | ||
61 | if (!subproject) { | 61 | if (!subproject) { |
62 | abbrev1 = xstrdup(find_unique_abbrev(sha1, DEFAULT_ABBREV)); | 62 | abbrev1 = xstrdup(find_unique_abbrev(sha1, DEFAULT_ABBREV)); |
63 | abbrev2 = xstrdup(find_unique_abbrev(sha2, DEFAULT_ABBREV)); | 63 | abbrev2 = xstrdup(find_unique_abbrev(sha2, DEFAULT_ABBREV)); |
64 | htmlf("<br/>index %s..%s", abbrev1, abbrev2); | 64 | htmlf("<br/>index %s..%s", abbrev1, abbrev2); |
65 | free(abbrev1); | 65 | free(abbrev1); |
66 | free(abbrev2); | 66 | free(abbrev2); |
67 | if (mode1 != 0 && mode2 != 0) { | 67 | if (mode1 != 0 && mode2 != 0) { |
68 | htmlf(" %.6o", mode1); | 68 | htmlf(" %.6o", mode1); |
69 | if (mode2 != mode1) | 69 | if (mode2 != mode1) |
70 | htmlf("..%.6o", mode2); | 70 | htmlf("..%.6o", mode2); |
71 | } | 71 | } |
72 | html("<br/>--- a/"); | 72 | html("<br/>--- a/"); |
73 | if (mode1 != 0) | 73 | if (mode1 != 0) |
74 | cgit_tree_link(path1, NULL, NULL, cgit_query_head, | 74 | cgit_tree_link(path1, NULL, NULL, ctx.qry.head, |
75 | sha1_to_hex(old_rev_sha1), path1); | 75 | sha1_to_hex(old_rev_sha1), path1); |
76 | else | 76 | else |
77 | html_txt(path1); | 77 | html_txt(path1); |
78 | html("<br/>+++ b/"); | 78 | html("<br/>+++ b/"); |
79 | if (mode2 != 0) | 79 | if (mode2 != 0) |
80 | cgit_tree_link(path2, NULL, NULL, cgit_query_head, | 80 | cgit_tree_link(path2, NULL, NULL, ctx.qry.head, |
81 | sha1_to_hex(new_rev_sha1), path2); | 81 | sha1_to_hex(new_rev_sha1), path2); |
82 | else | 82 | else |
83 | html_txt(path2); | 83 | html_txt(path2); |
84 | } | 84 | } |
85 | html("</div>"); | 85 | html("</div>"); |
86 | } | 86 | } |
87 | 87 | ||
88 | static void filepair_cb(struct diff_filepair *pair) | 88 | static void filepair_cb(struct diff_filepair *pair) |
89 | { | 89 | { |
90 | header(pair->one->sha1, pair->one->path, pair->one->mode, | 90 | header(pair->one->sha1, pair->one->path, pair->one->mode, |
91 | pair->two->sha1, pair->two->path, pair->two->mode); | 91 | pair->two->sha1, pair->two->path, pair->two->mode); |
92 | if (S_ISGITLINK(pair->one->mode) || S_ISGITLINK(pair->two->mode)) { | 92 | if (S_ISGITLINK(pair->one->mode) || S_ISGITLINK(pair->two->mode)) { |
93 | if (S_ISGITLINK(pair->one->mode)) | 93 | if (S_ISGITLINK(pair->one->mode)) |
94 | print_line(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52); | 94 | print_line(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52); |
95 | if (S_ISGITLINK(pair->two->mode)) | 95 | if (S_ISGITLINK(pair->two->mode)) |
96 | print_line(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52); | 96 | print_line(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52); |
97 | return; | 97 | return; |
98 | } | 98 | } |
99 | if (cgit_diff_files(pair->one->sha1, pair->two->sha1, print_line)) | 99 | if (cgit_diff_files(pair->one->sha1, pair->two->sha1, print_line)) |
100 | cgit_print_error("Error running diff"); | 100 | cgit_print_error("Error running diff"); |
101 | } | 101 | } |
102 | 102 | ||
103 | void cgit_print_diff(const char *new_rev, const char *old_rev, const char *prefix) | 103 | void cgit_print_diff(const char *new_rev, const char *old_rev, const char *prefix) |
104 | { | 104 | { |
105 | enum object_type type; | 105 | enum object_type type; |
106 | unsigned long size; | 106 | unsigned long size; |
107 | struct commit *commit, *commit2; | 107 | struct commit *commit, *commit2; |
108 | 108 | ||
109 | if (!new_rev) | 109 | if (!new_rev) |
110 | new_rev = cgit_query_head; | 110 | new_rev = ctx.qry.head; |
111 | get_sha1(new_rev, new_rev_sha1); | 111 | get_sha1(new_rev, new_rev_sha1); |
112 | type = sha1_object_info(new_rev_sha1, &size); | 112 | type = sha1_object_info(new_rev_sha1, &size); |
113 | if (type == OBJ_BAD) { | 113 | if (type == OBJ_BAD) { |
114 | cgit_print_error(fmt("Bad object name: %s", new_rev)); | 114 | cgit_print_error(fmt("Bad object name: %s", new_rev)); |
115 | return; | 115 | return; |
116 | } | 116 | } |
117 | if (type != OBJ_COMMIT) { | 117 | if (type != OBJ_COMMIT) { |
118 | cgit_print_error(fmt("Unhandled object type: %s", | 118 | cgit_print_error(fmt("Unhandled object type: %s", |
119 | typename(type))); | 119 | typename(type))); |
120 | return; | 120 | return; |
121 | } | 121 | } |
122 | 122 | ||
123 | commit = lookup_commit_reference(new_rev_sha1); | 123 | commit = lookup_commit_reference(new_rev_sha1); |
124 | if (!commit || parse_commit(commit)) | 124 | if (!commit || parse_commit(commit)) |
125 | cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(new_rev_sha1))); | 125 | cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(new_rev_sha1))); |
126 | 126 | ||
127 | if (old_rev) | 127 | if (old_rev) |
128 | get_sha1(old_rev, old_rev_sha1); | 128 | get_sha1(old_rev, old_rev_sha1); |
129 | else if (commit->parents && commit->parents->item) | 129 | else if (commit->parents && commit->parents->item) |
130 | hashcpy(old_rev_sha1, commit->parents->item->object.sha1); | 130 | hashcpy(old_rev_sha1, commit->parents->item->object.sha1); |
131 | else | 131 | else |
132 | hashclr(old_rev_sha1); | 132 | hashclr(old_rev_sha1); |
133 | 133 | ||
134 | if (!is_null_sha1(old_rev_sha1)) { | 134 | if (!is_null_sha1(old_rev_sha1)) { |
135 | type = sha1_object_info(old_rev_sha1, &size); | 135 | type = sha1_object_info(old_rev_sha1, &size); |
136 | if (type == OBJ_BAD) { | 136 | if (type == OBJ_BAD) { |
137 | cgit_print_error(fmt("Bad object name: %s", sha1_to_hex(old_rev_sha1))); | 137 | cgit_print_error(fmt("Bad object name: %s", sha1_to_hex(old_rev_sha1))); |
138 | return; | 138 | return; |
139 | } | 139 | } |
140 | commit2 = lookup_commit_reference(old_rev_sha1); | 140 | commit2 = lookup_commit_reference(old_rev_sha1); |
141 | if (!commit2 || parse_commit(commit2)) | 141 | if (!commit2 || parse_commit(commit2)) |
142 | cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(old_rev_sha1))); | 142 | cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(old_rev_sha1))); |
143 | } | 143 | } |
144 | html("<table summary='diff' class='diff'>"); | 144 | html("<table summary='diff' class='diff'>"); |
145 | html("<tr><td>"); | 145 | html("<tr><td>"); |
146 | cgit_diff_tree(old_rev_sha1, new_rev_sha1, filepair_cb, prefix); | 146 | cgit_diff_tree(old_rev_sha1, new_rev_sha1, filepair_cb, prefix); |
147 | html("</td></tr>"); | 147 | html("</td></tr>"); |
148 | html("</table>"); | 148 | html("</table>"); |
149 | } | 149 | } |
@@ -1,140 +1,140 @@ | |||
1 | /* ui-log.c: functions for log output | 1 | /* ui-log.c: functions for log output |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | int files, add_lines, rem_lines; | 11 | int files, add_lines, rem_lines; |
12 | 12 | ||
13 | void count_lines(char *line, int size) | 13 | void count_lines(char *line, int size) |
14 | { | 14 | { |
15 | if (size <= 0) | 15 | if (size <= 0) |
16 | return; | 16 | return; |
17 | 17 | ||
18 | if (line[0] == '+') | 18 | if (line[0] == '+') |
19 | add_lines++; | 19 | add_lines++; |
20 | 20 | ||
21 | else if (line[0] == '-') | 21 | else if (line[0] == '-') |
22 | rem_lines++; | 22 | rem_lines++; |
23 | } | 23 | } |
24 | 24 | ||
25 | void inspect_files(struct diff_filepair *pair) | 25 | void inspect_files(struct diff_filepair *pair) |
26 | { | 26 | { |
27 | files++; | 27 | files++; |
28 | if (cgit_repo->enable_log_linecount) | 28 | if (cgit_repo->enable_log_linecount) |
29 | cgit_diff_files(pair->one->sha1, pair->two->sha1, count_lines); | 29 | cgit_diff_files(pair->one->sha1, pair->two->sha1, count_lines); |
30 | } | 30 | } |
31 | 31 | ||
32 | void print_commit(struct commit *commit) | 32 | void print_commit(struct commit *commit) |
33 | { | 33 | { |
34 | struct commitinfo *info; | 34 | struct commitinfo *info; |
35 | 35 | ||
36 | info = cgit_parse_commit(commit); | 36 | info = cgit_parse_commit(commit); |
37 | html("<tr><td>"); | 37 | html("<tr><td>"); |
38 | cgit_print_age(commit->date, TM_WEEK * 2, FMT_SHORTDATE); | 38 | cgit_print_age(commit->date, TM_WEEK * 2, FMT_SHORTDATE); |
39 | html("</td><td>"); | 39 | html("</td><td>"); |
40 | cgit_commit_link(info->subject, NULL, NULL, cgit_query_head, | 40 | cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head, |
41 | sha1_to_hex(commit->object.sha1)); | 41 | sha1_to_hex(commit->object.sha1)); |
42 | if (cgit_repo->enable_log_filecount) { | 42 | if (cgit_repo->enable_log_filecount) { |
43 | files = 0; | 43 | files = 0; |
44 | add_lines = 0; | 44 | add_lines = 0; |
45 | rem_lines = 0; | 45 | rem_lines = 0; |
46 | cgit_diff_commit(commit, inspect_files); | 46 | cgit_diff_commit(commit, inspect_files); |
47 | html("</td><td class='right'>"); | 47 | html("</td><td class='right'>"); |
48 | htmlf("%d", files); | 48 | htmlf("%d", files); |
49 | if (cgit_repo->enable_log_linecount) { | 49 | if (cgit_repo->enable_log_linecount) { |
50 | html("</td><td class='right'>"); | 50 | html("</td><td class='right'>"); |
51 | htmlf("-%d/+%d", rem_lines, add_lines); | 51 | htmlf("-%d/+%d", rem_lines, add_lines); |
52 | } | 52 | } |
53 | } | 53 | } |
54 | html("</td><td>"); | 54 | html("</td><td>"); |
55 | html_txt(info->author); | 55 | html_txt(info->author); |
56 | html("</td></tr>\n"); | 56 | html("</td></tr>\n"); |
57 | cgit_free_commitinfo(info); | 57 | cgit_free_commitinfo(info); |
58 | } | 58 | } |
59 | 59 | ||
60 | 60 | ||
61 | void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern, char *path, int pager) | 61 | void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern, char *path, int pager) |
62 | { | 62 | { |
63 | struct rev_info rev; | 63 | struct rev_info rev; |
64 | struct commit *commit; | 64 | struct commit *commit; |
65 | const char *argv[] = {NULL, tip, NULL, NULL, NULL}; | 65 | const char *argv[] = {NULL, tip, NULL, NULL, NULL}; |
66 | int argc = 2; | 66 | int argc = 2; |
67 | int i; | 67 | int i; |
68 | 68 | ||
69 | if (!tip) | 69 | if (!tip) |
70 | argv[1] = cgit_query_head; | 70 | argv[1] = ctx.qry.head; |
71 | 71 | ||
72 | if (grep && pattern && (!strcmp(grep, "grep") || | 72 | if (grep && pattern && (!strcmp(grep, "grep") || |
73 | !strcmp(grep, "author") || | 73 | !strcmp(grep, "author") || |
74 | !strcmp(grep, "committer"))) | 74 | !strcmp(grep, "committer"))) |
75 | argv[argc++] = fmt("--%s=%s", grep, pattern); | 75 | argv[argc++] = fmt("--%s=%s", grep, pattern); |
76 | 76 | ||
77 | if (path) { | 77 | if (path) { |
78 | argv[argc++] = "--"; | 78 | argv[argc++] = "--"; |
79 | argv[argc++] = path; | 79 | argv[argc++] = path; |
80 | } | 80 | } |
81 | init_revisions(&rev, NULL); | 81 | init_revisions(&rev, NULL); |
82 | rev.abbrev = DEFAULT_ABBREV; | 82 | rev.abbrev = DEFAULT_ABBREV; |
83 | rev.commit_format = CMIT_FMT_DEFAULT; | 83 | rev.commit_format = CMIT_FMT_DEFAULT; |
84 | rev.verbose_header = 1; | 84 | rev.verbose_header = 1; |
85 | rev.show_root_diff = 0; | 85 | rev.show_root_diff = 0; |
86 | setup_revisions(argc, argv, &rev, NULL); | 86 | setup_revisions(argc, argv, &rev, NULL); |
87 | if (rev.grep_filter) { | 87 | if (rev.grep_filter) { |
88 | rev.grep_filter->regflags |= REG_ICASE; | 88 | rev.grep_filter->regflags |= REG_ICASE; |
89 | compile_grep_patterns(rev.grep_filter); | 89 | compile_grep_patterns(rev.grep_filter); |
90 | } | 90 | } |
91 | prepare_revision_walk(&rev); | 91 | prepare_revision_walk(&rev); |
92 | 92 | ||
93 | html("<table summary='log' class='list nowrap'>"); | 93 | html("<table summary='log' class='list nowrap'>"); |
94 | html("<tr class='nohover'><th class='left'>Age</th>" | 94 | html("<tr class='nohover'><th class='left'>Age</th>" |
95 | "<th class='left'>Message</th>"); | 95 | "<th class='left'>Message</th>"); |
96 | 96 | ||
97 | if (cgit_repo->enable_log_filecount) { | 97 | if (cgit_repo->enable_log_filecount) { |
98 | html("<th class='right'>Files</th>"); | 98 | html("<th class='right'>Files</th>"); |
99 | if (cgit_repo->enable_log_linecount) | 99 | if (cgit_repo->enable_log_linecount) |
100 | html("<th class='right'>Lines</th>"); | 100 | html("<th class='right'>Lines</th>"); |
101 | } | 101 | } |
102 | html("<th class='left'>Author</th></tr>\n"); | 102 | html("<th class='left'>Author</th></tr>\n"); |
103 | 103 | ||
104 | if (ofs<0) | 104 | if (ofs<0) |
105 | ofs = 0; | 105 | ofs = 0; |
106 | 106 | ||
107 | for (i = 0; i < ofs && (commit = get_revision(&rev)) != NULL; i++) { | 107 | for (i = 0; i < ofs && (commit = get_revision(&rev)) != NULL; i++) { |
108 | free(commit->buffer); | 108 | free(commit->buffer); |
109 | commit->buffer = NULL; | 109 | commit->buffer = NULL; |
110 | free_commit_list(commit->parents); | 110 | free_commit_list(commit->parents); |
111 | commit->parents = NULL; | 111 | commit->parents = NULL; |
112 | } | 112 | } |
113 | 113 | ||
114 | for (i = 0; i < cnt && (commit = get_revision(&rev)) != NULL; i++) { | 114 | for (i = 0; i < cnt && (commit = get_revision(&rev)) != NULL; i++) { |
115 | print_commit(commit); | 115 | print_commit(commit); |
116 | free(commit->buffer); | 116 | free(commit->buffer); |
117 | commit->buffer = NULL; | 117 | commit->buffer = NULL; |
118 | free_commit_list(commit->parents); | 118 | free_commit_list(commit->parents); |
119 | commit->parents = NULL; | 119 | commit->parents = NULL; |
120 | } | 120 | } |
121 | html("</table>\n"); | 121 | html("</table>\n"); |
122 | 122 | ||
123 | if (pager) { | 123 | if (pager) { |
124 | html("<div class='pager'>"); | 124 | html("<div class='pager'>"); |
125 | if (ofs > 0) { | 125 | if (ofs > 0) { |
126 | cgit_log_link("[prev]", NULL, NULL, cgit_query_head, | 126 | cgit_log_link("[prev]", NULL, NULL, ctx.qry.head, |
127 | cgit_query_sha1, cgit_query_path, | 127 | ctx.qry.sha1, ctx.qry.path, |
128 | ofs - cnt, cgit_query_grep, | 128 | ofs - cnt, ctx.qry.grep, |
129 | cgit_query_search); | 129 | ctx.qry.search); |
130 | html(" "); | 130 | html(" "); |
131 | } | 131 | } |
132 | if ((commit = get_revision(&rev)) != NULL) { | 132 | if ((commit = get_revision(&rev)) != NULL) { |
133 | cgit_log_link("[next]", NULL, NULL, cgit_query_head, | 133 | cgit_log_link("[next]", NULL, NULL, ctx.qry.head, |
134 | cgit_query_sha1, cgit_query_path, | 134 | ctx.qry.sha1, ctx.qry.path, |
135 | ofs + cnt, cgit_query_grep, | 135 | ofs + cnt, ctx.qry.grep, |
136 | cgit_query_search); | 136 | ctx.qry.search); |
137 | } | 137 | } |
138 | html("</div>"); | 138 | html("</div>"); |
139 | } | 139 | } |
140 | } | 140 | } |
@@ -1,110 +1,110 @@ | |||
1 | /* ui-patch.c: generate patch view | 1 | /* ui-patch.c: generate patch view |
2 | * | 2 | * |
3 | * Copyright (C) 2007 Lars Hjemli | 3 | * Copyright (C) 2007 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | static void print_line(char *line, int len) | 11 | static void print_line(char *line, int len) |
12 | { | 12 | { |
13 | char c = line[len-1]; | 13 | char c = line[len-1]; |
14 | 14 | ||
15 | line[len-1] = '\0'; | 15 | line[len-1] = '\0'; |
16 | htmlf("%s\n", line); | 16 | htmlf("%s\n", line); |
17 | line[len-1] = c; | 17 | line[len-1] = c; |
18 | } | 18 | } |
19 | 19 | ||
20 | static void header(unsigned char *sha1, char *path1, int mode1, | 20 | static void header(unsigned char *sha1, char *path1, int mode1, |
21 | unsigned char *sha2, char *path2, int mode2) | 21 | unsigned char *sha2, char *path2, int mode2) |
22 | { | 22 | { |
23 | char *abbrev1, *abbrev2; | 23 | char *abbrev1, *abbrev2; |
24 | int subproject; | 24 | int subproject; |
25 | 25 | ||
26 | subproject = (S_ISGITLINK(mode1) || S_ISGITLINK(mode2)); | 26 | subproject = (S_ISGITLINK(mode1) || S_ISGITLINK(mode2)); |
27 | htmlf("diff --git a/%s b/%s\n", path1, path2); | 27 | htmlf("diff --git a/%s b/%s\n", path1, path2); |
28 | 28 | ||
29 | if (is_null_sha1(sha1)) | 29 | if (is_null_sha1(sha1)) |
30 | path1 = "dev/null"; | 30 | path1 = "dev/null"; |
31 | if (is_null_sha1(sha2)) | 31 | if (is_null_sha1(sha2)) |
32 | path2 = "dev/null"; | 32 | path2 = "dev/null"; |
33 | 33 | ||
34 | if (mode1 == 0) | 34 | if (mode1 == 0) |
35 | htmlf("new file mode %.6o\n", mode2); | 35 | htmlf("new file mode %.6o\n", mode2); |
36 | 36 | ||
37 | if (mode2 == 0) | 37 | if (mode2 == 0) |
38 | htmlf("deleted file mode %.6o\n", mode1); | 38 | htmlf("deleted file mode %.6o\n", mode1); |
39 | 39 | ||
40 | if (!subproject) { | 40 | if (!subproject) { |
41 | abbrev1 = xstrdup(find_unique_abbrev(sha1, DEFAULT_ABBREV)); | 41 | abbrev1 = xstrdup(find_unique_abbrev(sha1, DEFAULT_ABBREV)); |
42 | abbrev2 = xstrdup(find_unique_abbrev(sha2, DEFAULT_ABBREV)); | 42 | abbrev2 = xstrdup(find_unique_abbrev(sha2, DEFAULT_ABBREV)); |
43 | htmlf("index %s..%s", abbrev1, abbrev2); | 43 | htmlf("index %s..%s", abbrev1, abbrev2); |
44 | free(abbrev1); | 44 | free(abbrev1); |
45 | free(abbrev2); | 45 | free(abbrev2); |
46 | if (mode1 != 0 && mode2 != 0) { | 46 | if (mode1 != 0 && mode2 != 0) { |
47 | htmlf(" %.6o", mode1); | 47 | htmlf(" %.6o", mode1); |
48 | if (mode2 != mode1) | 48 | if (mode2 != mode1) |
49 | htmlf("..%.6o", mode2); | 49 | htmlf("..%.6o", mode2); |
50 | } | 50 | } |
51 | htmlf("\n--- a/%s\n", path1); | 51 | htmlf("\n--- a/%s\n", path1); |
52 | htmlf("+++ b/%s\n", path2); | 52 | htmlf("+++ b/%s\n", path2); |
53 | } | 53 | } |
54 | } | 54 | } |
55 | 55 | ||
56 | static void filepair_cb(struct diff_filepair *pair) | 56 | static void filepair_cb(struct diff_filepair *pair) |
57 | { | 57 | { |
58 | header(pair->one->sha1, pair->one->path, pair->one->mode, | 58 | header(pair->one->sha1, pair->one->path, pair->one->mode, |
59 | pair->two->sha1, pair->two->path, pair->two->mode); | 59 | pair->two->sha1, pair->two->path, pair->two->mode); |
60 | if (S_ISGITLINK(pair->one->mode) || S_ISGITLINK(pair->two->mode)) { | 60 | if (S_ISGITLINK(pair->one->mode) || S_ISGITLINK(pair->two->mode)) { |
61 | if (S_ISGITLINK(pair->one->mode)) | 61 | if (S_ISGITLINK(pair->one->mode)) |
62 | print_line(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52); | 62 | print_line(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52); |
63 | if (S_ISGITLINK(pair->two->mode)) | 63 | if (S_ISGITLINK(pair->two->mode)) |
64 | print_line(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52); | 64 | print_line(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52); |
65 | return; | 65 | return; |
66 | } | 66 | } |
67 | if (cgit_diff_files(pair->one->sha1, pair->two->sha1, print_line)) | 67 | if (cgit_diff_files(pair->one->sha1, pair->two->sha1, print_line)) |
68 | html("Error running diff"); | 68 | html("Error running diff"); |
69 | } | 69 | } |
70 | 70 | ||
71 | void cgit_print_patch(char *hex, struct cacheitem *item) | 71 | void cgit_print_patch(char *hex, struct cacheitem *item) |
72 | { | 72 | { |
73 | struct commit *commit; | 73 | struct commit *commit; |
74 | struct commitinfo *info; | 74 | struct commitinfo *info; |
75 | unsigned char sha1[20], old_sha1[20]; | 75 | unsigned char sha1[20], old_sha1[20]; |
76 | char *patchname; | 76 | char *patchname; |
77 | 77 | ||
78 | if (!hex) | 78 | if (!hex) |
79 | hex = cgit_query_head; | 79 | hex = ctx.qry.head; |
80 | 80 | ||
81 | if (get_sha1(hex, sha1)) { | 81 | if (get_sha1(hex, sha1)) { |
82 | cgit_print_error(fmt("Bad object id: %s", hex)); | 82 | cgit_print_error(fmt("Bad object id: %s", hex)); |
83 | return; | 83 | return; |
84 | } | 84 | } |
85 | commit = lookup_commit_reference(sha1); | 85 | commit = lookup_commit_reference(sha1); |
86 | if (!commit) { | 86 | if (!commit) { |
87 | cgit_print_error(fmt("Bad commit reference: %s", hex)); | 87 | cgit_print_error(fmt("Bad commit reference: %s", hex)); |
88 | return; | 88 | return; |
89 | } | 89 | } |
90 | info = cgit_parse_commit(commit); | 90 | info = cgit_parse_commit(commit); |
91 | hashcpy(old_sha1, commit->parents->item->object.sha1); | 91 | hashcpy(old_sha1, commit->parents->item->object.sha1); |
92 | 92 | ||
93 | patchname = fmt("%s.patch", sha1_to_hex(sha1)); | 93 | patchname = fmt("%s.patch", sha1_to_hex(sha1)); |
94 | cgit_print_snapshot_start("text/plain", patchname, item); | 94 | cgit_print_snapshot_start("text/plain", patchname, item); |
95 | htmlf("From %s Mon Sep 17 00:00:00 2001\n", sha1_to_hex(sha1)); | 95 | htmlf("From %s Mon Sep 17 00:00:00 2001\n", sha1_to_hex(sha1)); |
96 | htmlf("From: %s%s\n", info->author, info->author_email); | 96 | htmlf("From: %s%s\n", info->author, info->author_email); |
97 | html("Date: "); | 97 | html("Date: "); |
98 | cgit_print_date(info->author_date, "%a, %d %b %Y %H:%M:%S %z%n"); | 98 | cgit_print_date(info->author_date, "%a, %d %b %Y %H:%M:%S %z%n"); |
99 | htmlf("Subject: %s\n\n", info->subject); | 99 | htmlf("Subject: %s\n\n", info->subject); |
100 | if (info->msg && *info->msg) { | 100 | if (info->msg && *info->msg) { |
101 | htmlf("%s", info->msg); | 101 | htmlf("%s", info->msg); |
102 | if (info->msg[strlen(info->msg) - 1] != '\n') | 102 | if (info->msg[strlen(info->msg) - 1] != '\n') |
103 | html("\n"); | 103 | html("\n"); |
104 | } | 104 | } |
105 | html("---\n"); | 105 | html("---\n"); |
106 | cgit_diff_tree(old_sha1, sha1, filepair_cb, NULL); | 106 | cgit_diff_tree(old_sha1, sha1, filepair_cb, NULL); |
107 | html("--\n"); | 107 | html("--\n"); |
108 | htmlf("cgit %s\n", CGIT_VERSION); | 108 | htmlf("cgit %s\n", CGIT_VERSION); |
109 | cgit_free_commitinfo(info); | 109 | cgit_free_commitinfo(info); |
110 | } | 110 | } |
@@ -1,30 +1,30 @@ | |||
1 | /* ui-refs.c: browse symbolic refs | 1 | /* ui-refs.c: browse symbolic refs |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | 11 | ||
12 | 12 | ||
13 | 13 | ||
14 | void cgit_print_refs() | 14 | void cgit_print_refs() |
15 | { | 15 | { |
16 | 16 | ||
17 | html("<table class='list nowrap'>"); | 17 | html("<table class='list nowrap'>"); |
18 | 18 | ||
19 | if (cgit_query_path && !strncmp(cgit_query_path, "heads", 5)) | 19 | if (ctx.qry.path && !strncmp(ctx.qry.path, "heads", 5)) |
20 | cgit_print_branches(0); | 20 | cgit_print_branches(0); |
21 | else if (cgit_query_path && !strncmp(cgit_query_path, "tags", 4)) | 21 | else if (ctx.qry.path && !strncmp(ctx.qry.path, "tags", 4)) |
22 | cgit_print_tags(0); | 22 | cgit_print_tags(0); |
23 | else { | 23 | else { |
24 | cgit_print_branches(0); | 24 | cgit_print_branches(0); |
25 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); | 25 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); |
26 | cgit_print_tags(0); | 26 | cgit_print_tags(0); |
27 | } | 27 | } |
28 | 28 | ||
29 | html("</table>"); | 29 | html("</table>"); |
30 | } | 30 | } |
diff --git a/ui-shared.c b/ui-shared.c index 60aa2e3..6a41fb0 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -1,570 +1,570 @@ | |||
1 | /* ui-shared.c: common web output functions | 1 | /* ui-shared.c: common web output functions |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | const char cgit_doctype[] = | 11 | const char cgit_doctype[] = |
12 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" | 12 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" |
13 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; | 13 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; |
14 | 14 | ||
15 | static char *http_date(time_t t) | 15 | static char *http_date(time_t t) |
16 | { | 16 | { |
17 | static char day[][4] = | 17 | static char day[][4] = |
18 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; | 18 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; |
19 | static char month[][4] = | 19 | static char month[][4] = |
20 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", | 20 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", |
21 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; | 21 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; |
22 | struct tm *tm = gmtime(&t); | 22 | struct tm *tm = gmtime(&t); |
23 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], | 23 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], |
24 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, | 24 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, |
25 | tm->tm_hour, tm->tm_min, tm->tm_sec); | 25 | tm->tm_hour, tm->tm_min, tm->tm_sec); |
26 | } | 26 | } |
27 | 27 | ||
28 | static long ttl_seconds(long ttl) | 28 | static long ttl_seconds(long ttl) |
29 | { | 29 | { |
30 | if (ttl<0) | 30 | if (ttl<0) |
31 | return 60 * 60 * 24 * 365; | 31 | return 60 * 60 * 24 * 365; |
32 | else | 32 | else |
33 | return ttl * 60; | 33 | return ttl * 60; |
34 | } | 34 | } |
35 | 35 | ||
36 | void cgit_print_error(char *msg) | 36 | void cgit_print_error(char *msg) |
37 | { | 37 | { |
38 | html("<div class='error'>"); | 38 | html("<div class='error'>"); |
39 | html_txt(msg); | 39 | html_txt(msg); |
40 | html("</div>\n"); | 40 | html("</div>\n"); |
41 | } | 41 | } |
42 | 42 | ||
43 | char *cgit_rooturl() | 43 | char *cgit_rooturl() |
44 | { | 44 | { |
45 | if (cgit_virtual_root) | 45 | if (cgit_virtual_root) |
46 | return fmt("%s/", cgit_virtual_root); | 46 | return fmt("%s/", cgit_virtual_root); |
47 | else | 47 | else |
48 | return cgit_script_name; | 48 | return cgit_script_name; |
49 | } | 49 | } |
50 | 50 | ||
51 | char *cgit_repourl(const char *reponame) | 51 | char *cgit_repourl(const char *reponame) |
52 | { | 52 | { |
53 | if (cgit_virtual_root) { | 53 | if (cgit_virtual_root) { |
54 | return fmt("%s/%s/", cgit_virtual_root, reponame); | 54 | return fmt("%s/%s/", cgit_virtual_root, reponame); |
55 | } else { | 55 | } else { |
56 | return fmt("?r=%s", reponame); | 56 | return fmt("?r=%s", reponame); |
57 | } | 57 | } |
58 | } | 58 | } |
59 | 59 | ||
60 | char *cgit_fileurl(const char *reponame, const char *pagename, | 60 | char *cgit_fileurl(const char *reponame, const char *pagename, |
61 | const char *filename, const char *query) | 61 | const char *filename, const char *query) |
62 | { | 62 | { |
63 | char *tmp; | 63 | char *tmp; |
64 | char *delim; | 64 | char *delim; |
65 | 65 | ||
66 | if (cgit_virtual_root) { | 66 | if (cgit_virtual_root) { |
67 | tmp = fmt("%s/%s/%s/%s", cgit_virtual_root, reponame, | 67 | tmp = fmt("%s/%s/%s/%s", cgit_virtual_root, reponame, |
68 | pagename, (filename ? filename:"")); | 68 | pagename, (filename ? filename:"")); |
69 | delim = "?"; | 69 | delim = "?"; |
70 | } else { | 70 | } else { |
71 | tmp = fmt("?url=%s/%s/%s", reponame, pagename, | 71 | tmp = fmt("?url=%s/%s/%s", reponame, pagename, |
72 | (filename ? filename : "")); | 72 | (filename ? filename : "")); |
73 | delim = "&"; | 73 | delim = "&"; |
74 | } | 74 | } |
75 | if (query) | 75 | if (query) |
76 | tmp = fmt("%s%s%s", tmp, delim, query); | 76 | tmp = fmt("%s%s%s", tmp, delim, query); |
77 | return tmp; | 77 | return tmp; |
78 | } | 78 | } |
79 | 79 | ||
80 | char *cgit_pageurl(const char *reponame, const char *pagename, | 80 | char *cgit_pageurl(const char *reponame, const char *pagename, |
81 | const char *query) | 81 | const char *query) |
82 | { | 82 | { |
83 | return cgit_fileurl(reponame,pagename,0,query); | 83 | return cgit_fileurl(reponame,pagename,0,query); |
84 | } | 84 | } |
85 | 85 | ||
86 | const char *cgit_repobasename(const char *reponame) | 86 | const char *cgit_repobasename(const char *reponame) |
87 | { | 87 | { |
88 | /* I assume we don't need to store more than one repo basename */ | 88 | /* I assume we don't need to store more than one repo basename */ |
89 | static char rvbuf[1024]; | 89 | static char rvbuf[1024]; |
90 | int p; | 90 | int p; |
91 | const char *rv; | 91 | const char *rv; |
92 | strncpy(rvbuf,reponame,sizeof(rvbuf)); | 92 | strncpy(rvbuf,reponame,sizeof(rvbuf)); |
93 | if(rvbuf[sizeof(rvbuf)-1]) | 93 | if(rvbuf[sizeof(rvbuf)-1]) |
94 | die("cgit_repobasename: truncated repository name '%s'", reponame); | 94 | die("cgit_repobasename: truncated repository name '%s'", reponame); |
95 | p = strlen(rvbuf)-1; | 95 | p = strlen(rvbuf)-1; |
96 | /* strip trailing slashes */ | 96 | /* strip trailing slashes */ |
97 | while(p && rvbuf[p]=='/') rvbuf[p--]=0; | 97 | while(p && rvbuf[p]=='/') rvbuf[p--]=0; |
98 | /* strip trailing .git */ | 98 | /* strip trailing .git */ |
99 | if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) { | 99 | if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) { |
100 | p -= 3; rvbuf[p--] = 0; | 100 | p -= 3; rvbuf[p--] = 0; |
101 | } | 101 | } |
102 | /* strip more trailing slashes if any */ | 102 | /* strip more trailing slashes if any */ |
103 | while( p && rvbuf[p]=='/') rvbuf[p--]=0; | 103 | while( p && rvbuf[p]=='/') rvbuf[p--]=0; |
104 | /* find last slash in the remaining string */ | 104 | /* find last slash in the remaining string */ |
105 | rv = strrchr(rvbuf,'/'); | 105 | rv = strrchr(rvbuf,'/'); |
106 | if(rv) | 106 | if(rv) |
107 | return ++rv; | 107 | return ++rv; |
108 | return rvbuf; | 108 | return rvbuf; |
109 | } | 109 | } |
110 | 110 | ||
111 | char *cgit_currurl() | 111 | char *cgit_currurl() |
112 | { | 112 | { |
113 | if (!cgit_virtual_root) | 113 | if (!cgit_virtual_root) |
114 | return cgit_script_name; | 114 | return cgit_script_name; |
115 | else if (cgit_query_page) | 115 | else if (ctx.qry.page) |
116 | return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page); | 116 | return fmt("%s/%s/%s/", cgit_virtual_root, ctx.qry.repo, ctx.qry.page); |
117 | else if (cgit_query_repo) | 117 | else if (ctx.qry.repo) |
118 | return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo); | 118 | return fmt("%s/%s/", cgit_virtual_root, ctx.qry.repo); |
119 | else | 119 | else |
120 | return fmt("%s/", cgit_virtual_root); | 120 | return fmt("%s/", cgit_virtual_root); |
121 | } | 121 | } |
122 | 122 | ||
123 | static char *repolink(char *title, char *class, char *page, char *head, | 123 | static char *repolink(char *title, char *class, char *page, char *head, |
124 | char *path) | 124 | char *path) |
125 | { | 125 | { |
126 | char *delim = "?"; | 126 | char *delim = "?"; |
127 | 127 | ||
128 | html("<a"); | 128 | html("<a"); |
129 | if (title) { | 129 | if (title) { |
130 | html(" title='"); | 130 | html(" title='"); |
131 | html_attr(title); | 131 | html_attr(title); |
132 | html("'"); | 132 | html("'"); |
133 | } | 133 | } |
134 | if (class) { | 134 | if (class) { |
135 | html(" class='"); | 135 | html(" class='"); |
136 | html_attr(class); | 136 | html_attr(class); |
137 | html("'"); | 137 | html("'"); |
138 | } | 138 | } |
139 | html(" href='"); | 139 | html(" href='"); |
140 | if (cgit_virtual_root) { | 140 | if (cgit_virtual_root) { |
141 | html_attr(cgit_virtual_root); | 141 | html_attr(cgit_virtual_root); |
142 | if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/') | 142 | if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/') |
143 | html("/"); | 143 | html("/"); |
144 | html_attr(cgit_repo->url); | 144 | html_attr(cgit_repo->url); |
145 | if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') | 145 | if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') |
146 | html("/"); | 146 | html("/"); |
147 | if (page) { | 147 | if (page) { |
148 | html(page); | 148 | html(page); |
149 | html("/"); | 149 | html("/"); |
150 | if (path) | 150 | if (path) |
151 | html_attr(path); | 151 | html_attr(path); |
152 | } | 152 | } |
153 | } else { | 153 | } else { |
154 | html(cgit_script_name); | 154 | html(cgit_script_name); |
155 | html("?url="); | 155 | html("?url="); |
156 | html_attr(cgit_repo->url); | 156 | html_attr(cgit_repo->url); |
157 | if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') | 157 | if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') |
158 | html("/"); | 158 | html("/"); |
159 | if (page) { | 159 | if (page) { |
160 | html(page); | 160 | html(page); |
161 | html("/"); | 161 | html("/"); |
162 | if (path) | 162 | if (path) |
163 | html_attr(path); | 163 | html_attr(path); |
164 | } | 164 | } |
165 | delim = "&"; | 165 | delim = "&"; |
166 | } | 166 | } |
167 | if (head && strcmp(head, cgit_repo->defbranch)) { | 167 | if (head && strcmp(head, cgit_repo->defbranch)) { |
168 | html(delim); | 168 | html(delim); |
169 | html("h="); | 169 | html("h="); |
170 | html_attr(head); | 170 | html_attr(head); |
171 | delim = "&"; | 171 | delim = "&"; |
172 | } | 172 | } |
173 | return fmt("%s", delim); | 173 | return fmt("%s", delim); |
174 | } | 174 | } |
175 | 175 | ||
176 | static void reporevlink(char *page, char *name, char *title, char *class, | 176 | static void reporevlink(char *page, char *name, char *title, char *class, |
177 | char *head, char *rev, char *path) | 177 | char *head, char *rev, char *path) |
178 | { | 178 | { |
179 | char *delim; | 179 | char *delim; |
180 | 180 | ||
181 | delim = repolink(title, class, page, head, path); | 181 | delim = repolink(title, class, page, head, path); |
182 | if (rev && strcmp(rev, cgit_query_head)) { | 182 | if (rev && strcmp(rev, ctx.qry.head)) { |
183 | html(delim); | 183 | html(delim); |
184 | html("id="); | 184 | html("id="); |
185 | html_attr(rev); | 185 | html_attr(rev); |
186 | } | 186 | } |
187 | html("'>"); | 187 | html("'>"); |
188 | html_txt(name); | 188 | html_txt(name); |
189 | html("</a>"); | 189 | html("</a>"); |
190 | } | 190 | } |
191 | 191 | ||
192 | void cgit_tree_link(char *name, char *title, char *class, char *head, | 192 | void cgit_tree_link(char *name, char *title, char *class, char *head, |
193 | char *rev, char *path) | 193 | char *rev, char *path) |
194 | { | 194 | { |
195 | reporevlink("tree", name, title, class, head, rev, path); | 195 | reporevlink("tree", name, title, class, head, rev, path); |
196 | } | 196 | } |
197 | 197 | ||
198 | void cgit_log_link(char *name, char *title, char *class, char *head, | 198 | void cgit_log_link(char *name, char *title, char *class, char *head, |
199 | char *rev, char *path, int ofs, char *grep, char *pattern) | 199 | char *rev, char *path, int ofs, char *grep, char *pattern) |
200 | { | 200 | { |
201 | char *delim; | 201 | char *delim; |
202 | 202 | ||
203 | delim = repolink(title, class, "log", head, path); | 203 | delim = repolink(title, class, "log", head, path); |
204 | if (rev && strcmp(rev, cgit_query_head)) { | 204 | if (rev && strcmp(rev, ctx.qry.head)) { |
205 | html(delim); | 205 | html(delim); |
206 | html("id="); | 206 | html("id="); |
207 | html_attr(rev); | 207 | html_attr(rev); |
208 | delim = "&"; | 208 | delim = "&"; |
209 | } | 209 | } |
210 | if (grep && pattern) { | 210 | if (grep && pattern) { |
211 | html(delim); | 211 | html(delim); |
212 | html("qt="); | 212 | html("qt="); |
213 | html_attr(grep); | 213 | html_attr(grep); |
214 | delim = "&"; | 214 | delim = "&"; |
215 | html(delim); | 215 | html(delim); |
216 | html("q="); | 216 | html("q="); |
217 | html_attr(pattern); | 217 | html_attr(pattern); |
218 | } | 218 | } |
219 | if (ofs > 0) { | 219 | if (ofs > 0) { |
220 | html(delim); | 220 | html(delim); |
221 | html("ofs="); | 221 | html("ofs="); |
222 | htmlf("%d", ofs); | 222 | htmlf("%d", ofs); |
223 | } | 223 | } |
224 | html("'>"); | 224 | html("'>"); |
225 | html_txt(name); | 225 | html_txt(name); |
226 | html("</a>"); | 226 | html("</a>"); |
227 | } | 227 | } |
228 | 228 | ||
229 | void cgit_commit_link(char *name, char *title, char *class, char *head, | 229 | void cgit_commit_link(char *name, char *title, char *class, char *head, |
230 | char *rev) | 230 | char *rev) |
231 | { | 231 | { |
232 | if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) { | 232 | if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) { |
233 | name[cgit_max_msg_len] = '\0'; | 233 | name[cgit_max_msg_len] = '\0'; |
234 | name[cgit_max_msg_len - 1] = '.'; | 234 | name[cgit_max_msg_len - 1] = '.'; |
235 | name[cgit_max_msg_len - 2] = '.'; | 235 | name[cgit_max_msg_len - 2] = '.'; |
236 | name[cgit_max_msg_len - 3] = '.'; | 236 | name[cgit_max_msg_len - 3] = '.'; |
237 | } | 237 | } |
238 | reporevlink("commit", name, title, class, head, rev, NULL); | 238 | reporevlink("commit", name, title, class, head, rev, NULL); |
239 | } | 239 | } |
240 | 240 | ||
241 | void cgit_refs_link(char *name, char *title, char *class, char *head, | 241 | void cgit_refs_link(char *name, char *title, char *class, char *head, |
242 | char *rev, char *path) | 242 | char *rev, char *path) |
243 | { | 243 | { |
244 | reporevlink("refs", name, title, class, head, rev, path); | 244 | reporevlink("refs", name, title, class, head, rev, path); |
245 | } | 245 | } |
246 | 246 | ||
247 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, | 247 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, |
248 | char *rev, char *archivename) | 248 | char *rev, char *archivename) |
249 | { | 249 | { |
250 | reporevlink("snapshot", name, title, class, head, rev, archivename); | 250 | reporevlink("snapshot", name, title, class, head, rev, archivename); |
251 | } | 251 | } |
252 | 252 | ||
253 | void cgit_diff_link(char *name, char *title, char *class, char *head, | 253 | void cgit_diff_link(char *name, char *title, char *class, char *head, |
254 | char *new_rev, char *old_rev, char *path) | 254 | char *new_rev, char *old_rev, char *path) |
255 | { | 255 | { |
256 | char *delim; | 256 | char *delim; |
257 | 257 | ||
258 | delim = repolink(title, class, "diff", head, path); | 258 | delim = repolink(title, class, "diff", head, path); |
259 | if (new_rev && strcmp(new_rev, cgit_query_head)) { | 259 | if (new_rev && strcmp(new_rev, ctx.qry.head)) { |
260 | html(delim); | 260 | html(delim); |
261 | html("id="); | 261 | html("id="); |
262 | html_attr(new_rev); | 262 | html_attr(new_rev); |
263 | delim = "&"; | 263 | delim = "&"; |
264 | } | 264 | } |
265 | if (old_rev) { | 265 | if (old_rev) { |
266 | html(delim); | 266 | html(delim); |
267 | html("id2="); | 267 | html("id2="); |
268 | html_attr(old_rev); | 268 | html_attr(old_rev); |
269 | } | 269 | } |
270 | html("'>"); | 270 | html("'>"); |
271 | html_txt(name); | 271 | html_txt(name); |
272 | html("</a>"); | 272 | html("</a>"); |
273 | } | 273 | } |
274 | 274 | ||
275 | void cgit_patch_link(char *name, char *title, char *class, char *head, | 275 | void cgit_patch_link(char *name, char *title, char *class, char *head, |
276 | char *rev) | 276 | char *rev) |
277 | { | 277 | { |
278 | reporevlink("patch", name, title, class, head, rev, NULL); | 278 | reporevlink("patch", name, title, class, head, rev, NULL); |
279 | } | 279 | } |
280 | 280 | ||
281 | void cgit_object_link(struct object *obj) | 281 | void cgit_object_link(struct object *obj) |
282 | { | 282 | { |
283 | char *page, *arg, *url; | 283 | char *page, *arg, *url; |
284 | 284 | ||
285 | if (obj->type == OBJ_COMMIT) { | 285 | if (obj->type == OBJ_COMMIT) { |
286 | cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, | 286 | cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, |
287 | cgit_query_head, sha1_to_hex(obj->sha1)); | 287 | ctx.qry.head, sha1_to_hex(obj->sha1)); |
288 | return; | 288 | return; |
289 | } else if (obj->type == OBJ_TREE) { | 289 | } else if (obj->type == OBJ_TREE) { |
290 | page = "tree"; | 290 | page = "tree"; |
291 | arg = "id"; | 291 | arg = "id"; |
292 | } else if (obj->type == OBJ_TAG) { | 292 | } else if (obj->type == OBJ_TAG) { |
293 | page = "tag"; | 293 | page = "tag"; |
294 | arg = "id"; | 294 | arg = "id"; |
295 | } else { | 295 | } else { |
296 | page = "blob"; | 296 | page = "blob"; |
297 | arg = "id"; | 297 | arg = "id"; |
298 | } | 298 | } |
299 | 299 | ||
300 | url = cgit_pageurl(cgit_query_repo, page, | 300 | url = cgit_pageurl(ctx.qry.repo, page, |
301 | fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); | 301 | fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); |
302 | html_link_open(url, NULL, NULL); | 302 | html_link_open(url, NULL, NULL); |
303 | htmlf("%s %s", typename(obj->type), | 303 | htmlf("%s %s", typename(obj->type), |
304 | sha1_to_hex(obj->sha1)); | 304 | sha1_to_hex(obj->sha1)); |
305 | html_link_close(); | 305 | html_link_close(); |
306 | } | 306 | } |
307 | 307 | ||
308 | void cgit_print_date(time_t secs, char *format) | 308 | void cgit_print_date(time_t secs, char *format) |
309 | { | 309 | { |
310 | char buf[64]; | 310 | char buf[64]; |
311 | struct tm *time; | 311 | struct tm *time; |
312 | 312 | ||
313 | if (!secs) | 313 | if (!secs) |
314 | return; | 314 | return; |
315 | time = gmtime(&secs); | 315 | time = gmtime(&secs); |
316 | strftime(buf, sizeof(buf)-1, format, time); | 316 | strftime(buf, sizeof(buf)-1, format, time); |
317 | html_txt(buf); | 317 | html_txt(buf); |
318 | } | 318 | } |
319 | 319 | ||
320 | void cgit_print_age(time_t t, time_t max_relative, char *format) | 320 | void cgit_print_age(time_t t, time_t max_relative, char *format) |
321 | { | 321 | { |
322 | time_t now, secs; | 322 | time_t now, secs; |
323 | 323 | ||
324 | if (!t) | 324 | if (!t) |
325 | return; | 325 | return; |
326 | time(&now); | 326 | time(&now); |
327 | secs = now - t; | 327 | secs = now - t; |
328 | 328 | ||
329 | if (secs > max_relative && max_relative >= 0) { | 329 | if (secs > max_relative && max_relative >= 0) { |
330 | cgit_print_date(t, format); | 330 | cgit_print_date(t, format); |
331 | return; | 331 | return; |
332 | } | 332 | } |
333 | 333 | ||
334 | if (secs < TM_HOUR * 2) { | 334 | if (secs < TM_HOUR * 2) { |
335 | htmlf("<span class='age-mins'>%.0f min.</span>", | 335 | htmlf("<span class='age-mins'>%.0f min.</span>", |
336 | secs * 1.0 / TM_MIN); | 336 | secs * 1.0 / TM_MIN); |
337 | return; | 337 | return; |
338 | } | 338 | } |
339 | if (secs < TM_DAY * 2) { | 339 | if (secs < TM_DAY * 2) { |
340 | htmlf("<span class='age-hours'>%.0f hours</span>", | 340 | htmlf("<span class='age-hours'>%.0f hours</span>", |
341 | secs * 1.0 / TM_HOUR); | 341 | secs * 1.0 / TM_HOUR); |
342 | return; | 342 | return; |
343 | } | 343 | } |
344 | if (secs < TM_WEEK * 2) { | 344 | if (secs < TM_WEEK * 2) { |
345 | htmlf("<span class='age-days'>%.0f days</span>", | 345 | htmlf("<span class='age-days'>%.0f days</span>", |
346 | secs * 1.0 / TM_DAY); | 346 | secs * 1.0 / TM_DAY); |
347 | return; | 347 | return; |
348 | } | 348 | } |
349 | if (secs < TM_MONTH * 2) { | 349 | if (secs < TM_MONTH * 2) { |
350 | htmlf("<span class='age-weeks'>%.0f weeks</span>", | 350 | htmlf("<span class='age-weeks'>%.0f weeks</span>", |
351 | secs * 1.0 / TM_WEEK); | 351 | secs * 1.0 / TM_WEEK); |
352 | return; | 352 | return; |
353 | } | 353 | } |
354 | if (secs < TM_YEAR * 2) { | 354 | if (secs < TM_YEAR * 2) { |
355 | htmlf("<span class='age-months'>%.0f months</span>", | 355 | htmlf("<span class='age-months'>%.0f months</span>", |
356 | secs * 1.0 / TM_MONTH); | 356 | secs * 1.0 / TM_MONTH); |
357 | return; | 357 | return; |
358 | } | 358 | } |
359 | htmlf("<span class='age-years'>%.0f years</span>", | 359 | htmlf("<span class='age-years'>%.0f years</span>", |
360 | secs * 1.0 / TM_YEAR); | 360 | secs * 1.0 / TM_YEAR); |
361 | } | 361 | } |
362 | 362 | ||
363 | void cgit_print_docstart(char *title, struct cacheitem *item) | 363 | void cgit_print_docstart(char *title, struct cacheitem *item) |
364 | { | 364 | { |
365 | html("Content-Type: text/html; charset=" PAGE_ENCODING "\n"); | 365 | html("Content-Type: text/html; charset=" PAGE_ENCODING "\n"); |
366 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); | 366 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); |
367 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + | 367 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + |
368 | ttl_seconds(item->ttl))); | 368 | ttl_seconds(item->ttl))); |
369 | html("\n"); | 369 | html("\n"); |
370 | html(cgit_doctype); | 370 | html(cgit_doctype); |
371 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); | 371 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); |
372 | html("<head>\n"); | 372 | html("<head>\n"); |
373 | html("<title>"); | 373 | html("<title>"); |
374 | html_txt(title); | 374 | html_txt(title); |
375 | html("</title>\n"); | 375 | html("</title>\n"); |
376 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); | 376 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); |
377 | if (cgit_robots && *cgit_robots) | 377 | if (cgit_robots && *cgit_robots) |
378 | htmlf("<meta name='robots' content='%s'/>\n", cgit_robots); | 378 | htmlf("<meta name='robots' content='%s'/>\n", cgit_robots); |
379 | html("<link rel='stylesheet' type='text/css' href='"); | 379 | html("<link rel='stylesheet' type='text/css' href='"); |
380 | html_attr(cgit_css); | 380 | html_attr(cgit_css); |
381 | html("'/>\n"); | 381 | html("'/>\n"); |
382 | html("</head>\n"); | 382 | html("</head>\n"); |
383 | html("<body>\n"); | 383 | html("<body>\n"); |
384 | } | 384 | } |
385 | 385 | ||
386 | void cgit_print_docend() | 386 | void cgit_print_docend() |
387 | { | 387 | { |
388 | html("</td>\n</tr>\n</table>\n</body>\n</html>\n"); | 388 | html("</td>\n</tr>\n</table>\n</body>\n</html>\n"); |
389 | } | 389 | } |
390 | 390 | ||
391 | int print_branch_option(const char *refname, const unsigned char *sha1, | 391 | int print_branch_option(const char *refname, const unsigned char *sha1, |
392 | int flags, void *cb_data) | 392 | int flags, void *cb_data) |
393 | { | 393 | { |
394 | char *name = (char *)refname; | 394 | char *name = (char *)refname; |
395 | html_option(name, name, cgit_query_head); | 395 | html_option(name, name, ctx.qry.head); |
396 | return 0; | 396 | return 0; |
397 | } | 397 | } |
398 | 398 | ||
399 | int print_archive_ref(const char *refname, const unsigned char *sha1, | 399 | int print_archive_ref(const char *refname, const unsigned char *sha1, |
400 | int flags, void *cb_data) | 400 | int flags, void *cb_data) |
401 | { | 401 | { |
402 | struct tag *tag; | 402 | struct tag *tag; |
403 | struct taginfo *info; | 403 | struct taginfo *info; |
404 | struct object *obj; | 404 | struct object *obj; |
405 | char buf[256], *url; | 405 | char buf[256], *url; |
406 | unsigned char fileid[20]; | 406 | unsigned char fileid[20]; |
407 | int *header = (int *)cb_data; | 407 | int *header = (int *)cb_data; |
408 | 408 | ||
409 | if (prefixcmp(refname, "refs/archives")) | 409 | if (prefixcmp(refname, "refs/archives")) |
410 | return 0; | 410 | return 0; |
411 | strncpy(buf, refname+14, sizeof(buf)); | 411 | strncpy(buf, refname+14, sizeof(buf)); |
412 | obj = parse_object(sha1); | 412 | obj = parse_object(sha1); |
413 | if (!obj) | 413 | if (!obj) |
414 | return 1; | 414 | return 1; |
415 | if (obj->type == OBJ_TAG) { | 415 | if (obj->type == OBJ_TAG) { |
416 | tag = lookup_tag(sha1); | 416 | tag = lookup_tag(sha1); |
417 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) | 417 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) |
418 | return 0; | 418 | return 0; |
419 | hashcpy(fileid, tag->tagged->sha1); | 419 | hashcpy(fileid, tag->tagged->sha1); |
420 | } else if (obj->type != OBJ_BLOB) { | 420 | } else if (obj->type != OBJ_BLOB) { |
421 | return 0; | 421 | return 0; |
422 | } else { | 422 | } else { |
423 | hashcpy(fileid, sha1); | 423 | hashcpy(fileid, sha1); |
424 | } | 424 | } |
425 | if (!*header) { | 425 | if (!*header) { |
426 | html("<h1>download</h1>\n"); | 426 | html("<h1>download</h1>\n"); |
427 | *header = 1; | 427 | *header = 1; |
428 | } | 428 | } |
429 | url = cgit_pageurl(cgit_query_repo, "blob", | 429 | url = cgit_pageurl(ctx.qry.repo, "blob", |
430 | fmt("id=%s&path=%s", sha1_to_hex(fileid), | 430 | fmt("id=%s&path=%s", sha1_to_hex(fileid), |
431 | buf)); | 431 | buf)); |
432 | html_link_open(url, NULL, "menu"); | 432 | html_link_open(url, NULL, "menu"); |
433 | html_txt(strlpart(buf, 20)); | 433 | html_txt(strlpart(buf, 20)); |
434 | html_link_close(); | 434 | html_link_close(); |
435 | return 0; | 435 | return 0; |
436 | } | 436 | } |
437 | 437 | ||
438 | void add_hidden_formfields(int incl_head, int incl_search, char *page) | 438 | void add_hidden_formfields(int incl_head, int incl_search, char *page) |
439 | { | 439 | { |
440 | char *url; | 440 | char *url; |
441 | 441 | ||
442 | if (!cgit_virtual_root) { | 442 | if (!cgit_virtual_root) { |
443 | url = fmt("%s/%s", cgit_query_repo, page); | 443 | url = fmt("%s/%s", ctx.qry.repo, page); |
444 | if (cgit_query_path) | 444 | if (ctx.qry.path) |
445 | url = fmt("%s/%s", url, cgit_query_path); | 445 | url = fmt("%s/%s", url, ctx.qry.path); |
446 | html_hidden("url", url); | 446 | html_hidden("url", url); |
447 | } | 447 | } |
448 | 448 | ||
449 | if (incl_head && strcmp(cgit_query_head, cgit_repo->defbranch)) | 449 | if (incl_head && strcmp(ctx.qry.head, cgit_repo->defbranch)) |
450 | html_hidden("h", cgit_query_head); | 450 | html_hidden("h", ctx.qry.head); |
451 | 451 | ||
452 | if (cgit_query_sha1) | 452 | if (ctx.qry.sha1) |
453 | html_hidden("id", cgit_query_sha1); | 453 | html_hidden("id", ctx.qry.sha1); |
454 | if (cgit_query_sha2) | 454 | if (ctx.qry.sha2) |
455 | html_hidden("id2", cgit_query_sha2); | 455 | html_hidden("id2", ctx.qry.sha2); |
456 | 456 | ||
457 | if (incl_search) { | 457 | if (incl_search) { |
458 | if (cgit_query_grep) | 458 | if (ctx.qry.grep) |
459 | html_hidden("qt", cgit_query_grep); | 459 | html_hidden("qt", ctx.qry.grep); |
460 | if (cgit_query_search) | 460 | if (ctx.qry.search) |
461 | html_hidden("q", cgit_query_search); | 461 | html_hidden("q", ctx.qry.search); |
462 | } | 462 | } |
463 | } | 463 | } |
464 | 464 | ||
465 | void cgit_print_pageheader(char *title, int show_search) | 465 | void cgit_print_pageheader(char *title, int show_search) |
466 | { | 466 | { |
467 | static const char *default_info = "This is cgit, a fast webinterface for git repositories"; | 467 | static const char *default_info = "This is cgit, a fast webinterface for git repositories"; |
468 | int header = 0; | 468 | int header = 0; |
469 | char *url; | 469 | char *url; |
470 | 470 | ||
471 | html("<table id='layout' summary=''>\n"); | 471 | html("<table id='layout' summary=''>\n"); |
472 | html("<tr><td id='sidebar'>\n"); | 472 | html("<tr><td id='sidebar'>\n"); |
473 | html("<table class='sidebar' cellspacing='0' summary=''>\n"); | 473 | html("<table class='sidebar' cellspacing='0' summary=''>\n"); |
474 | html("<tr><td class='sidebar'>\n<a href='"); | 474 | html("<tr><td class='sidebar'>\n<a href='"); |
475 | html_attr(cgit_rooturl()); | 475 | html_attr(cgit_rooturl()); |
476 | htmlf("'><img src='%s' alt='cgit'/></a>\n", | 476 | htmlf("'><img src='%s' alt='cgit'/></a>\n", |
477 | cgit_logo); | 477 | cgit_logo); |
478 | html("</td></tr>\n<tr><td class='sidebar'>\n"); | 478 | html("</td></tr>\n<tr><td class='sidebar'>\n"); |
479 | if (cgit_query_repo) { | 479 | if (ctx.qry.repo) { |
480 | html("<h1 class='first'>"); | 480 | html("<h1 class='first'>"); |
481 | html_txt(strrpart(cgit_repo->name, 20)); | 481 | html_txt(strrpart(cgit_repo->name, 20)); |
482 | html("</h1>\n"); | 482 | html("</h1>\n"); |
483 | html_txt(cgit_repo->desc); | 483 | html_txt(cgit_repo->desc); |
484 | if (cgit_repo->owner) { | 484 | if (cgit_repo->owner) { |
485 | html("<h1>owner</h1>\n"); | 485 | html("<h1>owner</h1>\n"); |
486 | html_txt(cgit_repo->owner); | 486 | html_txt(cgit_repo->owner); |
487 | } | 487 | } |
488 | html("<h1>navigate</h1>\n"); | 488 | html("<h1>navigate</h1>\n"); |
489 | reporevlink(NULL, "summary", NULL, "menu", cgit_query_head, | 489 | reporevlink(NULL, "summary", NULL, "menu", ctx.qry.head, |
490 | NULL, NULL); | 490 | NULL, NULL); |
491 | cgit_log_link("log", NULL, "menu", cgit_query_head, NULL, NULL, | 491 | cgit_log_link("log", NULL, "menu", ctx.qry.head, NULL, NULL, |
492 | 0, NULL, NULL); | 492 | 0, NULL, NULL); |
493 | cgit_tree_link("tree", NULL, "menu", cgit_query_head, | 493 | cgit_tree_link("tree", NULL, "menu", ctx.qry.head, |
494 | cgit_query_sha1, NULL); | 494 | ctx.qry.sha1, NULL); |
495 | cgit_commit_link("commit", NULL, "menu", cgit_query_head, | 495 | cgit_commit_link("commit", NULL, "menu", ctx.qry.head, |
496 | cgit_query_sha1); | 496 | ctx.qry.sha1); |
497 | cgit_diff_link("diff", NULL, "menu", cgit_query_head, | 497 | cgit_diff_link("diff", NULL, "menu", ctx.qry.head, |
498 | cgit_query_sha1, cgit_query_sha2, NULL); | 498 | ctx.qry.sha1, ctx.qry.sha2, NULL); |
499 | cgit_patch_link("patch", NULL, "menu", cgit_query_head, | 499 | cgit_patch_link("patch", NULL, "menu", ctx.qry.head, |
500 | cgit_query_sha1); | 500 | ctx.qry.sha1); |
501 | 501 | ||
502 | for_each_ref(print_archive_ref, &header); | 502 | for_each_ref(print_archive_ref, &header); |
503 | 503 | ||
504 | if (cgit_repo->clone_url || cgit_clone_prefix) { | 504 | if (cgit_repo->clone_url || cgit_clone_prefix) { |
505 | html("<h1>clone</h1>\n"); | 505 | html("<h1>clone</h1>\n"); |
506 | if (cgit_repo->clone_url) | 506 | if (cgit_repo->clone_url) |
507 | url = cgit_repo->clone_url; | 507 | url = cgit_repo->clone_url; |
508 | else | 508 | else |
509 | url = fmt("%s%s", cgit_clone_prefix, | 509 | url = fmt("%s%s", cgit_clone_prefix, |
510 | cgit_repo->url); | 510 | cgit_repo->url); |
511 | html("<a class='menu' href='"); | 511 | html("<a class='menu' href='"); |
512 | html_attr(url); | 512 | html_attr(url); |
513 | html("' title='"); | 513 | html("' title='"); |
514 | html_attr(url); | 514 | html_attr(url); |
515 | html("'>\n"); | 515 | html("'>\n"); |
516 | html_txt(strrpart(url, 20)); | 516 | html_txt(strrpart(url, 20)); |
517 | html("</a>\n"); | 517 | html("</a>\n"); |
518 | } | 518 | } |
519 | 519 | ||
520 | html("<h1>branch</h1>\n"); | 520 | html("<h1>branch</h1>\n"); |
521 | html("<form method='get' action=''>\n"); | 521 | html("<form method='get' action=''>\n"); |
522 | add_hidden_formfields(0, 1, cgit_query_page); | 522 | add_hidden_formfields(0, 1, ctx.qry.page); |
523 | // html("<table summary='branch selector' class='grid'><tr><td id='branch-dropdown-cell'>"); | 523 | // html("<table summary='branch selector' class='grid'><tr><td id='branch-dropdown-cell'>"); |
524 | html("<select name='h' onchange='this.form.submit();'>\n"); | 524 | html("<select name='h' onchange='this.form.submit();'>\n"); |
525 | for_each_branch_ref(print_branch_option, cgit_query_head); | 525 | for_each_branch_ref(print_branch_option, ctx.qry.head); |
526 | html("</select>\n"); | 526 | html("</select>\n"); |
527 | // html("</td><td>"); | 527 | // html("</td><td>"); |
528 | html("<noscript><input type='submit' id='switch-btn' value='switch'/></noscript>\n"); | 528 | html("<noscript><input type='submit' id='switch-btn' value='switch'/></noscript>\n"); |
529 | // html("</td></tr></table>"); | 529 | // html("</td></tr></table>"); |
530 | html("</form>\n"); | 530 | html("</form>\n"); |
531 | 531 | ||
532 | html("<h1>search</h1>\n"); | 532 | html("<h1>search</h1>\n"); |
533 | html("<form method='get' action='"); | 533 | html("<form method='get' action='"); |
534 | if (cgit_virtual_root) | 534 | if (cgit_virtual_root) |
535 | html_attr(cgit_fileurl(cgit_query_repo, "log", | 535 | html_attr(cgit_fileurl(ctx.qry.repo, "log", |
536 | cgit_query_path, NULL)); | 536 | ctx.qry.path, NULL)); |
537 | html("'>\n"); | 537 | html("'>\n"); |
538 | add_hidden_formfields(1, 0, "log"); | 538 | add_hidden_formfields(1, 0, "log"); |
539 | html("<select name='qt'>\n"); | 539 | html("<select name='qt'>\n"); |
540 | html_option("grep", "log msg", cgit_query_grep); | 540 | html_option("grep", "log msg", ctx.qry.grep); |
541 | html_option("author", "author", cgit_query_grep); | 541 | html_option("author", "author", ctx.qry.grep); |
542 | html_option("committer", "committer", cgit_query_grep); | 542 | html_option("committer", "committer", ctx.qry.grep); |
543 | html("</select>\n"); | 543 | html("</select>\n"); |
544 | html("<input class='txt' type='text' name='q' value='"); | 544 | html("<input class='txt' type='text' name='q' value='"); |
545 | html_attr(cgit_query_search); | 545 | html_attr(ctx.qry.search); |
546 | html("'/>\n"); | 546 | html("'/>\n"); |
547 | html("</form>\n"); | 547 | html("</form>\n"); |
548 | } else { | 548 | } else { |
549 | if (!cgit_index_info || html_include(cgit_index_info)) | 549 | if (!cgit_index_info || html_include(cgit_index_info)) |
550 | html(default_info); | 550 | html(default_info); |
551 | } | 551 | } |
552 | 552 | ||
553 | html("</td></tr></table></td>\n"); | 553 | html("</td></tr></table></td>\n"); |
554 | 554 | ||
555 | html("<td id='content'>\n"); | 555 | html("<td id='content'>\n"); |
556 | } | 556 | } |
557 | 557 | ||
558 | 558 | ||
559 | void cgit_print_snapshot_start(const char *mimetype, const char *filename, | 559 | void cgit_print_snapshot_start(const char *mimetype, const char *filename, |
560 | struct cacheitem *item) | 560 | struct cacheitem *item) |
561 | { | 561 | { |
562 | htmlf("Content-Type: %s\n", mimetype); | 562 | htmlf("Content-Type: %s\n", mimetype); |
563 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename); | 563 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename); |
564 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); | 564 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); |
565 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + | 565 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + |
566 | ttl_seconds(item->ttl))); | 566 | ttl_seconds(item->ttl))); |
567 | html("\n"); | 567 | html("\n"); |
568 | } | 568 | } |
569 | 569 | ||
570 | /* vim:set sw=8: */ | 570 | /* vim:set sw=8: */ |
diff --git a/ui-summary.c b/ui-summary.c index b96414e..bbd4464 100644 --- a/ui-summary.c +++ b/ui-summary.c | |||
@@ -1,200 +1,200 @@ | |||
1 | /* ui-summary.c: functions for generating repo summary page | 1 | /* ui-summary.c: functions for generating repo summary page |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | static int header; | 11 | static int header; |
12 | 12 | ||
13 | static int cmp_age(int age1, int age2) | 13 | static int cmp_age(int age1, int age2) |
14 | { | 14 | { |
15 | if (age1 != 0 && age2 != 0) | 15 | if (age1 != 0 && age2 != 0) |
16 | return age2 - age1; | 16 | return age2 - age1; |
17 | 17 | ||
18 | if (age1 == 0 && age2 == 0) | 18 | if (age1 == 0 && age2 == 0) |
19 | return 0; | 19 | return 0; |
20 | 20 | ||
21 | if (age1 == 0) | 21 | if (age1 == 0) |
22 | return +1; | 22 | return +1; |
23 | 23 | ||
24 | return -1; | 24 | return -1; |
25 | } | 25 | } |
26 | 26 | ||
27 | static int cmp_ref_name(const void *a, const void *b) | 27 | static int cmp_ref_name(const void *a, const void *b) |
28 | { | 28 | { |
29 | struct refinfo *r1 = *(struct refinfo **)a; | 29 | struct refinfo *r1 = *(struct refinfo **)a; |
30 | struct refinfo *r2 = *(struct refinfo **)b; | 30 | struct refinfo *r2 = *(struct refinfo **)b; |
31 | 31 | ||
32 | return strcmp(r1->refname, r2->refname); | 32 | return strcmp(r1->refname, r2->refname); |
33 | } | 33 | } |
34 | 34 | ||
35 | static int cmp_branch_age(const void *a, const void *b) | 35 | static int cmp_branch_age(const void *a, const void *b) |
36 | { | 36 | { |
37 | struct refinfo *r1 = *(struct refinfo **)a; | 37 | struct refinfo *r1 = *(struct refinfo **)a; |
38 | struct refinfo *r2 = *(struct refinfo **)b; | 38 | struct refinfo *r2 = *(struct refinfo **)b; |
39 | 39 | ||
40 | return cmp_age(r1->commit->committer_date, r2->commit->committer_date); | 40 | return cmp_age(r1->commit->committer_date, r2->commit->committer_date); |
41 | } | 41 | } |
42 | 42 | ||
43 | static int cmp_tag_age(const void *a, const void *b) | 43 | static int cmp_tag_age(const void *a, const void *b) |
44 | { | 44 | { |
45 | struct refinfo *r1 = *(struct refinfo **)a; | 45 | struct refinfo *r1 = *(struct refinfo **)a; |
46 | struct refinfo *r2 = *(struct refinfo **)b; | 46 | struct refinfo *r2 = *(struct refinfo **)b; |
47 | 47 | ||
48 | return cmp_age(r1->tag->tagger_date, r2->tag->tagger_date); | 48 | return cmp_age(r1->tag->tagger_date, r2->tag->tagger_date); |
49 | } | 49 | } |
50 | 50 | ||
51 | static int print_branch(struct refinfo *ref) | 51 | static int print_branch(struct refinfo *ref) |
52 | { | 52 | { |
53 | struct commitinfo *info = ref->commit; | 53 | struct commitinfo *info = ref->commit; |
54 | char *name = (char *)ref->refname; | 54 | char *name = (char *)ref->refname; |
55 | 55 | ||
56 | if (!info) | 56 | if (!info) |
57 | return 1; | 57 | return 1; |
58 | html("<tr><td>"); | 58 | html("<tr><td>"); |
59 | cgit_log_link(name, NULL, NULL, name, NULL, NULL, 0, NULL, NULL); | 59 | cgit_log_link(name, NULL, NULL, name, NULL, NULL, 0, NULL, NULL); |
60 | html("</td><td>"); | 60 | html("</td><td>"); |
61 | 61 | ||
62 | if (ref->object->type == OBJ_COMMIT) { | 62 | if (ref->object->type == OBJ_COMMIT) { |
63 | cgit_print_age(info->commit->date, -1, NULL); | 63 | cgit_print_age(info->commit->date, -1, NULL); |
64 | html("</td><td>"); | 64 | html("</td><td>"); |
65 | html_txt(info->author); | 65 | html_txt(info->author); |
66 | html("</td><td>"); | 66 | html("</td><td>"); |
67 | cgit_commit_link(info->subject, NULL, NULL, name, NULL); | 67 | cgit_commit_link(info->subject, NULL, NULL, name, NULL); |
68 | } else { | 68 | } else { |
69 | html("</td><td></td><td>"); | 69 | html("</td><td></td><td>"); |
70 | cgit_object_link(ref->object); | 70 | cgit_object_link(ref->object); |
71 | } | 71 | } |
72 | html("</td></tr>\n"); | 72 | html("</td></tr>\n"); |
73 | return 0; | 73 | return 0; |
74 | } | 74 | } |
75 | 75 | ||
76 | static void print_tag_header() | 76 | static void print_tag_header() |
77 | { | 77 | { |
78 | html("<tr class='nohover'><th class='left'>Tag</th>" | 78 | html("<tr class='nohover'><th class='left'>Tag</th>" |
79 | "<th class='left'>Age</th>" | 79 | "<th class='left'>Age</th>" |
80 | "<th class='left'>Author</th>" | 80 | "<th class='left'>Author</th>" |
81 | "<th class='left'>Reference</th></tr>\n"); | 81 | "<th class='left'>Reference</th></tr>\n"); |
82 | header = 1; | 82 | header = 1; |
83 | } | 83 | } |
84 | 84 | ||
85 | static int print_tag(struct refinfo *ref) | 85 | static int print_tag(struct refinfo *ref) |
86 | { | 86 | { |
87 | struct tag *tag; | 87 | struct tag *tag; |
88 | struct taginfo *info; | 88 | struct taginfo *info; |
89 | char *url, *name = (char *)ref->refname; | 89 | char *url, *name = (char *)ref->refname; |
90 | 90 | ||
91 | if (ref->object->type == OBJ_TAG) { | 91 | if (ref->object->type == OBJ_TAG) { |
92 | tag = (struct tag *)ref->object; | 92 | tag = (struct tag *)ref->object; |
93 | info = ref->tag; | 93 | info = ref->tag; |
94 | if (!tag || !info) | 94 | if (!tag || !info) |
95 | return 1; | 95 | return 1; |
96 | html("<tr><td>"); | 96 | html("<tr><td>"); |
97 | url = cgit_pageurl(cgit_query_repo, "tag", | 97 | url = cgit_pageurl(ctx.qry.repo, "tag", |
98 | fmt("id=%s", name)); | 98 | fmt("id=%s", name)); |
99 | html_link_open(url, NULL, NULL); | 99 | html_link_open(url, NULL, NULL); |
100 | html_txt(name); | 100 | html_txt(name); |
101 | html_link_close(); | 101 | html_link_close(); |
102 | html("</td><td>"); | 102 | html("</td><td>"); |
103 | if (info->tagger_date > 0) | 103 | if (info->tagger_date > 0) |
104 | cgit_print_age(info->tagger_date, -1, NULL); | 104 | cgit_print_age(info->tagger_date, -1, NULL); |
105 | html("</td><td>"); | 105 | html("</td><td>"); |
106 | if (info->tagger) | 106 | if (info->tagger) |
107 | html(info->tagger); | 107 | html(info->tagger); |
108 | html("</td><td>"); | 108 | html("</td><td>"); |
109 | cgit_object_link(tag->tagged); | 109 | cgit_object_link(tag->tagged); |
110 | html("</td></tr>\n"); | 110 | html("</td></tr>\n"); |
111 | } else { | 111 | } else { |
112 | if (!header) | 112 | if (!header) |
113 | print_tag_header(); | 113 | print_tag_header(); |
114 | html("<tr><td>"); | 114 | html("<tr><td>"); |
115 | html_txt(name); | 115 | html_txt(name); |
116 | html("</td><td colspan='2'/><td>"); | 116 | html("</td><td colspan='2'/><td>"); |
117 | cgit_object_link(ref->object); | 117 | cgit_object_link(ref->object); |
118 | html("</td></tr>\n"); | 118 | html("</td></tr>\n"); |
119 | } | 119 | } |
120 | return 0; | 120 | return 0; |
121 | } | 121 | } |
122 | 122 | ||
123 | static void print_refs_link(char *path) | 123 | static void print_refs_link(char *path) |
124 | { | 124 | { |
125 | html("<tr class='nohover'><td colspan='4'>"); | 125 | html("<tr class='nohover'><td colspan='4'>"); |
126 | cgit_refs_link("[...]", NULL, NULL, cgit_query_head, NULL, path); | 126 | cgit_refs_link("[...]", NULL, NULL, ctx.qry.head, NULL, path); |
127 | html("</td></tr>"); | 127 | html("</td></tr>"); |
128 | } | 128 | } |
129 | 129 | ||
130 | void cgit_print_branches(int maxcount) | 130 | void cgit_print_branches(int maxcount) |
131 | { | 131 | { |
132 | struct reflist list; | 132 | struct reflist list; |
133 | int i; | 133 | int i; |
134 | 134 | ||
135 | html("<tr class='nohover'><th class='left'>Branch</th>" | 135 | html("<tr class='nohover'><th class='left'>Branch</th>" |
136 | "<th class='left'>Idle</th>" | 136 | "<th class='left'>Idle</th>" |
137 | "<th class='left'>Author</th>" | 137 | "<th class='left'>Author</th>" |
138 | "<th class='left'>Head commit</th></tr>\n"); | 138 | "<th class='left'>Head commit</th></tr>\n"); |
139 | 139 | ||
140 | list.refs = NULL; | 140 | list.refs = NULL; |
141 | list.alloc = list.count = 0; | 141 | list.alloc = list.count = 0; |
142 | for_each_branch_ref(cgit_refs_cb, &list); | 142 | for_each_branch_ref(cgit_refs_cb, &list); |
143 | 143 | ||
144 | if (maxcount == 0 || maxcount > list.count) | 144 | if (maxcount == 0 || maxcount > list.count) |
145 | maxcount = list.count; | 145 | maxcount = list.count; |
146 | 146 | ||
147 | if (maxcount < list.count) { | 147 | if (maxcount < list.count) { |
148 | qsort(list.refs, list.count, sizeof(*list.refs), cmp_branch_age); | 148 | qsort(list.refs, list.count, sizeof(*list.refs), cmp_branch_age); |
149 | qsort(list.refs, maxcount, sizeof(*list.refs), cmp_ref_name); | 149 | qsort(list.refs, maxcount, sizeof(*list.refs), cmp_ref_name); |
150 | } | 150 | } |
151 | 151 | ||
152 | for(i=0; i<maxcount; i++) | 152 | for(i=0; i<maxcount; i++) |
153 | print_branch(list.refs[i]); | 153 | print_branch(list.refs[i]); |
154 | 154 | ||
155 | if (maxcount < list.count) | 155 | if (maxcount < list.count) |
156 | print_refs_link("heads"); | 156 | print_refs_link("heads"); |
157 | } | 157 | } |
158 | 158 | ||
159 | void cgit_print_tags(int maxcount) | 159 | void cgit_print_tags(int maxcount) |
160 | { | 160 | { |
161 | struct reflist list; | 161 | struct reflist list; |
162 | int i; | 162 | int i; |
163 | 163 | ||
164 | header = 0; | 164 | header = 0; |
165 | list.refs = NULL; | 165 | list.refs = NULL; |
166 | list.alloc = list.count = 0; | 166 | list.alloc = list.count = 0; |
167 | for_each_tag_ref(cgit_refs_cb, &list); | 167 | for_each_tag_ref(cgit_refs_cb, &list); |
168 | if (list.count == 0) | 168 | if (list.count == 0) |
169 | return; | 169 | return; |
170 | qsort(list.refs, list.count, sizeof(*list.refs), cmp_tag_age); | 170 | qsort(list.refs, list.count, sizeof(*list.refs), cmp_tag_age); |
171 | if (!maxcount) | 171 | if (!maxcount) |
172 | maxcount = list.count; | 172 | maxcount = list.count; |
173 | else if (maxcount > list.count) | 173 | else if (maxcount > list.count) |
174 | maxcount = list.count; | 174 | maxcount = list.count; |
175 | print_tag_header(); | 175 | print_tag_header(); |
176 | for(i=0; i<maxcount; i++) | 176 | for(i=0; i<maxcount; i++) |
177 | print_tag(list.refs[i]); | 177 | print_tag(list.refs[i]); |
178 | 178 | ||
179 | if (maxcount < list.count) | 179 | if (maxcount < list.count) |
180 | print_refs_link("tags"); | 180 | print_refs_link("tags"); |
181 | } | 181 | } |
182 | 182 | ||
183 | void cgit_print_summary() | 183 | void cgit_print_summary() |
184 | { | 184 | { |
185 | if (cgit_repo->readme) { | 185 | if (cgit_repo->readme) { |
186 | html("<div id='summary'>"); | 186 | html("<div id='summary'>"); |
187 | html_include(cgit_repo->readme); | 187 | html_include(cgit_repo->readme); |
188 | html("</div>"); | 188 | html("</div>"); |
189 | } | 189 | } |
190 | if (cgit_summary_log > 0) | 190 | if (cgit_summary_log > 0) |
191 | cgit_print_log(cgit_query_head, 0, cgit_summary_log, NULL, | 191 | cgit_print_log(ctx.qry.head, 0, cgit_summary_log, NULL, |
192 | NULL, NULL, 0); | 192 | NULL, NULL, 0); |
193 | html("<table summary='repository info' class='list nowrap'>"); | 193 | html("<table summary='repository info' class='list nowrap'>"); |
194 | if (cgit_summary_log > 0) | 194 | if (cgit_summary_log > 0) |
195 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); | 195 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); |
196 | cgit_print_branches(cgit_summary_branches); | 196 | cgit_print_branches(cgit_summary_branches); |
197 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); | 197 | html("<tr class='nohover'><td colspan='4'> </td></tr>"); |
198 | cgit_print_tags(cgit_summary_tags); | 198 | cgit_print_tags(cgit_summary_tags); |
199 | html("</table>"); | 199 | html("</table>"); |
200 | } | 200 | } |
@@ -1,216 +1,216 @@ | |||
1 | /* ui-tree.c: functions for tree output | 1 | /* ui-tree.c: functions for tree output |
2 | * | 2 | * |
3 | * Copyright (C) 2006 Lars Hjemli | 3 | * Copyright (C) 2006 Lars Hjemli |
4 | * | 4 | * |
5 | * Licensed under GNU General Public License v2 | 5 | * Licensed under GNU General Public License v2 |
6 | * (see COPYING for full license text) | 6 | * (see COPYING for full license text) |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | char *curr_rev; | 11 | char *curr_rev; |
12 | char *match_path; | 12 | char *match_path; |
13 | int header = 0; | 13 | int header = 0; |
14 | 14 | ||
15 | static void print_object(const unsigned char *sha1, char *path) | 15 | static void print_object(const unsigned char *sha1, char *path) |
16 | { | 16 | { |
17 | enum object_type type; | 17 | enum object_type type; |
18 | char *buf; | 18 | char *buf; |
19 | unsigned long size, lineno, start, idx; | 19 | unsigned long size, lineno, start, idx; |
20 | const char *linefmt = "<tr><td class='no'><a id='n%1$d' name='n%1$d' href='#n%1$d'>%1$d</a></td><td class='txt'>"; | 20 | const char *linefmt = "<tr><td class='no'><a id='n%1$d' name='n%1$d' href='#n%1$d'>%1$d</a></td><td class='txt'>"; |
21 | 21 | ||
22 | type = sha1_object_info(sha1, &size); | 22 | type = sha1_object_info(sha1, &size); |
23 | if (type == OBJ_BAD) { | 23 | if (type == OBJ_BAD) { |
24 | cgit_print_error(fmt("Bad object name: %s", | 24 | cgit_print_error(fmt("Bad object name: %s", |
25 | sha1_to_hex(sha1))); | 25 | sha1_to_hex(sha1))); |
26 | return; | 26 | return; |
27 | } | 27 | } |
28 | 28 | ||
29 | buf = read_sha1_file(sha1, &type, &size); | 29 | buf = read_sha1_file(sha1, &type, &size); |
30 | if (!buf) { | 30 | if (!buf) { |
31 | cgit_print_error(fmt("Error reading object %s", | 31 | cgit_print_error(fmt("Error reading object %s", |
32 | sha1_to_hex(sha1))); | 32 | sha1_to_hex(sha1))); |
33 | return; | 33 | return; |
34 | } | 34 | } |
35 | 35 | ||
36 | html(" blob: <a href='"); | 36 | html(" blob: <a href='"); |
37 | html_attr(cgit_pageurl(cgit_query_repo, "blob", fmt("id=%s", sha1_to_hex(sha1)))); | 37 | html_attr(cgit_pageurl(ctx.qry.repo, "blob", fmt("id=%s", sha1_to_hex(sha1)))); |
38 | htmlf("'>%s</a>",sha1_to_hex(sha1)); | 38 | htmlf("'>%s</a>",sha1_to_hex(sha1)); |
39 | 39 | ||
40 | html("<table summary='blob content' class='blob'>\n"); | 40 | html("<table summary='blob content' class='blob'>\n"); |
41 | idx = 0; | 41 | idx = 0; |
42 | start = 0; | 42 | start = 0; |
43 | lineno = 0; | 43 | lineno = 0; |
44 | while(idx < size) { | 44 | while(idx < size) { |
45 | if (buf[idx] == '\n') { | 45 | if (buf[idx] == '\n') { |
46 | buf[idx] = '\0'; | 46 | buf[idx] = '\0'; |
47 | htmlf(linefmt, ++lineno); | 47 | htmlf(linefmt, ++lineno); |
48 | html_txt(buf + start); | 48 | html_txt(buf + start); |
49 | html("</td></tr>\n"); | 49 | html("</td></tr>\n"); |
50 | start = idx + 1; | 50 | start = idx + 1; |
51 | } | 51 | } |
52 | idx++; | 52 | idx++; |
53 | } | 53 | } |
54 | htmlf(linefmt, ++lineno); | 54 | htmlf(linefmt, ++lineno); |
55 | html_txt(buf + start); | 55 | html_txt(buf + start); |
56 | html("</td></tr>\n"); | 56 | html("</td></tr>\n"); |
57 | html("</table>\n"); | 57 | html("</table>\n"); |
58 | } | 58 | } |
59 | 59 | ||
60 | 60 | ||
61 | static int ls_item(const unsigned char *sha1, const char *base, int baselen, | 61 | static int ls_item(const unsigned char *sha1, const char *base, int baselen, |
62 | const char *pathname, unsigned int mode, int stage) | 62 | const char *pathname, unsigned int mode, int stage) |
63 | { | 63 | { |
64 | char *name; | 64 | char *name; |
65 | char *fullpath; | 65 | char *fullpath; |
66 | enum object_type type; | 66 | enum object_type type; |
67 | unsigned long size = 0; | 67 | unsigned long size = 0; |
68 | 68 | ||
69 | name = xstrdup(pathname); | 69 | name = xstrdup(pathname); |
70 | fullpath = fmt("%s%s%s", cgit_query_path ? cgit_query_path : "", | 70 | fullpath = fmt("%s%s%s", ctx.qry.path ? ctx.qry.path : "", |
71 | cgit_query_path ? "/" : "", name); | 71 | ctx.qry.path ? "/" : "", name); |
72 | 72 | ||
73 | type = sha1_object_info(sha1, &size); | 73 | type = sha1_object_info(sha1, &size); |
74 | if (type == OBJ_BAD && !S_ISGITLINK(mode)) { | 74 | if (type == OBJ_BAD && !S_ISGITLINK(mode)) { |
75 | htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>", | 75 | htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>", |
76 | name, | 76 | name, |
77 | sha1_to_hex(sha1)); | 77 | sha1_to_hex(sha1)); |
78 | return 0; | 78 | return 0; |
79 | } | 79 | } |
80 | 80 | ||
81 | html("<tr><td class='ls-mode'>"); | 81 | html("<tr><td class='ls-mode'>"); |
82 | html_filemode(mode); | 82 | html_filemode(mode); |
83 | html("</td><td>"); | 83 | html("</td><td>"); |
84 | if (S_ISGITLINK(mode)) { | 84 | if (S_ISGITLINK(mode)) { |
85 | htmlf("<a class='ls-mod' href='"); | 85 | htmlf("<a class='ls-mod' href='"); |
86 | html_attr(fmt(cgit_repo->module_link, | 86 | html_attr(fmt(cgit_repo->module_link, |
87 | name, | 87 | name, |
88 | sha1_to_hex(sha1))); | 88 | sha1_to_hex(sha1))); |
89 | html("'>"); | 89 | html("'>"); |
90 | html_txt(name); | 90 | html_txt(name); |
91 | html("</a>"); | 91 | html("</a>"); |
92 | } else if (S_ISDIR(mode)) { | 92 | } else if (S_ISDIR(mode)) { |
93 | cgit_tree_link(name, NULL, "ls-dir", cgit_query_head, | 93 | cgit_tree_link(name, NULL, "ls-dir", ctx.qry.head, |
94 | curr_rev, fullpath); | 94 | curr_rev, fullpath); |
95 | } else { | 95 | } else { |
96 | cgit_tree_link(name, NULL, "ls-blob", cgit_query_head, | 96 | cgit_tree_link(name, NULL, "ls-blob", ctx.qry.head, |
97 | curr_rev, fullpath); | 97 | curr_rev, fullpath); |
98 | } | 98 | } |
99 | htmlf("</td><td class='ls-size'>%li</td>", size); | 99 | htmlf("</td><td class='ls-size'>%li</td>", size); |
100 | 100 | ||
101 | html("<td>"); | 101 | html("<td>"); |
102 | cgit_log_link("log", NULL, "button", cgit_query_head, curr_rev, | 102 | cgit_log_link("log", NULL, "button", ctx.qry.head, curr_rev, |
103 | fullpath, 0, NULL, NULL); | 103 | fullpath, 0, NULL, NULL); |
104 | html("</td></tr>\n"); | 104 | html("</td></tr>\n"); |
105 | free(name); | 105 | free(name); |
106 | return 0; | 106 | return 0; |
107 | } | 107 | } |
108 | 108 | ||
109 | static void ls_head() | 109 | static void ls_head() |
110 | { | 110 | { |
111 | html("<table summary='tree listing' class='list'>\n"); | 111 | html("<table summary='tree listing' class='list'>\n"); |
112 | html("<tr class='nohover'>"); | 112 | html("<tr class='nohover'>"); |
113 | html("<th class='left'>Mode</th>"); | 113 | html("<th class='left'>Mode</th>"); |
114 | html("<th class='left'>Name</th>"); | 114 | html("<th class='left'>Name</th>"); |
115 | html("<th class='right'>Size</th>"); | 115 | html("<th class='right'>Size</th>"); |
116 | html("<th/>"); | 116 | html("<th/>"); |
117 | html("</tr>\n"); | 117 | html("</tr>\n"); |
118 | header = 1; | 118 | header = 1; |
119 | } | 119 | } |
120 | 120 | ||
121 | static void ls_tail() | 121 | static void ls_tail() |
122 | { | 122 | { |
123 | if (!header) | 123 | if (!header) |
124 | return; | 124 | return; |
125 | html("</table>\n"); | 125 | html("</table>\n"); |
126 | header = 0; | 126 | header = 0; |
127 | } | 127 | } |
128 | 128 | ||
129 | static void ls_tree(const unsigned char *sha1, char *path) | 129 | static void ls_tree(const unsigned char *sha1, char *path) |
130 | { | 130 | { |
131 | struct tree *tree; | 131 | struct tree *tree; |
132 | 132 | ||
133 | tree = parse_tree_indirect(sha1); | 133 | tree = parse_tree_indirect(sha1); |
134 | if (!tree) { | 134 | if (!tree) { |
135 | cgit_print_error(fmt("Not a tree object: %s", | 135 | cgit_print_error(fmt("Not a tree object: %s", |
136 | sha1_to_hex(sha1))); | 136 | sha1_to_hex(sha1))); |
137 | return; | 137 | return; |
138 | } | 138 | } |
139 | 139 | ||
140 | ls_head(); | 140 | ls_head(); |
141 | read_tree_recursive(tree, "", 0, 1, NULL, ls_item); | 141 | read_tree_recursive(tree, "", 0, 1, NULL, ls_item); |
142 | ls_tail(); | 142 | ls_tail(); |
143 | } | 143 | } |
144 | 144 | ||
145 | 145 | ||
146 | static int walk_tree(const unsigned char *sha1, const char *base, int baselen, | 146 | static int walk_tree(const unsigned char *sha1, const char *base, int baselen, |
147 | const char *pathname, unsigned mode, int stage) | 147 | const char *pathname, unsigned mode, int stage) |
148 | { | 148 | { |
149 | static int state; | 149 | static int state; |
150 | static char buffer[PATH_MAX]; | 150 | static char buffer[PATH_MAX]; |
151 | char *url; | 151 | char *url; |
152 | 152 | ||
153 | if (state == 0) { | 153 | if (state == 0) { |
154 | memcpy(buffer, base, baselen); | 154 | memcpy(buffer, base, baselen); |
155 | strcpy(buffer+baselen, pathname); | 155 | strcpy(buffer+baselen, pathname); |
156 | url = cgit_pageurl(cgit_query_repo, "tree", | 156 | url = cgit_pageurl(ctx.qry.repo, "tree", |
157 | fmt("h=%s&path=%s", curr_rev, buffer)); | 157 | fmt("h=%s&path=%s", curr_rev, buffer)); |
158 | html("/"); | 158 | html("/"); |
159 | cgit_tree_link(xstrdup(pathname), NULL, NULL, cgit_query_head, | 159 | cgit_tree_link(xstrdup(pathname), NULL, NULL, ctx.qry.head, |
160 | curr_rev, buffer); | 160 | curr_rev, buffer); |
161 | 161 | ||
162 | if (strcmp(match_path, buffer)) | 162 | if (strcmp(match_path, buffer)) |
163 | return READ_TREE_RECURSIVE; | 163 | return READ_TREE_RECURSIVE; |
164 | 164 | ||
165 | if (S_ISDIR(mode)) { | 165 | if (S_ISDIR(mode)) { |
166 | state = 1; | 166 | state = 1; |
167 | ls_head(); | 167 | ls_head(); |
168 | return READ_TREE_RECURSIVE; | 168 | return READ_TREE_RECURSIVE; |
169 | } else { | 169 | } else { |
170 | print_object(sha1, buffer); | 170 | print_object(sha1, buffer); |
171 | return 0; | 171 | return 0; |
172 | } | 172 | } |
173 | } | 173 | } |
174 | ls_item(sha1, base, baselen, pathname, mode, stage); | 174 | ls_item(sha1, base, baselen, pathname, mode, stage); |
175 | return 0; | 175 | return 0; |
176 | } | 176 | } |
177 | 177 | ||
178 | 178 | ||
179 | /* | 179 | /* |
180 | * Show a tree or a blob | 180 | * Show a tree or a blob |
181 | * rev: the commit pointing at the root tree object | 181 | * rev: the commit pointing at the root tree object |
182 | * path: path to tree or blob | 182 | * path: path to tree or blob |
183 | */ | 183 | */ |
184 | void cgit_print_tree(const char *rev, char *path) | 184 | void cgit_print_tree(const char *rev, char *path) |
185 | { | 185 | { |
186 | unsigned char sha1[20]; | 186 | unsigned char sha1[20]; |
187 | struct commit *commit; | 187 | struct commit *commit; |
188 | const char *paths[] = {path, NULL}; | 188 | const char *paths[] = {path, NULL}; |
189 | 189 | ||
190 | if (!rev) | 190 | if (!rev) |
191 | rev = cgit_query_head; | 191 | rev = ctx.qry.head; |
192 | 192 | ||
193 | curr_rev = xstrdup(rev); | 193 | curr_rev = xstrdup(rev); |
194 | if (get_sha1(rev, sha1)) { | 194 | if (get_sha1(rev, sha1)) { |
195 | cgit_print_error(fmt("Invalid revision name: %s", rev)); | 195 | cgit_print_error(fmt("Invalid revision name: %s", rev)); |
196 | return; | 196 | return; |
197 | } | 197 | } |
198 | commit = lookup_commit_reference(sha1); | 198 | commit = lookup_commit_reference(sha1); |
199 | if (!commit || parse_commit(commit)) { | 199 | if (!commit || parse_commit(commit)) { |
200 | cgit_print_error(fmt("Invalid commit reference: %s", rev)); | 200 | cgit_print_error(fmt("Invalid commit reference: %s", rev)); |
201 | return; | 201 | return; |
202 | } | 202 | } |
203 | 203 | ||
204 | html("path: <a href='"); | 204 | html("path: <a href='"); |
205 | html_attr(cgit_pageurl(cgit_query_repo, "tree", fmt("h=%s", rev))); | 205 | html_attr(cgit_pageurl(ctx.qry.repo, "tree", fmt("h=%s", rev))); |
206 | html("'>root</a>"); | 206 | html("'>root</a>"); |
207 | 207 | ||
208 | if (path == NULL) { | 208 | if (path == NULL) { |
209 | ls_tree(commit->tree->object.sha1, NULL); | 209 | ls_tree(commit->tree->object.sha1, NULL); |
210 | return; | 210 | return; |
211 | } | 211 | } |
212 | 212 | ||
213 | match_path = path; | 213 | match_path = path; |
214 | read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree); | 214 | read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree); |
215 | ls_tail(); | 215 | ls_tail(); |
216 | } | 216 | } |