summaryrefslogtreecommitdiffstatshomepage
path: root/shared.c
Commit message (Expand)AuthorAge
* Free reflists after usageLukas Fleischer2013-03-04
* Mark several functions/variables staticLukas Fleischer2013-03-04
* White space around control verbs.Jason A. Donenfeld2013-03-04
* Fix several whitespace errorsLukas Fleischer2013-03-04
* Update git to v1.7.5.4John Keeping2013-03-02
* ui-log: Add "commit-sort" option for controlling commit orderingTobias Bieniek2012-10-17
* scan-tree: Unify gitweb.* and cgit.* settings into one config option.Jason A. Donenfeld2012-10-17
* Merge branch 'jp/defbranch'Lars Hjemli2012-03-18
|\
| * Only guess default branch when a repo page is requestedLars Hjemli2011-06-20
* | Merge branch 'lh/module-links'Lars Hjemli2012-03-18
|\ \
| * | ui-tree.c: add support for path-selected submodule linksLars Hjemli2011-06-15
| |/
* | shared.c: Only setenv() if value is non-nullLukas Fleischer2012-01-03
* | shared.c: Remove unused "linux/limits.h" includeLukas Fleischer2012-01-03
|/
* cgit.c: add 'clone-url' setting with support for macro expansionLars Hjemli2011-06-13
* cgit.c: always setup cgit repo environment variablesLars Hjemli2011-06-13
* Merge branch 'fh/filter-api'Lars Hjemli2011-05-23
|\
| * shared.c: use execvp() to execute filter commandsLars Hjemli2011-03-26
| * cgit_open_filter: hand down repo configuration to scriptFerry Huberts2011-03-26
| * cgit_open_filter: also take the repo as a parameterFerry Huberts2011-03-26
* | Remove unused variable from cgit_diff_tree().Lukas Fleischer2011-05-23
* | shared.c: do not modify const memoryLars Hjemli2011-05-23
|/
* ui-log: Implement support for commit graphsJohan Herland2010-11-16
* ui-log: Fix filecount/linecount when path limit is in effectJohan Herland2010-11-09
* Add support for "readme" optionLars Hjemli2010-08-22
* Merge branch 'jh/ignorews'Lars Hjemli2010-07-18
|\
| * Add URL parameter 'ignorews' for optionally ignoring whitespace in diffsJohan Herland2010-07-18
* | Merge branch 'lh/macros'Lars Hjemli2010-07-18
|\ \
| * | Add support for environment variable expansionLars Hjemli2010-03-22
* | | Merge branch 'jh/context-lines'Lars Hjemli2010-06-22
|\ \ \ | | |/ | |/|
| * | Add URL parameter 'context' for changing the number of context lines in diffsJohan Herland2010-06-19
* | | Merge branch 'jh/path-limit'Lars Hjemli2010-06-22
|\| |
| * | Remove unused variable in shared.cJohan Herland2010-06-19
| |/
* | Merge branch 'sn/subject-link'Lars Hjemli2010-06-19
|\ \
| * | Optionally generate verbose parent linksLars Hjemli2010-02-27
| |/
* | Merge branch 'stable'Lars Hjemli2010-04-08
|\ \ | |/ |/|
| * shared.c: avoid memory leak during diffLars Hjemli2010-04-08
* | Add support for remote branchesLars Hjemli2009-11-07
|/
* shared.c: return original errnoLars Hjemli2009-11-07
* Close fd on error in readfile()Rys Sommefeldt2009-11-07
* shared.c: initialize cgit_repo structs properlyLars Hjemli2009-08-24
* Introduce 'section' as canonical spelling for 'repo.group'Lars Hjemli2009-08-24
* Add and use a common readfile() functionLars Hjemli2009-08-18
* Add 'about-filter' and 'repo.about-filter' optionsLars Hjemli2009-08-09
* Add support for repo.commit-filter and repo.source-filterLars Hjemli2009-08-09
* Add generic filter/plugin infrastructureLars Hjemli2009-07-31
* shared.c: avoid SEGFAULT when checking for binary buffersLars Hjemli2009-02-01
* Handle binary files in diffsLars Hjemli2009-01-31
* Merge branch 'lh/stats'Lars Hjemli2009-01-27
|\
| * ui-stats: replace 'enable-stats' setting with 'max-stats'Lars Hjemli2008-12-07
| * Add a 'stats' page to each repoLars Hjemli2008-12-06
id='n570' href='#n570'>570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878