author | Lars Hjemli <hjemli@gmail.com> | 2010-02-27 12:12:55 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2010-02-27 12:12:55 (UTC) |
commit | 581a0c2a5428917d42cbfb2b4673a2d2ebceb7d0 (patch) (unidiff) | |
tree | ed8ba775c729ea391209066aea9e58ed70ed1a5c /cgit.h | |
parent | e15842af627de03845b9c949f1f1596d94e3be02 (diff) | |
download | cgit-581a0c2a5428917d42cbfb2b4673a2d2ebceb7d0.zip cgit-581a0c2a5428917d42cbfb2b4673a2d2ebceb7d0.tar.gz cgit-581a0c2a5428917d42cbfb2b4673a2d2ebceb7d0.tar.bz2 |
Optionally generate verbose parent links
The new option 'enable-subject-links' must be used to enable the verbose
parent-links in commit view.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -60,32 +60,33 @@ struct cgit_filter { | |||
60 | 60 | ||
61 | struct cgit_repo { | 61 | struct cgit_repo { |
62 | char *url; | 62 | char *url; |
63 | char *name; | 63 | char *name; |
64 | char *path; | 64 | char *path; |
65 | char *desc; | 65 | char *desc; |
66 | char *owner; | 66 | char *owner; |
67 | char *defbranch; | 67 | char *defbranch; |
68 | char *module_link; | 68 | char *module_link; |
69 | char *readme; | 69 | char *readme; |
70 | char *section; | 70 | char *section; |
71 | char *clone_url; | 71 | char *clone_url; |
72 | int snapshots; | 72 | int snapshots; |
73 | int enable_log_filecount; | 73 | int enable_log_filecount; |
74 | int enable_log_linecount; | 74 | int enable_log_linecount; |
75 | int enable_remote_branches; | 75 | int enable_remote_branches; |
76 | int enable_subject_links; | ||
76 | int max_stats; | 77 | int max_stats; |
77 | time_t mtime; | 78 | time_t mtime; |
78 | struct cgit_filter *about_filter; | 79 | struct cgit_filter *about_filter; |
79 | struct cgit_filter *commit_filter; | 80 | struct cgit_filter *commit_filter; |
80 | struct cgit_filter *source_filter; | 81 | struct cgit_filter *source_filter; |
81 | }; | 82 | }; |
82 | 83 | ||
83 | typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name, | 84 | typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name, |
84 | const char *value); | 85 | const char *value); |
85 | 86 | ||
86 | struct cgit_repolist { | 87 | struct cgit_repolist { |
87 | int length; | 88 | int length; |
88 | int count; | 89 | int count; |
89 | struct cgit_repo *repos; | 90 | struct cgit_repo *repos; |
90 | }; | 91 | }; |
91 | 92 | ||
@@ -168,32 +169,33 @@ struct cgit_config { | |||
168 | char *script_name; | 169 | char *script_name; |
169 | char *section; | 170 | char *section; |
170 | char *virtual_root; | 171 | char *virtual_root; |
171 | int cache_size; | 172 | int cache_size; |
172 | int cache_dynamic_ttl; | 173 | int cache_dynamic_ttl; |
173 | int cache_max_create_time; | 174 | int cache_max_create_time; |
174 | int cache_repo_ttl; | 175 | int cache_repo_ttl; |
175 | int cache_root_ttl; | 176 | int cache_root_ttl; |
176 | int cache_scanrc_ttl; | 177 | int cache_scanrc_ttl; |
177 | int cache_static_ttl; | 178 | int cache_static_ttl; |
178 | int embedded; | 179 | int embedded; |
179 | int enable_filter_overrides; | 180 | int enable_filter_overrides; |
180 | int enable_index_links; | 181 | int enable_index_links; |
181 | int enable_log_filecount; | 182 | int enable_log_filecount; |
182 | int enable_log_linecount; | 183 | int enable_log_linecount; |
183 | int enable_remote_branches; | 184 | int enable_remote_branches; |
185 | int enable_subject_links; | ||
184 | int enable_tree_linenumbers; | 186 | int enable_tree_linenumbers; |
185 | int local_time; | 187 | int local_time; |
186 | int max_repo_count; | 188 | int max_repo_count; |
187 | int max_commit_count; | 189 | int max_commit_count; |
188 | int max_lock_attempts; | 190 | int max_lock_attempts; |
189 | int max_msg_len; | 191 | int max_msg_len; |
190 | int max_repodesc_len; | 192 | int max_repodesc_len; |
191 | int max_blob_size; | 193 | int max_blob_size; |
192 | int max_stats; | 194 | int max_stats; |
193 | int nocache; | 195 | int nocache; |
194 | int noplainemail; | 196 | int noplainemail; |
195 | int noheader; | 197 | int noheader; |
196 | int renamelimit; | 198 | int renamelimit; |
197 | int snapshots; | 199 | int snapshots; |
198 | int summary_branches; | 200 | int summary_branches; |
199 | int summary_log; | 201 | int summary_log; |