aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
* Add html_option() functionGravatar Lars Hjemli2007-10-28-0/+13
| | | | | | This is a generic function used to output html "option" tags. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* Merge branch 'stable'Gravatar Lars Hjemli2007-10-27-2/+2
|\ | | | | | | | | * stable: cgit_parse_commit(): Add missing call to xstrdup()
| * cgit_parse_commit(): Add missing call to xstrdup()Gravatar Lars Hjemli2007-10-27-2/+2
| | | | | | | | | | | | | | It's rather silly to point into random memory-locations. Also, remove a call to strdup() used on a literal char *. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | Cleanup code introduced by the filter-refs topicGravatar Lars Hjemli2007-10-27-30/+19
| | | | | | | | | | | | | | The functions used to print branches and tags were only half-done and somewhat confused. Fix it. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | Merge branch 'filter-refs'Gravatar Lars Hjemli2007-10-27-37/+229
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * filter-refs: Add links to the new refs page from summary page Add support for refs view Make cgit_print_branches()/cgit_print_tags() external Add descriptions of summary-branches and summary-tags to cgitrc Add support for config param summary-branches Move logic for age comparision from cmp_tag_age into cmp_age() Add support for config param summary-tags Sort tags by age Use reflist to print tag info Use reflist to print branch info Add functions and types for ref lists
| * | Add links to the new refs page from summary pageGravatar Lars Hjemli2007-10-27-0/+21
| | | | | | | | | | | | | | | | | | | | | If either branches or tags are filtered on the summary page, add a link to refs/heads and/or refs/tags right below the last branch/tag. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Add support for refs viewGravatar Lars Hjemli2007-10-27-2/+37
| | | | | | | | | | | | | | | | | | | | | This enables the new urls $repo/refs, $repo/refs/heads and $repo/refs/tags, which can be used to print _all_ branches and/or tags. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Make cgit_print_branches()/cgit_print_tags() externalGravatar Lars Hjemli2007-10-27-2/+4
| | | | | | | | | | | | Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | 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: La