]> git.cameronkatri.com Git - cgit.git/commitdiff
Add 'max-atom-items' config variable
authorAaron Griffin <agriffin@datalogics.com>
Fri, 5 Feb 2010 00:08:16 +0000 (18:08 -0600)
committerLars Hjemli <hjemli@gmail.com>
Mon, 22 Mar 2010 22:46:00 +0000 (23:46 +0100)
This allows one to specify the items in the RSS feeds

Signed-off-by: Aaron Griffin <agriffin@datalogics.com>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
cgit.c
cgit.h
cgitrc.5.txt
cmd.c

diff --git a/cgit.c b/cgit.c
index ed2be64cb55b4751a27c3b4c906cb79df2d66ed2..bf64c9ef5ad0fc3f501f2261d6e14034753d1c12 100644 (file)
--- a/cgit.c
+++ b/cgit.c
@@ -165,6 +165,8 @@ void config_cb(const char *name, const char *value)
                ctx.cfg.commit_filter = new_filter(value, 0);
        else if (!strcmp(name, "embedded"))
                ctx.cfg.embedded = atoi(value);
+       else if (!strcmp(name, "max-atom-items"))
+               ctx.cfg.max_atom_items = atoi(value);
        else if (!strcmp(name, "max-message-length"))
                ctx.cfg.max_msg_len = atoi(value);
        else if (!strcmp(name, "max-repodesc-length"))
@@ -294,6 +296,7 @@ static void prepare_context(struct cgit_context *ctx)
        ctx->cfg.summary_branches = 10;
        ctx->cfg.summary_log = 10;
        ctx->cfg.summary_tags = 10;
+       ctx->cfg.max_atom_items = 10;
        ctx->cfg.ssdiff = 0;
        ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG"));
        ctx->env.http_host = xstrdupn(getenv("HTTP_HOST"));
diff --git a/cgit.h b/cgit.h
index 478aebbc0ff87ea2d189f85db18ba52697ac0014..7fafb58aeb544be0e7d173d0240eedee9bcff67c 100644 (file)
--- a/cgit.h
+++ b/cgit.h
@@ -184,6 +184,7 @@ struct cgit_config {
        int enable_remote_branches;
        int enable_tree_linenumbers;
        int local_time;
+       int max_atom_items;
        int max_repo_count;
        int max_commit_count;
        int max_lock_attempts;
index d74d9e7eec85582be2548319aa415d5ff97ea7a9..6cdfd0323010bb49416325175c5d893f918d1cbb 100644 (file)
@@ -166,6 +166,10 @@ logo-link::
        calculated url of the repository index page will be used. Default
        value: none.
 
+max-atom-items::
+       Specifies the number of items to display in atom feeds view. Default
+       value: "10".
+
 max-commit-count::
        Specifies the number of entries to list per page in "log" view. Default
        value: "50".
diff --git a/cmd.c b/cmd.c
index 766f90397b89d2407574f3e2bf7056df68b43add..ad784fce0773ea6bc85ed406f1904f723b6ee3fb 100644 (file)
--- a/cmd.c
+++ b/cmd.c
@@ -33,7 +33,7 @@ static void HEAD_fn(struct cgit_context *ctx)
 
 static void atom_fn(struct cgit_context *ctx)
 {
-       cgit_print_atom(ctx->qry.head, ctx->qry.path, 10);
+       cgit_print_atom(ctx->qry.head, ctx->qry.path, ctx->cfg.max_atom_items);
 }
 
 static void about_fn(struct cgit_context *ctx)