summary refs log tree commit diff
Commit message (Expand)AuthorAge
* Add VimClojureJune McEnroe2012-08-11
* Condense indentation exceptionsJune McEnroe2012-08-11
* Remove vim-spaceJune McEnroe2012-07-17
* Update all the thingsJune McEnroe2012-07-02
* Remove vim-smartinputJune McEnroe2012-06-22
* Wrap text in Markdown filesJune McEnroe2012-05-29
* Remove buffergator customizationJune McEnroe2012-05-06
* Remove buffergatorJune McEnroe2012-05-06
* Update ALL THE THINGSJune McEnroe2012-05-06
* Add webapi-vimJune McEnroe2012-05-05
* Update gist-vimJune McEnroe2012-05-05
* Remove Itchy startupJune McEnroe2012-04-07
* Update vim-smartinputJune McEnroe2012-04-01
* Add vim-smartinputJune McEnroe2012-03-30
* Rebind Y to y$ for more consistent behaviourJune McEnroe2012-03-11
* Update Vim-Tomorrow-ThemeJune McEnroe2012-03-03
* Update Vim-Tomorrow-ThemeJune McEnroe2012-03-02
* Update PowerlineJune McEnroe2012-02-29
* Add shiftround optionJune McEnroe2012-02-29
* Add ,z mapping to toggle spellJune McEnroe2012-02-25
* Add badwolf colorschemeJune McEnroe2012-02-13
* Customize C/C++ indentationJune McEnroe2012-02-11
* Update Powerline to 'develop' branchJune McEnroe2012-02-07
* Add Solarized colorschemeJune McEnroe2012-02-07
* Add back set nocompatible, even though it seemed to end up set anywayJune McEnroe2012-02-07
* Update jellybeansJune McEnroe2012-02-05
* Update itchy.vimJune McEnroe2012-02-02
* Add mapping to toggle relative/absolute numberingJune McEnroe2012-02-02
* Add itchy.vimJune McEnroe2012-02-02
* Revert "Add ShowMarks plugin"June McEnroe2012-02-01
* Add ShowMarks pluginJune McEnroe2012-02-01
* Update Vim-Tomorrow-ThemeJune McEnroe2012-02-01
* Add vim-markdownJune McEnroe2012-02-01
* Add tabular.vimJune McEnroe2012-02-01
* Update Vim-Tomorrow-ThemeJune McEnroe2012-02-01
* Disable menu bar in GVimJune McEnroe2012-01-30
* Set shiftwidth to 4 for LuaJune McEnroe2012-01-30
* Don't show Syntastic errors automaticallyJune McEnroe2012-01-29
* Update to Quicktask 1.1June McEnroe2012-01-28
* Use space-test branch of quicktaskJune McEnroe2012-01-22
* Enable syntax-based foldingJune McEnroe2012-01-22
* Update quicktaskJune McEnroe2012-01-22
* Revert "Add AutoClose"June McEnroe2012-01-22
* Revert "Disable powerline for now"June McEnroe2012-01-22
* Revert "Add VCS repo directories to wildignore"June McEnroe2012-01-22
* Disable powerline for nowJune McEnroe2012-01-22
* Update some pluginsJune McEnroe2012-01-22
* Add VCS repo directories to wildignoreJune McEnroe2012-01-22
* Map ,e and ,b to CtrlP file and buffer respectivelyJune McEnroe2012-01-22
* Add vim-spaceJune McEnroe2012-01-22
he CGit test directoryJohn Keeping By default, Git's test suite puts the trash directories and test-results directory into its own directory, not that containing the tests being run. This is less convenient for inspecting test failures, so set the output directory to CGit's tests/ directory instead. Note that there is currently a bug in Git whereby it will create the trash directories in our tests/ directory regardless of the value of TEST_OUTPUT_DIRECTORY, and then fail to remove them once the tests are done. This change does currently affect the location of the test-results/ directory though. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-15t0109: test more URLsJohn Keeping In order to ensure that we don't access $HOME at some point after initial startup when rendering a specific view, run the strace test on a range of different pages. This ensures that we don't end up reading a configuration later for some specific view. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgitrc.5.txt: Specify when scan-path must be defined before.Jason A. Donenfeld Several options must be specified prior to scan-path. This is consistant source of user confusion. Document these facts. Suggested-by: Lukas Fleischer <cgit@cryptocrack.de> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2013-04-10ui-snapshot.c: Prepend "V" when guessing ref namesLukas Fleischer In cgit_print_snapshot_links() we strip leading "v" and "V", while we currently only prepend a lower case "v" when parsing a snapshot file name. This results in broken snapshot links for tags that start with an upper case "V". Avoid this by prepending a "V" as a fallback. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer Note that we cannot use skip_all here since some tests have already been executed when ZIP tests are reached. Use test prerequisites to skip everything using unzip(1) if the binary is not available instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10tests/: Do not use `sed -i`Lukas Fleischer "-i" isn't part of the POSIX standard and doesn't work on several platforms such as OpenBSD. Use a temporary file instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10Add branch-sort and repo.branch-sort options.Jason A. Donenfeld When set to "name", branches are sorted by name, which is the current default. When set to "age", branches are sorted by the age of the repository. This feature was requested by Konstantin Ryabitsev for use on kernel.org. Proposed-by: Konstantin Ryabitsev <mricon@kernel.org> 2013-04-10t0109: chain operations with &&John Keeping Without '&&' between operations, we will not detect if strace or cgit exit with an error status, which would cause a false positive test status in this case. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer getenv() returns a NULL pointer if the specified variable name cannot be found in the environment. However, some setenv() implementations crash if a NULL pointer is passed as second argument. Only restore variables that are not NULL. See commit d96d2c98ebc4c2d3765f5b35c4142e0e828a421b for a related patch. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer