aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
| * | Add descriptions of summary-branches and summary-tags to cgitrcGravatar Lars Hjemli2007-10-27-0/+10
| | | | | | | | | | | | Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Add support for config param summary-branchesGravatar Lars Hjemli2007-10-27-3/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | This parameter can be used to specify max number of branches to show on the summary page (if not all branches will be displayed, the "most idle" branches are the ones to be pruned). The default value for this parameter is 0, which disables the pruning. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Move logic for age comparision from cmp_tag_age into cmp_age()Gravatar Lars Hjemli2007-10-27-8/+13
| | | | | | | | | | | | | | | | | | Simple refactoring to enable later filtering of branches based on age. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Add support for config param summary-tagsGravatar Lars Hjemli2007-10-27-3/+11
| | | | | | | | | | | | | | | | | | | | | This parameter can be used to specify max number of tags to show on the summary page. If not specified, all tags are printed. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Sort tags by ageGravatar Lars Hjemli2007-10-27-0/+18
| | | | | | | | | | | | | | | | | | | | | This adds a function to compare timestamps and then uses it as callback for qsort() before printing out tags. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Use reflist to print tag infoGravatar Lars Hjemli2007-10-27-17/+19
| | | | | | | | | | | | | | | | | | | | | This updates ui-summary.c to use a reflist instead of for_each_tag_ref(), as a step towards more flexible tag handling (filtering/sorting). Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Use reflist to print branch infoGravatar Lars Hjemli2007-10-27-14/+16
| | | | | | | | | | | | | | | | | | | | | This updates ui-summary.c to use a reflist instead of for_each_branch_ref(), as a step towards more flexible branch handling (filtering/sorting). Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Add functions and types for ref listsGravatar Lars Hjemli2007-10-27-0/+60
|/ / | | | | | | | | | | | | This adds two structs, refinfo and reflist, and functions for building a list of refs. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | Merge branch 'stable'Gravatar Lars Hjemli2007-10-27-0/+6
|\ \ | |/ | | | | | | * stable: Skip unknown header fields when parsing tags and commits
| * Skip unknown header fields when parsing tags and commitsGravatar Lars Hjemli2007-10-27-0/+6
| | | | | | | | | | | | | | | | Both the commit- and tagparser failed to handle unexpected header fields. This adds futur