about summary refs log tree commit diff
Commit message (Expand)AuthorAge
* Add thr:in-reply-to elements to Atom entries 1.1June McEnroe2021-06-13
* Add search definition examplesJune McEnroe2021-06-13
* Avoid performing a SEARCH for ALLJune McEnroe2021-06-13
* Sort and compress export fetch UIDsJune McEnroe2021-06-13
* Compress thread root UID sets with rangesJune McEnroe2021-06-12
* Use SEARCH for a subset of thread rootsJune McEnroe2021-06-12
* Add margin between header navsJune McEnroe2021-06-11
* Generate navigation for search pagesJune McEnroe2021-06-11
* Generate arbitrary search pages and feedsJune McEnroe2021-06-11
* Generalize index.{atom,html} to search pagesJune McEnroe2021-06-11
* Ignore test directoryJune McEnroe2021-06-11
* Remove -t truncate flagJune McEnroe2021-06-11
* Fix decoding adjacent encoded-wordsJune McEnroe2021-06-10
* Limit number of entries in index Atom feedJune McEnroe2021-06-09
* Use LDADD variables and BINDIRJune McEnroe2021-06-09
* Don't output "0 replies" at all 1.0aJune McEnroe2021-04-26
* Fix address group spacingJune McEnroe2021-04-25
* Only highlight the direct target message headerJune McEnroe2021-04-22
* Handle trailing comments in message IDsJune McEnroe2021-04-22
* Don't URL-encode fragment linksJune McEnroe2021-04-22
* Fix handling groups in address listsJune McEnroe2021-04-22
* Omit HTML nav from nested messagesJune McEnroe2021-04-21
* Parse dates in a hopefully more portable fashionJune McEnroe2021-04-11
* Remove unnecessary capture group in URL regexJune McEnroe2021-04-09
* Exit on getopt failureJune McEnroe2021-03-13
* Respect DESTDIR 1.0June McEnroe2021-03-08
* Remove mention of SORT extensionJune McEnroe2021-03-08
* Port to LinuxJune McEnroe2021-03-08
* Reference "Mailing List" post in READMEJune McEnroe2021-03-04
* Remove DEPLOYMENT sectionJune McEnroe2021-03-03
* Add -t flag to truncate stdout before writing pathsJune McEnroe2021-03-03
* Output updated pathsJune McEnroe2021-03-03
* Sandbox with unveil(2) and pledge(2) on OpenBSDJune McEnroe2021-03-03
* Target OpenBSDJune McEnroe2021-03-03
* Expand READMEJune McEnroe2021-03-02
* Generate properly populated reply Cc listsJune McEnroe2021-03-01
* Match any non-context diff lines as "head"June McEnroe2021-01-18
* Alphabetize STANDARDS sectionJune McEnroe2021-01-18
* Fix MANDIR defaultJune McEnroe2020-12-14
* Free threads and envelopes after concatJune McEnroe2020-12-11
* Add -i to idleJune McEnroe2020-12-11
* Add imapIdleJune McEnroe2020-12-11
* Add FILES section to READMEJune McEnroe2020-12-09
* Handle mail with no trailing newline correctlyJune McEnroe2020-12-08
* Condense getservinfo and bounds checkJune McEnroe2020-12-07
* Remove RCODE and ANCOUNT checkJune McEnroe2020-12-07
* Correctly handle . in nameStringJune McEnroe2020-12-07
* Remove use of AI_DEFAULTJune McEnroe2020-12-07
* Infer hostname from usernameJune McEnroe2020-12-04
* Add DNS and SRV RFCs to STANDARDSJune McEnroe2020-12-04
tests/: 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