|
|
|
@ -54,7 +54,7 @@ void print_commit(struct commit *commit)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path)
|
|
|
|
|
void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, int pager)
|
|
|
|
|
{
|
|
|
|
|
struct rev_info rev;
|
|
|
|
|
struct commit *commit;
|
|
|
|
@ -110,6 +110,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path)
|
|
|
|
|
}
|
|
|
|
|
html("</table>\n");
|
|
|
|
|
|
|
|
|
|
if (pager) {
|
|
|
|
|
html("<div class='pager'>");
|
|
|
|
|
if (ofs > 0) {
|
|
|
|
|
html(" <a href='");
|
|
|
|
@ -125,4 +126,5 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path)
|
|
|
|
|
html("'>[next]</a> ");
|
|
|
|
|
}
|
|
|
|
|
html("</div>");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|