author | Aaron Griffin <agriffin@datalogics.com> | 2010-02-05 00:08:16 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2010-03-22 22:46:00 (UTC) |
commit | 80476b0d2873eb212fad38487fd6189bd6629cbe (patch) (unidiff) | |
tree | bdacb5527659ebb8296e95dfbe3ea5f74fe3a9ac | |
parent | 65ced7c00907af7e8bd5d239a4fa854a84535520 (diff) | |
download | cgit-80476b0d2873eb212fad38487fd6189bd6629cbe.zip cgit-80476b0d2873eb212fad38487fd6189bd6629cbe.tar.gz cgit-80476b0d2873eb212fad38487fd6189bd6629cbe.tar.bz2 |
Add 'max-atom-items' config variable
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>
-rw-r--r-- | cgit.c | 3 | ||||
-rw-r--r-- | cgit.h | 1 | ||||
-rw-r--r-- | cgitrc.5.txt | 4 | ||||
-rw-r--r-- | cmd.c | 2 |
4 files changed, 9 insertions, 1 deletions
@@ -166,4 +166,6 @@ void config_cb(const char *name, const char *value) | |||
166 | else if (!strcmp(name, "embedded")) | 166 | else if (!strcmp(name, "embedded")) |
167 | ctx.cfg.embedded = atoi(value); | 167 | ctx.cfg.embedded = atoi(value); |
168 | else if (!strcmp(name, "max-atom-items")) | ||
169 | ctx.cfg.max_atom_items = atoi(value); | ||
168 | else if (!strcmp(name, "max-message-length")) | 170 | else if (!strcmp(name, "max-message-length")) |
169 | ctx.cfg.max_msg_len = atoi(value); | 171 | ctx.cfg.max_msg_len = atoi(value); |
@@ -295,4 +297,5 @@ static void prepare_context(struct cgit_context *ctx) | |||
295 | ctx->cfg.summary_log = 10; | 297 | ctx->cfg.summary_log = 10; |
296 | ctx->cfg.summary_tags = 10; | 298 | ctx->cfg.summary_tags = 10; |
299 | ctx->cfg.max_atom_items = 10; | ||
297 | ctx->cfg.ssdiff = 0; | 300 | ctx->cfg.ssdiff = 0; |
298 | ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG")); | 301 | ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG")); |
@@ -185,4 +185,5 @@ struct cgit_config { | |||
185 | int enable_tree_linenumbers; | 185 | int enable_tree_linenumbers; |
186 | int local_time; | 186 | int local_time; |
187 | int max_atom_items; | ||
187 | int max_repo_count; | 188 | int max_repo_count; |
188 | int max_commit_count; | 189 | int max_commit_count; |
diff --git a/cgitrc.5.txt b/cgitrc.5.txt index d74d9e7..6cdfd03 100644 --- a/cgitrc.5.txt +++ b/cgitrc.5.txt | |||
@@ -167,4 +167,8 @@ logo-link:: | |||
167 | value: none. | 167 | value: none. |
168 | 168 | ||
169 | max-atom-items:: | ||
170 | Specifies the number of items to display in atom feeds view. Default | ||
171 | value: "10". | ||
172 | |||
169 | max-commit-count:: | 173 | max-commit-count:: |
170 | Specifies the number of entries to list per page in "log" view. Default | 174 | Specifies the number of entries to list per page in "log" view. Default |
@@ -34,5 +34,5 @@ static void HEAD_fn(struct cgit_context *ctx) | |||
34 | static void atom_fn(struct cgit_context *ctx) | 34 | static void atom_fn(struct cgit_context *ctx) |
35 | { | 35 | { |
36 | cgit_print_atom(ctx->qry.head, ctx->qry.path, 10); | 36 | cgit_print_atom(ctx->qry.head, ctx->qry.path, ctx->cfg.max_atom_items); |
37 | } | 37 | } |
38 | 38 | ||