author | Ondrej Jirman <ondrej.jirman@zonio.net> | 2007-05-26 01:26:14 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-31 08:24:37 (UTC) |
commit | a922615dae5d1f7b932dd1fc5a5f121748d96c5a (patch) (unidiff) | |
tree | 05fec55980234a64658f6612499212f923206d29 /cgit.h | |
parent | 3ce6fc16ef4670c535c6e35d48c7f980ff8a5532 (diff) | |
download | cgit-a922615dae5d1f7b932dd1fc5a5f121748d96c5a.zip cgit-a922615dae5d1f7b932dd1fc5a5f121748d96c5a.tar.gz cgit-a922615dae5d1f7b932dd1fc5a5f121748d96c5a.tar.bz2 |
Add option to disable pager to cgit_print_log().
This is needed for upcomming shortlog on summary page
patch.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -210,13 +210,13 @@ extern void cgit_print_pageheader(char *title, int show_search); | |||
210 | extern void cgit_print_snapshot_start(const char *mimetype, | 210 | extern void cgit_print_snapshot_start(const char *mimetype, |
211 | const char *filename, | 211 | const char *filename, |
212 | struct cacheitem *item); | 212 | struct cacheitem *item); |
213 | 213 | ||
214 | extern void cgit_print_repolist(struct cacheitem *item); | 214 | extern void cgit_print_repolist(struct cacheitem *item); |
215 | extern void cgit_print_summary(); | 215 | extern void cgit_print_summary(); |
216 | extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path); | 216 | extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, int pager); |
217 | extern void cgit_print_view(const char *hex, char *path); | 217 | extern void cgit_print_view(const char *hex, char *path); |
218 | extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path); | 218 | extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path); |
219 | extern void cgit_print_tree(const char *rev, const char *hex, char *path); | 219 | extern void cgit_print_tree(const char *rev, const char *hex, char *path); |
220 | extern void cgit_print_commit(const char *hex); | 220 | extern void cgit_print_commit(const char *hex); |
221 | extern void cgit_print_diff(const char *head, const char *old_hex, const char *new_hex, | 221 | extern void cgit_print_diff(const char *head, const char *old_hex, const char *new_hex, |
222 | char *path); | 222 | char *path); |