about summary refs log tree commit diff
Commit message (Expand)AuthorAge
...
* use struct strbuf instead of static buffersJohn Keeping2013-04-08
* Remove redundant calls to fmt("%s", ...)John Keeping2013-04-08
* Convert cgit_print_error to a variadic functionJohn Keeping2013-04-08
* shared.c: add strbuf_ensure_endJohn Keeping2013-04-08
* html.c: add various strbuf and varadic helpersJohn Keeping2013-04-08
* Mark char* fields in struct cgit_page as constJohn Keeping2013-04-08
* Fix out-of-bounds memory accesses with virtual_root=""John Keeping2013-04-08
* ui-refs.c: Refactor print_tag()Lukas Fleischer2013-04-08
* ui-refs.c: Remove global header variableLukas Fleischer2013-04-08
* html.c: Replace strdup() with xstrdup()Lukas Fleischer2013-04-08
* Always #include corresponding .h in .c filesJohn Keeping2013-04-08
* cgit.mk: fix dependency handlingJohn Keeping2013-04-08
* Makefile: re-include cgit.conf in cgit.mkJohn Keeping2013-04-08
* Do not unnecessarily strdup() environment variablesLukas Fleischer2013-04-08
* Maŕk cgit_environment members constLukas Fleischer2013-04-08
* Return const char * in cgit_{httpscheme, hosturl, rooturl}()Lukas Fleischer2013-04-08
* Update git to v1.8.2.1John Keeping2013-04-08
* ui-blob: don't segfault when no path is givenJohn Keeping2013-04-07
* Convert pager navigation into a unordered listLukas Fleischer2013-03-20
* Makefile: remove CGIT-CFLAGS files in clean stageJason A. Donenfeld2013-03-20
* ui-summary.c: Move urls variable into print_urls()Lukas Fleischer2013-03-20
* Fix colspan valuesLukas Fleischer2013-03-20
* html: check return value of writeJason A. Donenfeld2013-03-20
* ui-shared: squelch compiler warning.Jason A. Donenfeld2013-03-20
* cgit.mk: Use SHELL_PATH_SQ to run gen-version.shJohn Keeping2013-03-20
* cgit.mk: don't rebuild everything if CGIT_VERSION changesJohn Keeping2013-03-20
* ui-patch: use cgit_version not CGIT_VERSIONJohn Keeping2013-03-20
* Makefile: re-use Git's Makefile where possibleJohn Keeping2013-03-20
* tests: check that Git version are in syncJohn Keeping2013-03-20
* Merge branch 'wip'Jason A. Donenfeld2013-03-20
|\
| * cgit_print_snapshot_links(): Free prefix variableLukas Fleischer2013-03-04
| * cgit_print_commit(): Free tmp variableLukas Fleischer2013-03-04
| * cgit_print_tree(): Free curr_rev after usageLukas Fleischer2013-03-04
| * find_default_branch(): Free refmatch after usageLukas Fleischer2013-03-04
| * print_tag_downloads(): Free ref variableLukas Fleischer2013-03-04
| * Free reflists after usageLukas Fleischer2013-03-04
| * ui-shared.c: Remove unused function print_archive_ref()Lukas Fleischer2013-03-04
| * ui-shared.c: Remove unused function cgit_currurl()Lukas Fleischer2013-03-04
| * Mark several functions/variables staticLukas Fleischer2013-03-04
* | ui-shared: fix return type of cgit_self_linkJohn Keeping2013-03-20
|/
* t0107-snapshot: add tests for ZIP archivesJohn Keeping2013-03-04
* tests: make whitespace consistentJohn Keeping2013-03-04
* tests: "grep -e" is not portable to all platformsJohn Keeping2013-03-04
* Makefile: Disable gettext in the Git submoduleLukas Fleischer2013-03-04
* Makefile: improve dependency generationJamie Couture2013-03-04
* cgit.c: Remove parameter from guess_defbranch()Lukas Fleischer2013-03-04
* ui-tree.c: Use a context structure in walk_tree()Lukas Fleischer2013-03-04
* ui-tree.c: Drop the header variableLukas Fleischer2013-03-04
* ui-tree.c: Declare the state variable globallyLukas Fleischer2013-03-04
* ui-tree.c: Pass current revision to print_object()Lukas Fleischer2013-03-04
f false; then > > : ${$+ > > } > > fi > > That's just a bug in dash's parser with ${} in general, because > it bombs out without the if clause too: > > : ${$+ > } This patch fixes the parsing of newlines with parameter substitution. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> 2018-04-02expand: Fix bugs with words connected to the right of $@Herbert Xu On Sun, Mar 04, 2018 at 12:44:59PM +0100, Harald van Dijk wrote: > > command: set -- a ""; space=" "; printf "<%s>" "$@"$space > bash: <a><> > dash 0.5.8: <a>< > > dash 0.5.9.1: <a>< > > dash patched: <a><> This is actually composed of two bugs. First of all our tracking of quotemark is wrong so anything after "$@" becomes quoted. Once we fix that then the problem is that the first space character after "$@" is not recognised as an IFS. This patch fixes both. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> 2018-03-25Revert "[BUILTIN] Remove unnecessary restoration of format string in printf"Herbert Xu This reverts commit 7bb413255368e94395237d789f522891093c5774. The commit breaks printf with more than argument. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> 2018-03-22parser: Fix backquote support in here-document EOF markHerbert Xu