2007-10-27 08:36:53 +00:00
|
|
|
/* ui-refs.c: browse symbolic refs
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Lars Hjemli
|
|
|
|
*
|
|
|
|
* Licensed under GNU General Public License v2
|
|
|
|
* (see COPYING for full license text)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cgit.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cgit_print_refs()
|
|
|
|
{
|
|
|
|
|
|
|
|
html("<table class='list nowrap'>");
|
|
|
|
|
2008-02-16 10:53:40 +00:00
|
|
|
if (ctx.qry.path && !strncmp(ctx.qry.path, "heads", 5))
|
2007-10-27 08:36:53 +00:00
|
|
|
cgit_print_branches(0);
|
2008-02-16 10:53:40 +00:00
|
|
|
else if (ctx.qry.path && !strncmp(ctx.qry.path, "tags", 4))
|
2007-10-27 08:36:53 +00:00
|
|
|
cgit_print_tags(0);
|
|
|
|
else {
|
|
|
|
cgit_print_branches(0);
|
|
|
|
html("<tr class='nohover'><td colspan='4'> </td></tr>");
|
|
|
|
cgit_print_tags(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
html("</table>");
|
|
|
|
}
|