summary refs log tree commit diff
Commit message (Expand)AuthorAge
...
* Remove TF2 configJune McEnroe2020-12-21
* Emit tags for section headings without trailing dotsJune McEnroe2020-12-20
* Depend on rfc-index.txt.gz in MakefileJune McEnroe2020-12-20
* Convert :RFC number to numberJune McEnroe2020-12-19
* Move :RFC to plugin scriptJune McEnroe2020-12-19
* Sort RFC tags fileJune McEnroe2020-12-19
* Open rfc-index.txt for :RFC without argumentJune McEnroe2020-12-19
* Include rfc-index.txt in RFC syncJune McEnroe2020-12-19
* Add :RFC vim command to view IETF RFCsJune McEnroe2020-12-18
* Add scripts to download, compress and tag IETF RFCsJune McEnroe2020-12-18
* Fix bibsort name sorting for middle names, trailing titlesJune McEnroe2020-12-18
* Add bibsortJune McEnroe2020-12-15
* Add modem -r flag to set baud rateJune McEnroe2020-12-08
* Clean up variable expansions in c.shJune McEnroe2020-12-07
* Add I Feel It AllJune McEnroe2020-12-06
* Handle const strings in c -eJune McEnroe2020-12-05
* Disable mouse in htopJune McEnroe2020-12-05
* Note lack of macro expansions in Q(...)June McEnroe2020-12-03
* Fix missing "to" in "hot tips"June McEnroe2020-12-02
* Publish "hot tips"June McEnroe2020-12-02
* Publish "Inability"June McEnroe2020-11-26
* Render content into atom feedJune McEnroe2020-11-26
* Update plan with different things I won't doJune McEnroe2020-11-26
* Add "Come On Petunia"June McEnroe2020-11-19
* Add x4 to LESSJune McEnroe2020-11-13
* Remove modified sensitivity settingsJune McEnroe2020-11-04
* Remove editJune McEnroe2020-10-29
* Switch gr alias back to git rebaseJune McEnroe2020-10-27
* Allow cd host: to cd to same path over sshJune McEnroe2020-10-27
* Use SendEnv for cd host:pathJune McEnroe2020-10-27
* Allow cd host:path over sshJune McEnroe2020-10-27
* Use mandoc -T utf8 for text.June McEnroe2020-10-07
* Add The Awakened KingdomJune McEnroe2020-09-20
* Move /opt/local back, cheat port select to use system manJune McEnroe2020-09-12
* Move /opt/local behind /usr againJune McEnroe2020-09-12
* Enable toc in cgit renderings of man pagesJune McEnroe2020-09-12
* Install mandoc on macOSJune McEnroe2020-09-11
* Rewrite install script yet againJune McEnroe2020-09-11
* Remove NetBSD from install scriptJune McEnroe2020-09-11
* Use MacPorts rather than pkgsrcJune McEnroe2020-09-11
* Add debian VM name to sshJune McEnroe2020-09-11
* Add influencer tweetJune McEnroe2020-09-11
* Add The Kingdom of GodsJune McEnroe2020-09-10
* Add SunglassesJune McEnroe2020-09-07
* Add Between the BreathsJune McEnroe2020-09-06
* Open /dev/tty in nudgeJune McEnroe2020-09-04
* Add nudgeJune McEnroe2020-09-04
* Build fbclock with -lzJune McEnroe2020-09-03
* Add tweets from retweetsJune McEnroe2020-08-29
* Add annotated list of tweetsJune McEnroe2020-08-29
d> 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