summary refs log tree commit diff
path: root/src (follow)
Commit message (Expand)AuthorAge
...
* main: Print \n upon EOF (CTRL-D) when run interactivelyGerrit Pape2018-11-19
* eval: Report I/O error on stdoutGerrit Pape2018-11-19
* builtin: Default to mktemp, not tempfileAndrej Shadura2018-11-19
* man: Problems in dash.1, sh.1, sh.distrib.1esr@thyrsus.com2018-08-29
* expand: Ensure result is escaped in cvtnumHerbert Xu2018-08-29
* memalloc: Avoid looping in growstacktoHerbert Xu2018-08-29
* eval: Always set localvar_stopHerbert Xu2018-08-29
* expand: Do not reprocess data when expanding wordsHerbert Xu2018-08-29
* expand: Fix skipping of command substitution when trimming in evalvarHerbert Xu2018-08-29
* expand: Merge syntax/quotes in memtodest with flagsHerbert Xu2018-08-29
* expand: Use HOME in tilde expansion when it is emptyHerbert Xu2018-08-29
* shell: Don't include config.h for native helpersPeter Korsgaard2018-08-29
* builtin: Use test_access from NetBSD when faccessat is unavailableHerbert Xu2018-05-28
* eval: Add vfork supportHerbert Xu2018-05-28
* eval: Replace with listsetvar with mklocal/setvareqHerbert Xu2018-05-28
* eval: Fail immediately with redirections errors for simple commandHerbert Xu2018-05-28
* eval: Add assignment built-in support againHerbert Xu2018-05-28
* exec: Never rehash regular built-insHerbert Xu2018-05-28
* exec: Stricter pathopt parsingHerbert Xu2018-05-28
* builtin: Mark more regular built-insHerbert Xu2018-05-28
* exec: Do not allocate stack string in padvanceHerbert Xu2018-05-28
* memalloc: Add growstackto helperHerbert Xu2018-05-28
* jobs: Replace some uses of fmtstr with stpcpy/stpncpyHerbert Xu2018-05-28
* output: Fix fmtstr return valueHerbert Xu2018-05-28
* var: Set IFS to fixed value at start timeHerbert Xu2018-05-28
* parser: Save/restore here-documents in command substitutionHerbert Xu2018-05-28
* jobs: Only clear gotsigchld when waiting for everythingHerbert Xu2018-05-28
* mkinit: Split reset into exitreset and resetHerbert Xu2018-05-28
* main: Only set savestatus in exitcmdHerbert Xu2018-05-28
* exec: Return 126 on most errors in shellexecHerbert Xu2018-05-28
* parser: Fix incorrect eating of backslash newlinesHerbert Xu2018-05-15
* jobs - Do not block when waiting on SIGCHLDHerbert Xu2018-05-09
* eval: Variable assignments on functions are no longer persistentHerbert Xu2018-04-19
* parser: Fix parameter expansion inside inner double quotesHerbert Xu2018-04-19
* parser: Fix parsing of ${}Herbert Xu2018-04-19
* man: correct typos, iff -> ifMartijn Dekker2018-04-19
* expand: Do not quote backslashes in unquoted parameter expansionHerbert Xu2018-04-19
* eval: Restore input files in evalcommandHerbert Xu2018-04-19
* eval: Reap zombies after built-in commands and functionsHerbert Xu2018-04-19
* redir: Fix typo in noclobber codeHerbert Xu2018-04-19
* expand: Fix glibc glob(3) supportHerbert Xu2018-04-19
* expand: Fix buffer overflow in expandmetaHerbert Xu2018-04-02
* builtin: Move echo space/nl handling into print_escape_strHerbert Xu2018-04-02
* builtin: Fix echo performance regressionHerbert Xu2018-04-02
* expand: Fix ghost fields with unquoted $@/$*Herbert Xu2018-04-02
* parser: Allow newlines within parameter substitutionHerbert Xu2018-04-02
* expand: Fix bugs with words connected to the right of $@Herbert Xu2018-04-02
* Revert "[BUILTIN] Remove unnecessary restoration of format string in printf"Herbert Xu2018-03-25
* parser: Fix backquote support in here-document EOF markHerbert Xu2018-03-22
* parser: Fix single-quoted patterns in here-documentsHerbert Xu2018-03-22
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