summary refs log tree commit diff
path: root/bin/man1 (follow)
Commit message (Expand)AuthorAge
* Read from stdin in orderJune McEnroe2020-07-18
* Remove aesJune McEnroe2020-06-17
* Allow redirecting input in everJune McEnroe2020-06-01
* Add c scriptJune McEnroe2020-05-31
* Remove setoptJune McEnroe2020-03-03
* Revert "Add first working version of imbox"June McEnroe2019-12-21
* Add first working version of imboxJune McEnroe2019-12-21
* Add option to default to text in hiJune McEnroe2019-12-15
* Document diff input language in hiJune McEnroe2019-12-11
* Replace shotty with code from streamJune McEnroe2019-11-25
* Add title -v flagJune McEnroe2019-09-10
* Add -x flag to titleJune McEnroe2019-09-07
* Add titleJune McEnroe2019-09-05
* Add long-missing setopt to bin.7June McEnroe2019-08-29
* Add editJune McEnroe2019-08-29
* Rename wat to everJune McEnroe2019-08-28
* Remove brot and gfxxJune McEnroe2019-08-28
* Use rand(3) in beefJune McEnroe2019-08-28
* Remove wakeJune McEnroe2019-08-28
* Make dtch one command, add sinkingJune McEnroe2019-08-12
* Add whenJune McEnroe2019-07-24
* Handle media copy sequence in shottyJune McEnroe2019-07-20
* Handle shotty output options more centrallyJune McEnroe2019-07-20
* Add ^Q to ptee for MC sequenceJune McEnroe2019-07-17
* Add up -tJune McEnroe2019-07-15
* Add more info to shotty man pageJune McEnroe2019-07-14
* Add shotty -dJune McEnroe2019-07-14
* Add shotty -cJune McEnroe2019-07-13
* Use -s to infer terminal sizeJune McEnroe2019-07-12
* Add bright option to shottyJune McEnroe2019-07-11
* Add shotty man page and build itJune McEnroe2019-07-09
* Add up -cJune McEnroe2019-07-09
* Add ^S toggle to pteeJune McEnroe2019-07-08
* Document lack of window size propagationJune McEnroe2019-07-08
* Add pteeJune McEnroe2019-07-08
* Add CSS output to schemeJune McEnroe2019-07-06
* Add variables to bitJune McEnroe2019-06-07
* Simplify and build bitJune McEnroe2019-05-30
* Add xx -p optionJune McEnroe2019-05-29
* Add compound assignment operators to orderJune McEnroe2019-05-18
* Support simple assignment in orderJune McEnroe2019-05-15
* Implement sizeof in orderJune McEnroe2019-05-15
* Add orderJune McEnroe2019-05-15
* Move relay to binJune McEnroe2019-05-04
* Add setoptJune McEnroe2019-02-24
* Match statics and typedefs as TagJune McEnroe2019-02-18
* Remove hi line numberingJune McEnroe2019-02-18
* Add hi -f html -o anchor for line number linksJune McEnroe2019-02-17
* Add line numbers to hiJune McEnroe2019-02-17
* Clean up scheme yet once moreJune McEnroe2019-02-12
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