Diffstat (limited to 'cmd.c')
| -rw-r--r-- | cmd.c | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -1,10 +1,6 @@ /* cmd.c: the cgit command dispatcher * * Copyright (C) 2006-2017 cgit Development Team <cgit@lists.zx2c4.com> - * Copyright (C) 2026 Saya Andy <saya.andy@posteo.com> - * - * Modified 2026 by Saya Andy: - * Include ci ui element * * Licensed under GNU General Public License v2 * (see COPYING for full license text) @@ -17,7 +13,6 @@ #include "ui-atom.h" #include "ui-blame.h" #include "ui-blob.h" -#include "ui-ci.h" #include "ui-clone.h" #include "ui-commit.h" #include "ui-diff.h" @@ -82,11 +77,6 @@ static void blob_fn(void) cgit_print_blob(ctx.qry.oid, ctx.qry.path, ctx.qry.head, 0); } -static void ci_fn(void) -{ - cgit_print_ci(); -} - static void commit_fn(void) { cgit_print_commit(ctx.qry.oid, ctx.qry.path); @@ -185,7 +175,6 @@ struct cgit_cmd *cgit_get_cmd(void) def_cmd(about, 0, 0, 0), def_cmd(blame, 1, 1, 0), def_cmd(blob, 1, 0, 0), - def_cmd(ci, 1, 0, 0), def_cmd(commit, 1, 1, 0), def_cmd(diff, 1, 1, 0), def_cmd(info, 1, 0, 1), |