diff options
author | Lars Hjemli <hjemli@gmail.com> | 2008-09-01 22:40:55 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-09-01 22:40:55 +0200 |
commit | d532c4d1612c94347427fa1afda6afb7c34e512a (patch) | |
tree | 53f3f86ba8e78051bee96cb65a6219ef43d9adab /cmd.c | |
parent | Merge branch 'lh/clone' (diff) | |
parent | Supply status description to html_status() (diff) | |
download | cgit-pink-d532c4d1612c94347427fa1afda6afb7c34e512a.tar.gz cgit-pink-d532c4d1612c94347427fa1afda6afb7c34e512a.zip |
Merge branch 'lh/plain'
* lh/plain: Supply status description to html_status() ui-tree: link to plain view instead of blob view Implement plain view
Diffstat (limited to 'cmd.c')
-rw-r--r-- | cmd.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd.c b/cmd.c index 40ac53e..a989220 100644 --- a/cmd.c +++ b/cmd.c @@ -17,6 +17,7 @@ #include "ui-diff.h" #include "ui-log.h" #include "ui-patch.h" +#include "ui-plain.h" #include "ui-refs.h" #include "ui-repolist.h" #include "ui-snapshot.h" @@ -91,6 +92,11 @@ static void patch_fn(struct cgit_context *ctx) cgit_print_patch(ctx->qry.sha1); } +static void plain_fn(struct cgit_context *ctx) +{ + cgit_print_plain(ctx); +} + static void refs_fn(struct cgit_context *ctx) { cgit_print_refs(); @@ -135,6 +141,7 @@ struct cgit_cmd *cgit_get_cmd(struct cgit_context *ctx) def_cmd(ls_cache, 0, 0), def_cmd(objects, 1, 0), def_cmd(patch, 1, 0), + def_cmd(plain, 1, 0), def_cmd(refs, 1, 1), def_cmd(repolist, 0, 0), def_cmd(snapshot, 1, 0), |