summary refs log tree commit diff
path: root/src/mktokens (unfollow)
Commit message (Expand)Author
2013-08-23[EXPAND] Propagate EXP_QPAT in subevalvarHerbert Xu
2013-08-23[MAN] Fix typo for waitKimo Rosenbaum
2012-07-03[BUILTIN] Add support for ulimit -rChristoph Mathys
2012-07-03Avoid overflow for very long variable nameJim Meyering
2012-02-25[VAR] Sanitise environment variable names on entryHerbert Xu
2011-08-17[SHELL] Add top-level autogen.shDavid S. Miller
2011-08-17[SHELL] Allow building without LINEO supportDavid S. Miller
2011-08-17[ARITH] Avoid imaxdiv when only one of the results is wantedHarald van Dijk
2011-07-15[SHELL] Fix klibc DEBUG compilationmaximilian attems
2011-07-09[BUILTIN] Merge SKIPFUNC/SKIPFILE and only clear SKIPFUNC when leaving dotcmdHerbert Xu
2011-07-08Release 0.5.7.Herbert Xu
2011-07-08[EVAL] Avoid using undefined handlerJim Meyering
2011-07-08[MEMALLOC] Avoid clang warning about dead store to "size"Jim Meyering
2011-07-08[MEMALLOC] Avoid gcc warning: variable 'oldstackp' set but not usedJim Meyering
2011-07-07[BUILTIN] Eliminate unnecessary promotion in echocmdHerbert Xu
2011-07-07[OUTPUT] Make outc an inline functionJonathan Nieder
2011-07-07[MAN] Remove spurious space in descriptions of PS1, PS2, PS4Kalle Olavi Niemitalo
2011-07-07[SHELL] Optimize dash -c "command" to avoid a forkHerbert Xu
2011-07-07[EVAL] Remove unused EV_BACKCMD flagJonathan Nieder
2011-03-15[PARSER] Fix clobbering of checkkwdHerbert Xu
2011-03-15[DEBUG] Use va_copy when reusing a va_listJonathan Nieder
2011-03-15[EXPAND] Free IFS state after here document expansionJonathan Nieder
2011-03-15[SHELL] Improve LINENO supportHarald van Dijk
2011-03-15[EVAL] Let funcnode refer to a function definition, not its first commandHarald van Dijk
2011-03-15[SHELL] Port to SolarisBrian Koropoff
2011-03-11[BUILTIN] Fix backslash handling in read(1)Herbert Xu
2011-03-10[BUILTIN] Dotcmd should exit with zero when doing nothingJonathan Nieder
2011-03-10[BUILTIN] Fix CTLESC clobbering by read(1)Herbert Xu
2011-03-10[SHELL] Port to AIXBrian Koropoff
2011-03-10[EXPAND] Do not split the result of tilde expansionJilles Tjoelker
2011-03-10[REDIR] Replace GPL noclobberopen code with the FreeBSD versionJilles Tjoelker
2010-11-28[EXPAND] Free IFS state in evalbackcmdHerbert Xu
2010-11-28[SIGNAL] Mark status as volatile in exitshellMaciej Żenczykowski
2010-11-28[BUILTIN] Stop documenting EXSHELLPROCJonathan Nieder
2010-11-28[BUILTIN] Use EXEXIT in place of EXEXECJonathan Nieder
2010-11-28[INPUT] Use exit status 127 when the script to run does not existGerrit Pape
2010-11-28[ERROR] Allow the originator of EXERROR to set the exit statusHerbert Xu
2010-11-28[MAN] Document optional open parenthesis for case patternsPhilipp Weis
2010-11-28[EVAL] Fixed trap/return regression due to SKIPEVAL removalHerbert Xu
2010-10-18[EXPAND] Fix ifsfirst/ifslastp leak in casematchHerbert Xu
2010-10-07[BUILTIN] Fix EXEXEC status clobberingHerbert Xu
2010-09-08[BUILTIN] Fix trailing field bug in read(1)Herbert Xu
2010-09-08[EXPAND] Fix ifsfirst/ifslastp leakHerbert Xu
2010-09-08[JOBS] Debug compile fixmaximilian attems
2010-09-08[VAR] Fix varinit ordering that broke fcJilles Tjoelker
2010-07-06[EVAL] Check exit for eval NSUBSHELLGerrit Pape
2010-07-06[EVAL] Removed dead code for eval NPIPEHerbert Xu
2010-07-06[VAR] Fix loss of variables when hash collidesHerbert Xu
2010-06-28[EVAL] Don't clear eflag in evalbackcmdGerrit Pape
2010-05-29[BUILTIN] Continue after EINTR in read(1) with no pending signalsHerbert Xu
class='logheader'>2013-05-22tests: introduce strip_header() helper functionJohn Keeping This means that we can avoid hardcoding the number of headers we expect CGit to generate in test cases and simply remove whatever headers happen to by there when we are checking body content. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-05-22shared.c: use die_errno() where appropriateJohn Keeping This replaces some code that is re-implementing die_errno by just calling the function. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-05-22html.c: die when write failsJohn Keeping If we fail to write HTML output once, there's no point carrying on so just write a failure message once and die. By using Git's die_errno function we also let the user know in what way the write failed. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-05-22ui-log: add <span/> around commit decorationsJohn Keeping This helps projects that have a large number of tags to display them all using custom CSS. The default stylesheet has not been updated since what is useful for projects with a lot of tags is not the same as what is useful for projects with only a small number of decorations per commit. Suggested-by: Konstantin Ryabitsev <mricon@kernel.org> Signed-off-by: John Keeping <john@keeping.me.uk> 2013-05-22Makefile: fix parallel "make test"John Keeping When building the "test" target we depend on both cgit and building the Git tools. By doing this with two targets we end up running make in the git/ directory twice, concurrently if using parallel make, which causes us to build more than we need and potentially builds incorrectly if multi-step build-then-move operations overlap. Fix this by instead calling back into the makefile so that we alter the "cgit" target to also build the Git tools. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-05-18cache.c: fix cache_lsJohn Keeping Commit fb3655d (use struct strbuf instead of static buffers, 2013-04-06) broke the logic in cache.c::cache_ls by failing to set slot->cache_name before calling open_slot. While fixing this, also free the strbufs added by that commit once we're done with them. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-05-13t0109: "function" is a bash-ismJohn Keeping We try to stick to POSIX shell in the tests but a "function" keyword has found its way into t0109. Remove it. This makes the tests work with dash again. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-05-13New mailing list.Jason A. Donenfeld 2013-04-30ui-snapshot: do not access $HOMEJason A. Donenfeld It's a bit tedious to have to do this here too. If we encounter other issues with $HOME down the line, I'll look into adding some nice utility functions to handle this, or perhaps giving up on the hope that we could keep $HOME defined for scripts. This commit additionally adds a test case, should the issue surface again. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2013-04-27t0001: validate Git -rcN version numbers correctlyJohn Keeping When creating the GIT-VERSION-FILE that we use to test that the version of Git in git/ is the same as in the CGit Makefile, Git applies the transform "s/-/./g" to the version string. This doesn't affect released versions but does change RC version numbers such as 1.8.3-rc0. While CGit should only refer to a released Git version in general, it is useful to developers who want to test upcoming Git releases if the tests do work with RCs, so change t0001 to apply the same transform to our Makefile version before comparing it to the contents of GIT-VERSION-FILE. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-27git: update to 1.8.2.2John Keeping No changes required, just bump the submodule and Makefile version. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-17scan-tree: fix regression in section-from-path=-1John Keeping Commit fb3655d (use struct strbuf instead of static buffers - 2013-04-06) introduced a regression in the "section-from-path" handling when the configured value is negative. By changing the "rel" variable so that it includes a trailing slash, counting slashes from the end of the string no longer gives the same answer as it did before. Fix this by ensuring that "rel" does not have a trailing slash. Reported-by: Julius Plenz <plenz@cis.fu-berlin.de> Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-15t0001: ignore ".dirty" suffix on Git versionJohn Keeping When testing modifications in Git that affect CGit, it is annoying to have t0001 failing simply because the Git version has a ".dirty" suffix when the version of Git there does indeed match that specified in the CGit makefile. Stop this by stripping the ".dirty" suffix from the GIT_VERSION variable. Note that this brings the "Git version" behaviour in line with the "submodule version" case which does not check if the working tree in git/ is modified. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-15tests: set TEST_OUTPUT_DIRECTORY to the CGit test directoryJohn Keeping By default, Git's test suite puts the trash directories and test-results directory into its own directory, not that containing the tests being run. This is less convenient for inspecting test failures, so set the output directory to CGit's tests/ directory instead. Note that there is currently a bug in Git whereby it will create the trash directories in our tests/ directory regardless of the value of TEST_OUTPUT_DIRECTORY, and then fail to remove them once the tests are done. This change does currently affect the location of the test-results/ directory though. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-15t0109: test more URLsJohn Keeping In order to ensure that we don't access $HOME at some point after initial startup when rendering a specific view, run the strace test on a range of different pages. This ensures that we don't end up reading a configuration later for some specific view. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgitrc.5.txt: Specify when scan-path must be defined before.Jason A. Donenfeld Several options must be specified prior to scan-path. This is consistant source of user confusion. Document these facts. Suggested-by: Lukas Fleischer <cgit@cryptocrack.de> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2013-04-10ui-snapshot.c: Prepend "V" when guessing ref namesLukas Fleischer In cgit_print_snapshot_links() we strip leading "v" and "V", while we currently only prepend a lower case "v" when parsing a snapshot file name. This results in broken snapshot links for tags that start with an upper case "V". Avoid this by prepending a "V" as a fallback. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer Note that we cannot use skip_all here since some tests have already been executed when ZIP tests are reached. Use test prerequisites to skip everything using unzip(1) if the binary is not available instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10tests/: 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