]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-refs.c
git: update to v2.46.0
[ps-cgit] / ui-refs.c
index 2ec385854ef9a2396fc10881de5f46599464685e..11fb9fc0ac2502f63b22319d5fbd05b0e24dfa62 100644 (file)
--- a/ui-refs.c
+++ b/ui-refs.c
@@ -6,6 +6,8 @@
  *   (see COPYING for full license text)
  */
 
+#define USE_THE_REPOSITORY_VARIABLE
+
 #include "cgit.h"
 #include "ui-refs.h"
 #include "html.h"
@@ -136,7 +138,7 @@ static int print_tag(struct refinfo *ref)
        return 0;
 }
 
-static void print_refs_link(char *path)
+static void print_refs_link(const char *path)
 {
        html("<tr class='nohover'><td colspan='5'>");
        cgit_refs_link("[...]", NULL, NULL, ctx.qry.head, NULL, path);
@@ -155,9 +157,11 @@ void cgit_print_branches(int maxcount)
 
        list.refs = NULL;
        list.alloc = list.count = 0;
-       for_each_branch_ref(cgit_refs_cb, &list);
+       refs_for_each_branch_ref(get_main_ref_store(the_repository),
+                                cgit_refs_cb, &list);
        if (ctx.repo->enable_remote_branches)
-               for_each_remote_ref(cgit_refs_cb, &list);
+               refs_for_each_remote_ref(get_main_ref_store(the_repository),
+                                        cgit_refs_cb, &list);
 
        if (maxcount == 0 || maxcount > list.count)
                maxcount = list.count;
@@ -182,7 +186,8 @@ void cgit_print_tags(int maxcount)
 
        list.refs = NULL;
        list.alloc = list.count = 0;
-       for_each_tag_ref(cgit_refs_cb, &list);
+       refs_for_each_tag_ref(get_main_ref_store(the_repository),
+                             cgit_refs_cb, &list);
        if (list.count == 0)
                return;
        qsort(list.refs, list.count, sizeof(*list.refs), cmp_tag_age);