-rw-r--r-- | cgit.c | 3 | ||||
-rw-r--r-- | cgit.h | 1 | ||||
-rw-r--r-- | cgitrc.5.txt | 5 | ||||
-rw-r--r-- | scan-tree.c | 33 |
4 files changed, 33 insertions, 9 deletions
@@ -106,64 +106,66 @@ void config_cb(const char *name, const char *value) | |||
106 | else if (!strcmp(name, "favicon")) | 106 | else if (!strcmp(name, "favicon")) |
107 | ctx.cfg.favicon = xstrdup(value); | 107 | ctx.cfg.favicon = xstrdup(value); |
108 | else if (!strcmp(name, "footer")) | 108 | else if (!strcmp(name, "footer")) |
109 | ctx.cfg.footer = xstrdup(value); | 109 | ctx.cfg.footer = xstrdup(value); |
110 | else if (!strcmp(name, "head-include")) | 110 | else if (!strcmp(name, "head-include")) |
111 | ctx.cfg.head_include = xstrdup(value); | 111 | ctx.cfg.head_include = xstrdup(value); |
112 | else if (!strcmp(name, "header")) | 112 | else if (!strcmp(name, "header")) |
113 | ctx.cfg.header = xstrdup(value); | 113 | ctx.cfg.header = xstrdup(value); |
114 | else if (!strcmp(name, "logo")) | 114 | else if (!strcmp(name, "logo")) |
115 | ctx.cfg.logo = xstrdup(value); | 115 | ctx.cfg.logo = xstrdup(value); |
116 | else if (!strcmp(name, "index-header")) | 116 | else if (!strcmp(name, "index-header")) |
117 | ctx.cfg.index_header = xstrdup(value); | 117 | ctx.cfg.index_header = xstrdup(value); |
118 | else if (!strcmp(name, "index-info")) | 118 | else if (!strcmp(name, "index-info")) |
119 | ctx.cfg.index_info = xstrdup(value); | 119 | ctx.cfg.index_info = xstrdup(value); |
120 | else if (!strcmp(name, "logo-link")) | 120 | else if (!strcmp(name, "logo-link")) |
121 | ctx.cfg.logo_link = xstrdup(value); | 121 | ctx.cfg.logo_link = xstrdup(value); |
122 | else if (!strcmp(name, "module-link")) | 122 | else if (!strcmp(name, "module-link")) |
123 | ctx.cfg.module_link = xstrdup(value); | 123 | ctx.cfg.module_link = xstrdup(value); |
124 | else if (!strcmp(name, "virtual-root")) { | 124 | else if (!strcmp(name, "virtual-root")) { |
125 | ctx.cfg.virtual_root = trim_end(value, '/'); | 125 | ctx.cfg.virtual_root = trim_end(value, '/'); |
126 | if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) | 126 | if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) |
127 | ctx.cfg.virtual_root = ""; | 127 | ctx.cfg.virtual_root = ""; |
128 | } else if (!strcmp(name, "nocache")) | 128 | } else if (!strcmp(name, "nocache")) |
129 | ctx.cfg.nocache = atoi(value); | 129 | ctx.cfg.nocache = atoi(value); |
130 | else if (!strcmp(name, "noplainemail")) | 130 | else if (!strcmp(name, "noplainemail")) |
131 | ctx.cfg.noplainemail = atoi(value); | 131 | ctx.cfg.noplainemail = atoi(value); |
132 | else if (!strcmp(name, "noheader")) | 132 | else if (!strcmp(name, "noheader")) |
133 | ctx.cfg.noheader = atoi(value); | 133 | ctx.cfg.noheader = atoi(value); |
134 | else if (!strcmp(name, "snapshots")) | 134 | else if (!strcmp(name, "snapshots")) |
135 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); | 135 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); |
136 | else if (!strcmp(name, "enable-filter-overrides")) | 136 | else if (!strcmp(name, "enable-filter-overrides")) |
137 | ctx.cfg.enable_filter_overrides = atoi(value); | 137 | ctx.cfg.enable_filter_overrides = atoi(value); |
138 | else if (!strcmp(name, "enable-gitweb-owner")) | ||
139 | ctx.cfg.enable_gitweb_owner = atoi(value); | ||
138 | else if (!strcmp(name, "enable-index-links")) | 140 | else if (!strcmp(name, "enable-index-links")) |
139 | ctx.cfg.enable_index_links = atoi(value); | 141 | ctx.cfg.enable_index_links = atoi(value); |
140 | else if (!strcmp(name, "enable-log-filecount")) | 142 | else if (!strcmp(name, "enable-log-filecount")) |
141 | ctx.cfg.enable_log_filecount = atoi(value); | 143 | ctx.cfg.enable_log_filecount = atoi(value); |
142 | else if (!strcmp(name, "enable-log-linecount")) | 144 | else if (!strcmp(name, "enable-log-linecount")) |
143 | ctx.cfg.enable_log_linecount = atoi(value); | 145 | ctx.cfg.enable_log_linecount = atoi(value); |
144 | else if (!strcmp(name, "enable-remote-branches")) | 146 | else if (!strcmp(name, "enable-remote-branches")) |
145 | ctx.cfg.enable_remote_branches = atoi(value); | 147 | ctx.cfg.enable_remote_branches = atoi(value); |
146 | else if (!strcmp(name, "enable-subject-links")) | 148 | else if (!strcmp(name, "enable-subject-links")) |
147 | ctx.cfg.enable_subject_links = atoi(value); | 149 | ctx.cfg.enable_subject_links = atoi(value); |
148 | else if (!strcmp(name, "enable-tree-linenumbers")) | 150 | else if (!strcmp(name, "enable-tree-linenumbers")) |
149 | ctx.cfg.enable_tree_linenumbers = atoi(value); | 151 | ctx.cfg.enable_tree_linenumbers = atoi(value); |
150 | else if (!strcmp(name, "max-stats")) | 152 | else if (!strcmp(name, "max-stats")) |
151 | ctx.cfg.max_stats = cgit_find_stats_period(value, NULL); | 153 | ctx.cfg.max_stats = cgit_find_stats_period(value, NULL); |
152 | else if (!strcmp(name, "cache-size")) | 154 | else if (!strcmp(name, "cache-size")) |
153 | ctx.cfg.cache_size = atoi(value); | 155 | ctx.cfg.cache_size = atoi(value); |
154 | else if (!strcmp(name, "cache-root")) | 156 | else if (!strcmp(name, "cache-root")) |
155 | ctx.cfg.cache_root = xstrdup(expand_macros(value)); | 157 | ctx.cfg.cache_root = xstrdup(expand_macros(value)); |
156 | else if (!strcmp(name, "cache-root-ttl")) | 158 | else if (!strcmp(name, "cache-root-ttl")) |
157 | ctx.cfg.cache_root_ttl = atoi(value); | 159 | ctx.cfg.cache_root_ttl = atoi(value); |
158 | else if (!strcmp(name, "cache-repo-ttl")) | 160 | else if (!strcmp(name, "cache-repo-ttl")) |
159 | ctx.cfg.cache_repo_ttl = atoi(value); | 161 | ctx.cfg.cache_repo_ttl = atoi(value); |
160 | else if (!strcmp(name, "cache-scanrc-ttl")) | 162 | else if (!strcmp(name, "cache-scanrc-ttl")) |
161 | ctx.cfg.cache_scanrc_ttl = atoi(value); | 163 | ctx.cfg.cache_scanrc_ttl = atoi(value); |
162 | else if (!strcmp(name, "cache-static-ttl")) | 164 | else if (!strcmp(name, "cache-static-ttl")) |
163 | ctx.cfg.cache_static_ttl = atoi(value); | 165 | ctx.cfg.cache_static_ttl = atoi(value); |
164 | else if (!strcmp(name, "cache-dynamic-ttl")) | 166 | else if (!strcmp(name, "cache-dynamic-ttl")) |
165 | ctx.cfg.cache_dynamic_ttl = atoi(value); | 167 | ctx.cfg.cache_dynamic_ttl = atoi(value); |
166 | else if (!strcmp(name, "about-filter")) | 168 | else if (!strcmp(name, "about-filter")) |
167 | ctx.cfg.about_filter = new_filter(value, 0); | 169 | ctx.cfg.about_filter = new_filter(value, 0); |
168 | else if (!strcmp(name, "commit-filter")) | 170 | else if (!strcmp(name, "commit-filter")) |
169 | ctx.cfg.commit_filter = new_filter(value, 0); | 171 | ctx.cfg.commit_filter = new_filter(value, 0); |
@@ -264,64 +266,65 @@ static void querystring_cb(const char *name, const char *value) | |||
264 | } else if (!strcmp(name, "ss")) { | 266 | } else if (!strcmp(name, "ss")) { |
265 | ctx.qry.ssdiff = atoi(value); | 267 | ctx.qry.ssdiff = atoi(value); |
266 | } else if (!strcmp(name, "all")) { | 268 | } else if (!strcmp(name, "all")) { |
267 | ctx.qry.show_all = atoi(value); | 269 | ctx.qry.show_all = atoi(value); |
268 | } else if (!strcmp(name, "context")) { | 270 | } else if (!strcmp(name, "context")) { |
269 | ctx.qry.context = atoi(value); | 271 | ctx.qry.context = atoi(value); |
270 | } else if (!strcmp(name, "ignorews")) { | 272 | } else if (!strcmp(name, "ignorews")) { |
271 | ctx.qry.ignorews = atoi(value); | 273 | ctx.qry.ignorews = atoi(value); |
272 | } | 274 | } |
273 | } | 275 | } |
274 | 276 | ||
275 | char *xstrdupn(const char *str) | 277 | char *xstrdupn(const char *str) |
276 | { | 278 | { |
277 | return (str ? xstrdup(str) : NULL); | 279 | return (str ? xstrdup(str) : NULL); |
278 | } | 280 | } |
279 | 281 | ||
280 | static void prepare_context(struct cgit_context *ctx) | 282 | static void prepare_context(struct cgit_context *ctx) |
281 | { | 283 | { |
282 | memset(ctx, 0, sizeof(*ctx)); | 284 | memset(ctx, 0, sizeof(*ctx)); |
283 | ctx->cfg.agefile = "info/web/last-modified"; | 285 | ctx->cfg.agefile = "info/web/last-modified"; |
284 | ctx->cfg.nocache = 0; | 286 | ctx->cfg.nocache = 0; |
285 | ctx->cfg.cache_size = 0; | 287 | ctx->cfg.cache_size = 0; |
286 | ctx->cfg.cache_dynamic_ttl = 5; | 288 | ctx->cfg.cache_dynamic_ttl = 5; |
287 | ctx->cfg.cache_max_create_time = 5; | 289 | ctx->cfg.cache_max_create_time = 5; |
288 | ctx->cfg.cache_repo_ttl = 5; | 290 | ctx->cfg.cache_repo_ttl = 5; |
289 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; | 291 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; |
290 | ctx->cfg.cache_root_ttl = 5; | 292 | ctx->cfg.cache_root_ttl = 5; |
291 | ctx->cfg.cache_scanrc_ttl = 15; | 293 | ctx->cfg.cache_scanrc_ttl = 15; |
292 | ctx->cfg.cache_static_ttl = -1; | 294 | ctx->cfg.cache_static_ttl = -1; |
293 | ctx->cfg.css = "/cgit.css"; | 295 | ctx->cfg.css = "/cgit.css"; |
294 | ctx->cfg.logo = "/cgit.png"; | 296 | ctx->cfg.logo = "/cgit.png"; |
295 | ctx->cfg.local_time = 0; | 297 | ctx->cfg.local_time = 0; |
298 | ctx->cfg.enable_gitweb_owner = 1; | ||
296 | ctx->cfg.enable_tree_linenumbers = 1; | 299 | ctx->cfg.enable_tree_linenumbers = 1; |
297 | ctx->cfg.max_repo_count = 50; | 300 | ctx->cfg.max_repo_count = 50; |
298 | ctx->cfg.max_commit_count = 50; | 301 | ctx->cfg.max_commit_count = 50; |
299 | ctx->cfg.max_lock_attempts = 5; | 302 | ctx->cfg.max_lock_attempts = 5; |
300 | ctx->cfg.max_msg_len = 80; | 303 | ctx->cfg.max_msg_len = 80; |
301 | ctx->cfg.max_repodesc_len = 80; | 304 | ctx->cfg.max_repodesc_len = 80; |
302 | ctx->cfg.max_blob_size = 0; | 305 | ctx->cfg.max_blob_size = 0; |
303 | ctx->cfg.max_stats = 0; | 306 | ctx->cfg.max_stats = 0; |
304 | ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; | 307 | ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; |
305 | ctx->cfg.project_list = NULL; | 308 | ctx->cfg.project_list = NULL; |
306 | ctx->cfg.renamelimit = -1; | 309 | ctx->cfg.renamelimit = -1; |
307 | ctx->cfg.remove_suffix = 0; | 310 | ctx->cfg.remove_suffix = 0; |
308 | ctx->cfg.robots = "index, nofollow"; | 311 | ctx->cfg.robots = "index, nofollow"; |
309 | ctx->cfg.root_title = "Git repository browser"; | 312 | ctx->cfg.root_title = "Git repository browser"; |
310 | ctx->cfg.root_desc = "a fast webinterface for the git dscm"; | 313 | ctx->cfg.root_desc = "a fast webinterface for the git dscm"; |
311 | ctx->cfg.script_name = CGIT_SCRIPT_NAME; | 314 | ctx->cfg.script_name = CGIT_SCRIPT_NAME; |
312 | ctx->cfg.section = ""; | 315 | ctx->cfg.section = ""; |
313 | ctx->cfg.summary_branches = 10; | 316 | ctx->cfg.summary_branches = 10; |
314 | ctx->cfg.summary_log = 10; | 317 | ctx->cfg.summary_log = 10; |
315 | ctx->cfg.summary_tags = 10; | 318 | ctx->cfg.summary_tags = 10; |
316 | ctx->cfg.max_atom_items = 10; | 319 | ctx->cfg.max_atom_items = 10; |
317 | ctx->cfg.ssdiff = 0; | 320 | ctx->cfg.ssdiff = 0; |
318 | ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG")); | 321 | ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG")); |
319 | ctx->env.http_host = xstrdupn(getenv("HTTP_HOST")); | 322 | ctx->env.http_host = xstrdupn(getenv("HTTP_HOST")); |
320 | ctx->env.https = xstrdupn(getenv("HTTPS")); | 323 | ctx->env.https = xstrdupn(getenv("HTTPS")); |
321 | ctx->env.no_http = xstrdupn(getenv("NO_HTTP")); | 324 | ctx->env.no_http = xstrdupn(getenv("NO_HTTP")); |
322 | ctx->env.path_info = xstrdupn(getenv("PATH_INFO")); | 325 | ctx->env.path_info = xstrdupn(getenv("PATH_INFO")); |
323 | ctx->env.query_string = xstrdupn(getenv("QUERY_STRING")); | 326 | ctx->env.query_string = xstrdupn(getenv("QUERY_STRING")); |
324 | ctx->env.request_method = xstrdupn(getenv("REQUEST_METHOD")); | 327 | ctx->env.request_method = xstrdupn(getenv("REQUEST_METHOD")); |
325 | ctx->env.script_name = xstrdupn(getenv("SCRIPT_NAME")); | 328 | ctx->env.script_name = xstrdupn(getenv("SCRIPT_NAME")); |
326 | ctx->env.server_name = xstrdupn(getenv("SERVER_NAME")); | 329 | ctx->env.server_name = xstrdupn(getenv("SERVER_NAME")); |
327 | ctx->env.server_port = xstrdupn(getenv("SERVER_PORT")); | 330 | ctx->env.server_port = xstrdupn(getenv("SERVER_PORT")); |
@@ -154,64 +154,65 @@ struct cgit_query { | |||
154 | 154 | ||
155 | struct cgit_config { | 155 | struct cgit_config { |
156 | char *agefile; | 156 | char *agefile; |
157 | char *cache_root; | 157 | char *cache_root; |
158 | char *clone_prefix; | 158 | char *clone_prefix; |
159 | char *css; | 159 | char *css; |
160 | char *favicon; | 160 | char *favicon; |
161 | char *footer; | 161 | char *footer; |
162 | char *head_include; | 162 | char *head_include; |
163 | char *header; | 163 | char *header; |
164 | char *index_header; | 164 | char *index_header; |
165 | char *index_info; | 165 | char *index_info; |
166 | char *logo; | 166 | char *logo; |
167 | char *logo_link; | 167 | char *logo_link; |
168 | char *module_link; | 168 | char *module_link; |
169 | char *project_list; | 169 | char *project_list; |
170 | char *robots; | 170 | char *robots; |
171 | char *root_title; | 171 | char *root_title; |
172 | char *root_desc; | 172 | char *root_desc; |
173 | char *root_readme; | 173 | char *root_readme; |
174 | char *script_name; | 174 | char *script_name; |
175 | char *section; | 175 | char *section; |
176 | char *virtual_root; | 176 | char *virtual_root; |
177 | int cache_size; | 177 | int cache_size; |
178 | int cache_dynamic_ttl; | 178 | int cache_dynamic_ttl; |
179 | int cache_max_create_time; | 179 | int cache_max_create_time; |
180 | int cache_repo_ttl; | 180 | int cache_repo_ttl; |
181 | int cache_root_ttl; | 181 | int cache_root_ttl; |
182 | int cache_scanrc_ttl; | 182 | int cache_scanrc_ttl; |
183 | int cache_static_ttl; | 183 | int cache_static_ttl; |
184 | int embedded; | 184 | int embedded; |
185 | int enable_filter_overrides; | 185 | int enable_filter_overrides; |
186 | int enable_gitweb_owner; | ||
186 | int enable_index_links; | 187 | int enable_index_links; |
187 | int enable_log_filecount; | 188 | int enable_log_filecount; |
188 | int enable_log_linecount; | 189 | int enable_log_linecount; |
189 | int enable_remote_branches; | 190 | int enable_remote_branches; |
190 | int enable_subject_links; | 191 | int enable_subject_links; |
191 | int enable_tree_linenumbers; | 192 | int enable_tree_linenumbers; |
192 | int local_time; | 193 | int local_time; |
193 | int max_atom_items; | 194 | int max_atom_items; |
194 | int max_repo_count; | 195 | int max_repo_count; |
195 | int max_commit_count; | 196 | int max_commit_count; |
196 | int max_lock_attempts; | 197 | int max_lock_attempts; |
197 | int max_msg_len; | 198 | int max_msg_len; |
198 | int max_repodesc_len; | 199 | int max_repodesc_len; |
199 | int max_blob_size; | 200 | int max_blob_size; |
200 | int max_stats; | 201 | int max_stats; |
201 | int nocache; | 202 | int nocache; |
202 | int noplainemail; | 203 | int noplainemail; |
203 | int noheader; | 204 | int noheader; |
204 | int renamelimit; | 205 | int renamelimit; |
205 | int remove_suffix; | 206 | int remove_suffix; |
206 | int snapshots; | 207 | int snapshots; |
207 | int summary_branches; | 208 | int summary_branches; |
208 | int summary_log; | 209 | int summary_log; |
209 | int summary_tags; | 210 | int summary_tags; |
210 | int ssdiff; | 211 | int ssdiff; |
211 | struct string_list mimetypes; | 212 | struct string_list mimetypes; |
212 | struct cgit_filter *about_filter; | 213 | struct cgit_filter *about_filter; |
213 | struct cgit_filter *commit_filter; | 214 | struct cgit_filter *commit_filter; |
214 | struct cgit_filter *source_filter; | 215 | struct cgit_filter *source_filter; |
215 | }; | 216 | }; |
216 | 217 | ||
217 | struct cgit_page { | 218 | struct cgit_page { |
diff --git a/cgitrc.5.txt b/cgitrc.5.txt index 6fb1083..5d77973 100644 --- a/cgitrc.5.txt +++ b/cgitrc.5.txt | |||
@@ -66,64 +66,69 @@ cache-size:: | |||
66 | (i.e. caching is disabled). | 66 | (i.e. caching is disabled). |
67 | 67 | ||
68 | cache-static-ttl:: | 68 | cache-static-ttl:: |
69 | Number which specifies the time-to-live, in minutes, for the cached | 69 | Number which specifies the time-to-live, in minutes, for the cached |
70 | version of repository pages accessed with a fixed SHA1. Default value: | 70 | version of repository pages accessed with a fixed SHA1. Default value: |
71 | "5". | 71 | "5". |
72 | 72 | ||
73 | clone-prefix:: | 73 | clone-prefix:: |
74 | Space-separated list of common prefixes which, when combined with a | 74 | Space-separated list of common prefixes which, when combined with a |
75 | repository url, generates valid clone urls for the repository. This | 75 | repository url, generates valid clone urls for the repository. This |
76 | setting is only used if `repo.clone-url` is unspecified. Default value: | 76 | setting is only used if `repo.clone-url` is unspecified. Default value: |
77 | none. | 77 | none. |
78 | 78 | ||
79 | commit-filter:: | 79 | commit-filter:: |
80 | Specifies a command which will be invoked to format commit messages. | 80 | Specifies a command which will be invoked to format commit messages. |
81 | The command will get the message on its STDIN, and the STDOUT from the | 81 | The command will get the message on its STDIN, and the STDOUT from the |
82 | command will be included verbatim as the commit message, i.e. this can | 82 | command will be included verbatim as the commit message, i.e. this can |
83 | be used to implement bugtracker integration. Default value: none. | 83 | be used to implement bugtracker integration. Default value: none. |
84 | 84 | ||
85 | css:: | 85 | css:: |
86 | Url which specifies the css document to include in all cgit pages. | 86 | Url which specifies the css document to include in all cgit pages. |
87 | Default value: "/cgit.css". | 87 | Default value: "/cgit.css". |
88 | 88 | ||
89 | embedded:: | 89 | embedded:: |
90 | Flag which, when set to "1", will make cgit generate a html fragment | 90 | Flag which, when set to "1", will make cgit generate a html fragment |
91 | suitable for embedding in other html pages. Default value: none. See | 91 | suitable for embedding in other html pages. Default value: none. See |
92 | also: "noheader". | 92 | also: "noheader". |
93 | 93 | ||
94 | enable-filter-overrides:: | 94 | enable-filter-overrides:: |
95 | Flag which, when set to "1", allows all filter settings to be | 95 | Flag which, when set to "1", allows all filter settings to be |
96 | overridden in repository-specific cgitrc files. Default value: none. | 96 | overridden in repository-specific cgitrc files. Default value: none. |
97 | 97 | ||
98 | enable-gitweb-owner:: | ||
99 | If set to "1" and scan-path is enabled, we first check each repository | ||
100 | for the git config value "gitweb.owner" to determine the owner. | ||
101 | Default value: "1". See also: scan-path. | ||
102 | |||
98 | enable-index-links:: | 103 | enable-index-links:: |
99 | Flag which, when set to "1", will make cgit generate extra links for | 104 | Flag which, when set to "1", will make cgit generate extra links for |
100 | each repo in the repository index (specifically, to the "summary", | 105 | each repo in the repository index (specifically, to the "summary", |
101 | "commit" and "tree" pages). Default value: "0". | 106 | "commit" and "tree" pages). Default value: "0". |
102 | 107 | ||
103 | enable-log-filecount:: | 108 | enable-log-filecount:: |
104 | Flag which, when set to "1", will make cgit print the number of | 109 | Flag which, when set to "1", will make cgit print the number of |
105 | modified files for each commit on the repository log page. Default | 110 | modified files for each commit on the repository log page. Default |
106 | value: "0". | 111 | value: "0". |
107 | 112 | ||
108 | enable-log-linecount:: | 113 | enable-log-linecount:: |
109 | Flag which, when set to "1", will make cgit print the number of added | 114 | Flag which, when set to "1", will make cgit print the number of added |
110 | and removed lines for each commit on the repository log page. Default | 115 | and removed lines for each commit on the repository log page. Default |
111 | value: "0". | 116 | value: "0". |
112 | 117 | ||
113 | enable-remote-branches:: | 118 | enable-remote-branches:: |
114 | Flag which, when set to "1", will make cgit display remote branches | 119 | Flag which, when set to "1", will make cgit display remote branches |
115 | in the summary and refs views. Default value: "0". See also: | 120 | in the summary and refs views. Default value: "0". See also: |
116 | "repo.enable-remote-branches". | 121 | "repo.enable-remote-branches". |
117 | 122 | ||
118 | enable-subject-links:: | 123 | enable-subject-links:: |
119 | Flag which, when set to "1", will make cgit use the subject of the | 124 | Flag which, when set to "1", will make cgit use the subject of the |
120 | parent commit as link text when generating links to parent commits | 125 | parent commit as link text when generating links to parent commits |
121 | in commit view. Default value: "0". See also: | 126 | in commit view. Default value: "0". See also: |
122 | "repo.enable-subject-links". | 127 | "repo.enable-subject-links". |
123 | 128 | ||
124 | enable-tree-linenumbers:: | 129 | enable-tree-linenumbers:: |
125 | Flag which, when set to "1", will make cgit generate linenumber links | 130 | Flag which, when set to "1", will make cgit generate linenumber links |
126 | for plaintext blobs printed in the tree view. Default value: "1". | 131 | for plaintext blobs printed in the tree view. Default value: "1". |
127 | 132 | ||
128 | favicon:: | 133 | favicon:: |
129 | Url used as link to a shortcut icon for cgit. If specified, it is | 134 | Url used as link to a shortcut icon for cgit. If specified, it is |
diff --git a/scan-tree.c b/scan-tree.c index a83a78c..e987824 100644 --- a/scan-tree.c +++ b/scan-tree.c | |||
@@ -18,107 +18,122 @@ static int is_git_dir(const char *path) | |||
18 | { | 18 | { |
19 | struct stat st; | 19 | struct stat st; |
20 | static char buf[MAX_PATH]; | 20 | static char buf[MAX_PATH]; |
21 | 21 | ||
22 | if (snprintf(buf, MAX_PATH, "%s/objects", path) >= MAX_PATH) { | 22 | if (snprintf(buf, MAX_PATH, "%s/objects", path) >= MAX_PATH) { |
23 | fprintf(stderr, "Insanely long path: %s\n", path); | 23 | fprintf(stderr, "Insanely long path: %s\n", path); |
24 | return 0; | 24 | return 0; |
25 | } | 25 | } |
26 | if (stat(buf, &st)) { | 26 | if (stat(buf, &st)) { |
27 | if (errno != ENOENT) | 27 | if (errno != ENOENT) |
28 | fprintf(stderr, "Error checking path %s: %s (%d)\n", | 28 | fprintf(stderr, "Error checking path %s: %s (%d)\n", |
29 | path, strerror(errno), errno); | 29 | path, strerror(errno), errno); |
30 | return 0; | 30 | return 0; |
31 | } | 31 | } |
32 | if (!S_ISDIR(st.st_mode)) | 32 | if (!S_ISDIR(st.st_mode)) |
33 | return 0; | 33 | return 0; |
34 | 34 | ||
35 | sprintf(buf, "%s/HEAD", path); | 35 | sprintf(buf, "%s/HEAD", path); |
36 | if (stat(buf, &st)) { | 36 | if (stat(buf, &st)) { |
37 | if (errno != ENOENT) | 37 | if (errno != ENOENT) |
38 | fprintf(stderr, "Error checking path %s: %s (%d)\n", | 38 | fprintf(stderr, "Error checking path %s: %s (%d)\n", |
39 | path, strerror(errno), errno); | 39 | path, strerror(errno), errno); |
40 | return 0; | 40 | return 0; |
41 | } | 41 | } |
42 | if (!S_ISREG(st.st_mode)) | 42 | if (!S_ISREG(st.st_mode)) |
43 | return 0; | 43 | return 0; |
44 | 44 | ||
45 | return 1; | 45 | return 1; |
46 | } | 46 | } |
47 | 47 | ||
48 | struct cgit_repo *repo; | 48 | struct cgit_repo *repo; |
49 | repo_config_fn config_fn; | 49 | repo_config_fn config_fn; |
50 | char *owner; | ||
50 | 51 | ||
51 | static void repo_config(const char *name, const char *value) | 52 | static void repo_config(const char *name, const char *value) |
52 | { | 53 | { |
53 | config_fn(repo, name, value); | 54 | config_fn(repo, name, value); |
54 | } | 55 | } |
55 | 56 | ||
57 | static int git_owner_config(const char *key, const char *value, void *cb) | ||
58 | { | ||
59 | if (!strcmp(key, "gitweb.owner")) | ||
60 | owner = xstrdup(value); | ||
61 | return 0; | ||
62 | } | ||
63 | |||
56 | static void add_repo(const char *base, const char *path, repo_config_fn fn) | 64 | static void add_repo(const char *base, const char *path, repo_config_fn fn) |
57 | { | 65 | { |
58 | struct stat st; | 66 | struct stat st; |
59 | struct passwd *pwd; | 67 | struct passwd *pwd; |
60 | char *p; | 68 | char *p; |
61 | size_t size; | 69 | size_t size; |
62 | 70 | ||
63 | if (stat(path, &st)) { | 71 | if (stat(path, &st)) { |
64 | fprintf(stderr, "Error accessing %s: %s (%d)\n", | 72 | fprintf(stderr, "Error accessing %s: %s (%d)\n", |
65 | path, strerror(errno), errno); | 73 | path, strerror(errno), errno); |
66 | return; | 74 | return; |
67 | } | 75 | } |
68 | if (!stat(fmt("%s/noweb", path), &st)) | 76 | if (!stat(fmt("%s/noweb", path), &st)) |
69 | return; | 77 | return; |
70 | if ((pwd = getpwuid(st.st_uid)) == NULL) { | 78 | |
71 | fprintf(stderr, "Error reading owner-info for %s: %s (%d)\n", | 79 | owner = NULL; |
72 | path, strerror(errno), errno); | 80 | if (ctx.cfg.enable_gitweb_owner) |
73 | return; | 81 | git_config_from_file(git_owner_config, fmt("%s/config", path), NULL); |
74 | } | ||
75 | if (base == path) | 82 | if (base == path) |
76 | p = fmt("%s", path); | 83 | p = fmt("%s", path); |
77 | else | 84 | else |
78 | p = fmt("%s", path + strlen(base) + 1); | 85 | p = fmt("%s", path + strlen(base) + 1); |
79 | 86 | ||
80 | if (!strcmp(p + strlen(p) - 5, "/.git")) | 87 | if (!strcmp(p + strlen(p) - 5, "/.git")) |
81 | p[strlen(p) - 5] = '\0'; | 88 | p[strlen(p) - 5] = '\0'; |
82 | 89 | ||
83 | repo = cgit_add_repo(xstrdup(p)); | 90 | repo = cgit_add_repo(xstrdup(p)); |
84 | if (ctx.cfg.remove_suffix) | 91 | if (ctx.cfg.remove_suffix) |
85 | if ((p = strrchr(repo->url, '.')) && !strcmp(p, ".git")) | 92 | if ((p = strrchr(repo->url, '.')) && !strcmp(p, ".git")) |
86 | *p = '\0'; | 93 | *p = '\0'; |
87 | repo->name = repo->url; | 94 | repo->name = repo->url; |
88 | repo->path = xstrdup(path); | 95 | repo->path = xstrdup(path); |
89 | p = (pwd && pwd->pw_gecos) ? strchr(pwd->pw_gecos, ',') : NULL; | 96 | while (!owner) { |
90 | if (p) | 97 | if ((pwd = getpwuid(st.st_uid)) == NULL) { |
91 | *p = '\0'; | 98 | fprintf(stderr, "Error reading owner-info for %s: %s (%d)\n", |
92 | repo->owner = (pwd ? xstrdup(pwd->pw_gecos ? pwd->pw_gecos : pwd->pw_name) : ""); | 99 | path, strerror(errno), errno); |
100 | break; | ||
101 | } | ||
102 | if (pwd->pw_gecos) | ||
103 | if ((p = strchr(pwd->pw_gecos, ','))) | ||
104 | *p = '\0'; | ||
105 | owner = xstrdup(pwd->pw_gecos ? pwd->pw_gecos : pwd->pw_name); | ||
106 | } | ||
107 | repo->owner = owner; | ||
93 | 108 | ||
94 | p = fmt("%s/description", path); | 109 | p = fmt("%s/description", path); |
95 | if (!stat(p, &st)) | 110 | if (!stat(p, &st)) |
96 | readfile(p, &repo->desc, &size); | 111 | readfile(p, &repo->desc, &size); |
97 | 112 | ||
98 | p = fmt("%s/README.html", path); | 113 | p = fmt("%s/README.html", path); |
99 | if (!stat(p, &st)) | 114 | if (!stat(p, &st)) |
100 | repo->readme = "README.html"; | 115 | repo->readme = "README.html"; |
101 | 116 | ||
102 | p = fmt("%s/cgitrc", path); | 117 | p = fmt("%s/cgitrc", path); |
103 | if (!stat(p, &st)) { | 118 | if (!stat(p, &st)) { |
104 | config_fn = fn; | 119 | config_fn = fn; |
105 | parse_configfile(xstrdup(p), &repo_config); | 120 | parse_configfile(xstrdup(p), &repo_config); |
106 | } | 121 | } |
107 | } | 122 | } |
108 | 123 | ||
109 | static void scan_path(const char *base, const char *path, repo_config_fn fn) | 124 | static void scan_path(const char *base, const char *path, repo_config_fn fn) |
110 | { | 125 | { |
111 | DIR *dir; | 126 | DIR *dir; |
112 | struct dirent *ent; | 127 | struct dirent *ent; |
113 | char *buf; | 128 | char *buf; |
114 | struct stat st; | 129 | struct stat st; |
115 | 130 | ||
116 | if (is_git_dir(path)) { | 131 | if (is_git_dir(path)) { |
117 | add_repo(base, path, fn); | 132 | add_repo(base, path, fn); |
118 | return; | 133 | return; |
119 | } | 134 | } |
120 | if (is_git_dir(fmt("%s/.git", path))) { | 135 | if (is_git_dir(fmt("%s/.git", path))) { |
121 | add_repo(base, fmt("%s/.git", path), fn); | 136 | add_repo(base, fmt("%s/.git", path), fn); |
122 | return; | 137 | return; |
123 | } | 138 | } |
124 | dir = opendir(path); | 139 | dir = opendir(path); |