about summary refs log tree commit diff
path: root/tests (unfollow)
Commit message (Expand)Author
2016-02-23css: fix indentationJason A. Donenfeld
2016-02-23css: use less blurry icon for external linkChristian Hesse
2016-02-23md2html: Do syntax highlighting tooJason A. Donenfeld
2016-02-23git: update to v2.7.2Christian Hesse
2016-02-22ui-plain: fix to show a repo's root directory listing in plain viewJoe Anakata
2016-02-22cmd: redirect empty about/ to homepage or summaryJason A. Donenfeld
2016-02-22ui-shared: add homepage to tabsJason A. Donenfeld
2016-02-08ui-atom: avoid DATE_STRFTIMEJohn Keeping
2016-02-08Avoid DATE_STRFTIME for long/short datesJohn Keeping
2016-02-08ui-stats: cast pointer before checking for zeroJohn Keeping
2016-02-08ui-stats: if we're going to abuse void*, do it safelyJason A. Donenfeld
2016-02-08git: update to v2.7.1Christian Hesse
2016-02-08ui-shared: remove cgit_print_date()John Keeping
2016-02-08ui-atom: use show_date directly for atom datesJohn Keeping
2016-02-08ui-shared: use show_date for footer timestampJohn Keeping
2016-02-08ui: show ages in the originator's timezoneJohn Keeping
2016-02-08ui-{commit,tag}: show dates in originator's timezoneJohn Keeping
2016-02-08ui-shared: add cgit_date_mode()John Keeping
2016-02-08parsing: add timezone to ident structuresJohn Keeping
2016-02-08ui-shared: remove "format" from cgit_print_age()John Keeping
2016-01-18ui-tree: put reverse path in titleJason A. Donenfeld
2016-01-18syntax-highlighting: always use utf-8 to avoid ascii codec issuesJason A. Donenfeld
2016-01-17cache: don't check for match with no keyJohn Keeping
2016-01-17cache: use size_t for string lengthsJohn Keeping
2016-01-17ui-log: handle parse_commit() errorsJohn Keeping
2016-01-14Bump versionJason A. Donenfeld
2016-01-14ui-plain: add enable-html-serving flagJason A. Donenfeld
2016-01-14ui-blob: set CSP just in caseJason A. Donenfeld
2016-01-14ui-blob: always use generic mimetypesJason A. Donenfeld
2016-01-14ui-blob: Do not accept mimetype from userJason A. Donenfeld
2016-01-14ui-shared: prevent malicious filename from injecting headersJason A. Donenfeld
2016-01-14ui-shared: Avoid new line injection into redirect headerJason A. Donenfeld
2016-01-14Fix missing prototype declarationsPeter Colberg
2016-01-13ui-repolist: return HTTP 404 if no repositories foundPeter Colberg
2016-01-13ui-repolist: extract repo visibility criteria to separate functionPeter Colberg
2016-01-13Fix segmentation fault in hc()Lukas Fleischer
2016-01-13git: update to v2.7.0Christian Hesse
2016-01-13ui-repolist: initialize char *buf to NULLChristian Hesse
2015-11-24filter: avoid integer overflow in authenticate_postJason A. Donenfeld
2015-11-12about-formatting.sh: comment text out of dateJason A. Donenfeld
2015-10-12filters: port syntax-highlighting.py to python 3.xChristian Hesse
2015-10-12md2html: the default of stdin works fineJason A. Donenfeld
2015-10-12filters: misc cleanupsJason A. Donenfeld
2015-10-12md2html: use pure pythonJason A. Donenfeld
2015-10-10cache: fix resource leak: close file handle before returnChristian Hesse
2015-10-10ui-atom: fix resource leak: free allocation from cgit_pageurlChristian Hesse
2015-10-10ui-atom: fix resource leak: free before returnChristian Hesse
2015-10-10ui-atom: fix resource leak: free allocation from cgit_repourlChristian Hesse
2015-10-10ui-blob: fix resource leak: free before returnChristian Hesse
2015-10-10ui-blob: fix resource leak: free before returnChristian Hesse
ceive the Corresponding > Source of your version by providing access to the Corresponding Source > from a network server at no charge, through some standard or customary > means of facilitating copying of software. This potentially means that every freenode user, for example, is interacting with this software, and offering the corresponding source to each of them is an unreasonable burden. * Add flag to generate a client certificateJune McEnroe2019-11-06 | | | | | This is essentially the command freenode tells you to run: <https://freenode.net/kb/answer/certfp>. * Use explicit_bzero from LibreSSLJune McEnroe2019-11-06 | * Clean up bounce.cJune McEnroe2019-11-05 | * Use "priv" instead of "key" in optionsJune McEnroe2019-11-05 | | | | Let all words be four letter words. * Use arc4random_bufJune McEnroe2019-11-05 | * Implement SASL EXTERNALJune McEnroe2019-11-05 | * Add options for TLS client certificateJune McEnroe2019-11-04 | * Hash client passwords with cryptJune McEnroe2019-11-04 | * Rename bind-unix to bind-pathJune McEnroe2019-11-03 | * Append bindHost to bindPath if it is a directoryJune McEnroe2019-11-03 | * Fix trying to cap_rights_limit a NULL saveFileJune McEnroe2019-11-02 | * Implement UNIX-domain bindingJune McEnroe2019-11-02 | * Limit saveFile to CAP_WRITEJune McEnroe2019-11-01 | * Implement capsicum workaround for certbotJune McEnroe2019-11-01 | * Reload certificates using openatJune McEnroe2019-11-01 | | | | | This is more versatile since files are more likely to be replaced than overwritten. * Re-read cert and key from the same FILEsJune McEnroe2019-11-01 | * Use capsicumJune McEnroe2019-11-01 | * Use explicit_bzero to clear passwordsJune McEnroe2019-10-31 | | | | | GNU doesn't implement memset_s, but both FreeBSD and GNU implement explicit_bzero. Darwin doesn't, so #define it in terms of memset_s. * Send clients their own QUIT on shutdownJune McEnroe2019-10-31 | * Iterator over pollfds in reverseJune McEnroe2019-10-31 | | | | | | | | | | | This has two advantages: 1. When removing a client, we don't need to break the loop, since the swap-remove will replace the current pollfd with one we've already handled and we can safely move on to the next (previous) one. 2. If a new client connects for the same consumer (for example if the previous one is going to time out), it will start consuming messages for that consumer, rather than them being sent to the old client. * Clear passwords from memory with memset_sJune McEnroe2019-10-31 | * Remove client count FIXMEJune McEnroe2019-10-30 | | | | This minor thing would take too much code convolution to do. * Add option for ring sizeJune McEnroe2019-10-30 | * Set away status upon connectingJune McEnroe2019-10-30 | * Allocate ring buffer at runtimeJune McEnroe2019-10-29 | * Implement getopt_long-integrated configuration parsingJune McEnroe2019-10-29 | * Lock save fileJune McEnroe2019-10-28 | * Add option to save and load ring contents across restartsJune McEnroe2019-10-28 | * Add quit message optionJune McEnroe2019-10-28 | * Move entire login flow to state and reorganize itJune McEnroe2019-10-28 | * Output ring info on SIGINFOJune McEnroe2019-10-27 |