diff options
author | Lars Hjemli | 2006-12-14 00:40:34 +0100 |
---|---|---|
committer | Lars Hjemli | 2006-12-14 00:40:34 +0100 |
commit | 420712ac2531f65a2b94d5ec6d8e03de6942331e (patch) | |
tree | 4849b20b4341a55d1b6435c104de860cda5f6ad6 /ui-log.c | |
parent | c45b8178d0e042a668395541a28d59f907da150b (diff) | |
download | cgit-420712ac2531f65a2b94d5ec6d8e03de6942331e.tar.gz cgit-420712ac2531f65a2b94d5ec6d8e03de6942331e.tar.bz2 cgit-420712ac2531f65a2b94d5ec6d8e03de6942331e.zip |
Add simple pager to log page
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-log.c')
-rw-r--r-- | ui-log.c | 31 |
1 files changed, 29 insertions, 2 deletions
@@ -95,7 +95,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt) | |||
95 | struct rev_info rev; | 95 | struct rev_info rev; |
96 | struct commit *commit; | 96 | struct commit *commit; |
97 | const char *argv[2] = {NULL, tip}; | 97 | const char *argv[2] = {NULL, tip}; |
98 | int n = 0; | 98 | int i; |
99 | 99 | ||
100 | init_revisions(&rev, NULL); | 100 | init_revisions(&rev, NULL); |
101 | rev.abbrev = DEFAULT_ABBREV; | 101 | rev.abbrev = DEFAULT_ABBREV; |
@@ -108,7 +108,18 @@ void cgit_print_log(const char *tip, int ofs, int cnt) | |||
108 | html("<h2>Log</h2>"); | 108 | html("<h2>Log</h2>"); |
109 | html("<table class='list'>"); | 109 | html("<table class='list'>"); |
110 | html("<tr><th>Date</th><th>Message</th><th>Author</th><th>Link</th></tr>\n"); | 110 | html("<tr><th>Date</th><th>Message</th><th>Author</th><th>Link</th></tr>\n"); |
111 | while ((commit = get_revision(&rev)) != NULL && n++ < 100) { | 111 | |
112 | if (ofs<0) | ||
113 | ofs = 0; | ||
114 | |||
115 | for (i = 0; i < ofs && (commit = get_revision(&rev)) != NULL; i++) { | ||
116 | free(commit->buffer); | ||
117 | commit->buffer = NULL; | ||
118 | free_commit_list(commit->parents); | ||
119 | commit->parents = NULL; | ||
120 | } | ||
121 | |||
122 | for (i = 0; i < cnt && (commit = get_revision(&rev)) != NULL; i++) { | ||
112 | cgit_print_commit_shortlog(commit); | 123 | cgit_print_commit_shortlog(commit); |
113 | free(commit->buffer); | 124 | free(commit->buffer); |
114 | commit->buffer = NULL; | 125 | commit->buffer = NULL; |
@@ -116,5 +127,21 @@ void cgit_print_log(const char *tip, int ofs, int cnt) | |||
116 | commit->parents = NULL; | 127 | commit->parents = NULL; |
117 | } | 128 | } |
118 | html("</table>\n"); | 129 | html("</table>\n"); |
130 | |||
131 | html("<div class='pager'>"); | ||
132 | if (ofs > 0) { | ||
133 | html(" <a href='"); | ||
134 | html(cgit_pageurl(cgit_query_repo, cgit_query_page, | ||
135 | fmt("h=%s&ofs=%d", tip, ofs-cnt))); | ||
136 | html("'>[prev]</a> "); | ||
137 | } | ||
138 | |||
139 | if ((commit = get_revision(&rev)) != NULL) { | ||
140 | html(" <a href='"); | ||
141 | html(cgit_pageurl(cgit_query_repo, "log", | ||
142 | fmt("h=%s&ofs=%d", tip, ofs+cnt))); | ||
143 | html("'>[next]</a> "); | ||
144 | } | ||
145 | html("</div>"); | ||
119 | } | 146 | } |
120 | 147 | ||