summaryrefslogtreecommitdiffstatshomepage
Commit message (Expand)AuthorAge
* CGIT 0.8v0.8Lars Hjemli2008-10-05
* ui-summary: use html_url_path()Lars Hjemli2008-10-05
* ui-refs: use cgit_tag_link()Lars Hjemli2008-10-05
* ui-shared: add cgit_tag_link()Lars Hjemli2008-10-05
* ui-shared: generate proper links in cgit_object_link()Lars Hjemli2008-10-05
* ui-shared: use html_url_path() to get properly escaped url in form actionLars Hjemli2008-10-05
* Use GIT-1.6.0.2Lars Hjemli2008-10-05
* ui-shared: reword the standard page footerLars Hjemli2008-10-05
* ui-shared: do not print repo name on the "summary" tabLars Hjemli2008-10-05
* Replace cgitrc with cgitrc.5.txtLars Hjemli2008-10-05
* Merge branch 'lh/escape-urls'Lars Hjemli2008-10-05
|\
| * ui-repolist + ui-shared: Use cgit_summary_link()Lars Hjemli2008-10-05
| * ui-shared.c: add cgit_summary_link()Lars Hjemli2008-10-05
| * ui-shared.c: use html_url_path() in repolink()Lars Hjemli2008-10-05
| * html.c: add html_url_pathLars Hjemli2008-10-05
* | Merge branch 'lh/escape-urls'Lars Hjemli2008-10-05
|\|
| * ui-shared.c: use html_url_arg()Lars Hjemli2008-10-05
| * html.c: add html_url_argLars Hjemli2008-10-05
* | ui-snapshot.c: specify archiver_args.baselenLars Hjemli2008-10-05
|/
* ui-diff: make diffstat header a link to the full diffLars Hjemli2008-09-23
* ui-diff: fix links from diffstatLars Hjemli2008-09-23
* Add LDFLAGS to makefile.Harley Laue2008-09-20
* ui-repolist: enable filtering of repos by pathLars Hjemli2008-09-15
* Add support for --scan-tree=<path> option to cgitLars Hjemli2008-09-15
* Teach cgit how to use PATH_INFOLars Hjemli2008-09-15
* Merge branch 'lh/parsing'Lars Hjemli2008-09-15
|\
| * ui-tag: show the taggers emailLars Hjemli2008-09-15
| * parsing.c: be prepared for unexpected content in commit/tag objectsLars Hjemli2008-09-15
* | Merge branch 'ew/http_host'Lars Hjemli2008-09-15
|\ \ | |/ |/|
| * use Host: header to generate cgit_hosturlEric Wong2008-09-02
* | Update Makefile to use GIT-1.6.0.1Lars Hjemli2008-09-03
|/
* Use GIT-1.6.0.1Lars Hjemli2008-09-02
* ui-plain: handle subdirectoriesLars Hjemli2008-09-02
* Use GIT-1.6.0Lars Hjemli2008-09-01
* Merge branch 'lh/plain'Lars Hjemli2008-09-01
|\
| * Supply status description to html_status()Lars Hjemli2008-08-06
| * ui-tree: link to plain view instead of blob viewLars Hjemli2008-08-06
| * Implement plain viewLars Hjemli2008-08-06
* | Merge branch 'lh/clone'Lars Hjemli2008-09-01
|\|
| * Add support for cloning over httpLars Hjemli2008-08-06
* | cache.c: use %zd for off_t argumentLars Hjemli2008-09-01
* | Use GIT-1.6.0.rc1Lars Hjemli2008-08-06
* | Makefile: Git dependency, take 3Lars Hjemli2008-08-06
* | Merge branch 'lh/atom'Lars Hjemli2008-08-06
|\ \
| * | Add atom-supportLars Hjemli2008-08-01
| |/
* / cgitrc: explain new local-time optionStefan Naewe2008-08-05
|/
* Added `local-time` option to cgitrcStefan Naewe2008-08-01
* Makefile: another take on git dependency rulesLars Hjemli2008-08-01
* Modify default value for a few cgitrc optionsLars Hjemli2008-07-27
* Be prepared for empty repositoriesLars Hjemli2008-07-27
RL.git repo.url=foo repo.path=$PWD/trash/repos/foo/.git # Do not specify a description for this repo, as it then will be assigned # the constant value "[no description]" (which actually used to cause a # segfault). repo.url=bar repo.path=$PWD/trash/repos/bar/.git repo.desc=the bar repo repo.url=foo+bar repo.path=$PWD/trash/repos/foo+bar/.git repo.desc=the foo+bar repo repo.url=with space repo.path=$PWD/trash/repos/with space/.git repo.desc=spaced repo EOF } prepare_tests() { setup_repos rm -f test-output.log 2>/dev/null test_count=0 test_failed=0 echo "[$0]" "$@" >test-output.log echo "$@" "($0)" } tests_done() { printf "\n" if test $test_failed -gt 0 then printf "test: *** %s failure(s), logfile=%s\n" \ $test_failed "$(pwd)/test-output.log" false fi } run_test() { bug=0 if test "$1" = "BUG" then bug=1 shift fi desc=$1 script=$2 test_count=$(expr $test_count + 1) printf "\ntest %d: name='%s'\n" $test_count "$desc" >>test-output.log printf "test %d: eval='%s'\n" $test_count "$2" >>test-output.log eval "$2" >>test-output.log 2>>test-output.log res=$? printf "test %d: exitcode=%d\n" $test_count $res >>test-output.log if test $res = 0 -a $bug = 0 then printf " %2d) %-60s [ok]\n" $test_count "$desc" elif test $res = 0 -a $bug = 1 then printf " %2d) %-60s [BUG FIXED]\n" $test_count "$desc" elif test $bug = 1 then printf " %2d) %-60s [KNOWN BUG]\n" $test_count "$desc" else test_failed=$(expr $test_failed + 1) printf " %2d) %-60s [failed]\n" $test_count "$desc" fi } cgit_query() { CGIT_CONFIG="$PWD/trash/cgitrc" QUERY_STRING="$1" "$PWD/../cgit" } cgit_url() { CGIT_CONFIG="$PWD/trash/cgitrc" QUERY_STRING="url=$1" "$PWD/../cgit" }