summary refs log tree commit diff
path: root/install.sh (follow)
Commit message (Expand)AuthorAge
* Install vi on Linux and nvi on macOSJune McEnroe2021-01-25
* Move /opt/local back, cheat port select to use system manJune 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 OpenBSD to install.shJune McEnroe2020-06-07
* Remove gpg symlink from NetBSD installJune McEnroe2020-05-13
* Remove mkshJune McEnroe2020-05-07
* Upgrade neovim to 0.4.3 on macOSJune McEnroe2020-03-24
* Move mksh to Linux-onlyJune McEnroe2020-01-15
* Remove gpg from install.shJune McEnroe2020-01-15
* Remove git from install.shJune McEnroe2020-01-15
* Update neovim 0.4.2June McEnroe2019-10-02
* Unset executable on shell scriptsJune McEnroe2019-08-29
* Shell script style passJune McEnroe2019-07-27
* Update macOS neovim to 0.3.8June McEnroe2019-07-27
* Update neovim to 0.3.4 on DarwinJune McEnroe2019-02-05
* Install gnupg2 from pkgsrc and symlink gpgJune McEnroe2019-01-12
* Switch to pkgsrc on DarwinJune McEnroe2018-11-27
* Install bc(1) on ArchJune McEnroe2018-09-02
* Add NetBSD to install.shJune McEnroe2018-08-26
* Install mksh rather than zshJune McEnroe2018-08-16
* Remove nasm from installJune McEnroe2018-07-23
* Tabify shell scriptsJune McEnroe2018-05-13
* Clean up install.shJune McEnroe2018-03-14
* Add nasm to install.shJune McEnroe2017-10-04
* Remove git from common packagesJune McEnroe2017-09-27
* Rename zsh scripts .zshJune McEnroe2017-09-15
* Install ddateJune McEnroe2017-08-25
* Use $() in install.shJune McEnroe2017-08-04
* Install slJune McEnroe2017-07-28
* Remove iTermJune McEnroe2017-07-18
* Only pacman -Sy onceJune McEnroe2017-07-09
* Remove tmuxJune McEnroe2017-07-04
* Fix install scriptJune McEnroe2017-06-12
* Add untested install scriptJune McEnroe2017-06-10
* Rename install.sh to link.shJune McEnroe2017-06-10
* Remove Karabiner config and move key layoutsJune McEnroe2017-06-10
* Move actual dotfiles into home directoryJune McEnroe2017-06-10
* Remove Programming keyboard layoutJune McEnroe2017-06-10
* Add Code Tarmak 1 layoutJune McEnroe2017-06-09
* Add Tarmak layoutsJune McEnroe2017-06-06
* Rename keyboard layout ProgrammingJune McEnroe2017-05-26
* Fix Library install conditionJune McEnroe2017-05-25
* Revert "Remove macOS keyboard layout"June McEnroe2017-05-25
* Rename colorscheme "trivial"June McEnroe2017-05-01
* Add bri brightness control scriptJune McEnroe2017-03-14
* Remove macOS keyboard layoutJune McEnroe2017-01-25
* Use zsh for shell scriptsJune McEnroe2017-01-21
3e1a556cf422871&follow=1'>Switch to exclusively using global ctxLukas Fleischer Drop the context parameter from the following functions (and all static helpers used by them) and use the global context instead: * cgit_print_http_headers() * cgit_print_docstart() * cgit_print_pageheader() Remove context parameter from all commands Drop the context parameter from the following functions (and all static helpers used by them) and use the global context instead: * cgit_get_cmd() * All cgit command functions. * cgit_clone_info() * cgit_clone_objects() * cgit_clone_head() * cgit_print_plain() * cgit_show_stats() In initialization routines, use the global context variable instead of passing a pointer around locally. Remove callback data parameter for cache slots This is no longer needed since the context is always read from the global context variable. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-16auth: have cgit calculate login addressJason A. Donenfeld This way we're sure to use virtual root, or any other strangeness encountered. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2014-01-16auth: lua string comparisons are time invariantJason A. Donenfeld By default, strings are compared by hash, so we can remove this comment. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2014-01-16authentication: use hidden form instead of refererJason A. Donenfeld This also gives us some CSRF protection. Note that we make use of the hmac to protect the redirect value. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2014-01-16auth: add basic authentication filter frameworkJason A. Donenfeld This leverages the new lua support. See filters/simple-authentication.lua for explaination of how this works. There is also additional documentation in cgitrc.5.txt. Though this is a cookie-based approach, cgit's caching mechanism is preserved for authenticated pages. Very plugable and extendable depending on user needs. The sample script uses an HMAC-SHA1 based cookie to store the currently logged in user, with an expiration date. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2014-01-16t0111: Additions and fixesLukas Fleischer * Rename the capitalize-* filters to dump.* since they also dump the arguments. * Add full argument validation to the email filters. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-16parsing.c: Remove leading space from committerLukas Fleischer