]> git.cameronkatri.com Git - cgit.git/blobdiff - ui-log.c
filters: port syntax-highlighting.py to python 3.x
[cgit.git] / ui-log.c
index ff832cee9adcaf9519cfcda5cff2748ae9ba6b3a..0782478d3b6af207e86f0aff068fe7eb212b91fd 100644 (file)
--- a/ui-log.c
+++ b/ui-log.c
@@ -442,8 +442,10 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
        compile_grep_patterns(&rev.grep_filter);
        prepare_revision_walk(&rev);
 
        compile_grep_patterns(&rev.grep_filter);
        prepare_revision_walk(&rev);
 
-       if (pager)
+       if (pager) {
+               cgit_print_layout_start();
                html("<table class='list nowrap'>");
                html("<table class='list nowrap'>");
+       }
 
        html("<tr class='nohover'>");
        if (commit_graph)
 
        html("<tr class='nohover'>");
        if (commit_graph)
@@ -476,7 +478,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
        if (ofs<0)
                ofs = 0;
 
        if (ofs<0)
                ofs = 0;
 
-       for (i = 0; i < ofs && (commit = get_revision(&rev)) != NULL; i++) {
+       for (i = 0; i < ofs && (commit = get_revision(&rev)) != NULL; /* nop */) {
                if (show_commit(commit, &rev))
                        i++;
                free_commit_buffer(commit);
                if (show_commit(commit, &rev))
                        i++;
                free_commit_buffer(commit);
@@ -484,7 +486,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
                commit->parents = NULL;
        }
 
                commit->parents = NULL;
        }
 
-       for (i = 0; i < cnt && (commit = get_revision(&rev)) != NULL; i++) {
+       for (i = 0; i < cnt && (commit = get_revision(&rev)) != NULL; /* nop */) {
                /*
                 * In "follow" mode, we must count the files and lines the
                 * first time we invoke diff on a given commit, and we need
                /*
                 * In "follow" mode, we must count the files and lines the
                 * first time we invoke diff on a given commit, and we need
@@ -526,6 +528,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
                        html("</li>");
                }
                html("</ul>");
                        html("</li>");
                }
                html("</ul>");
+               cgit_print_layout_end();
        } else if ((commit = get_revision(&rev)) != NULL) {
                htmlf("<tr class='nohover'><td colspan='%d'>", columns);
                cgit_log_link("[...]", NULL, NULL, ctx.qry.head, NULL,
        } else if ((commit = get_revision(&rev)) != NULL) {
                htmlf("<tr class='nohover'><td colspan='%d'>", columns);
                cgit_log_link("[...]", NULL, NULL, ctx.qry.head, NULL,