about summary refs log tree commit diff
path: root/COPYING (unfollow)
Commit message (Expand)Author
2007-10-27Skip unknown header fields when parsing tags and commitsLars Hjemli
2007-10-05correct typo in CSSMichael Krelin
2007-10-01Use git-1.5.3.3Lars Hjemli
2007-10-01cgit.css: make diff headers more visibleLars Hjemli
2007-10-01ui-diff: add links to pre- and postversion of blobsLars Hjemli
2007-10-01gen-version.sh: don't sed the output from git describeLars Hjemli
2007-10-01css: remove the annoying tr:hover rule for diffstatLars Hjemli
2007-10-01ui-commit.c: link to diff instead of tree from diffstatLars Hjemli
2007-10-01Add prefix parameter to cgit_print_diff()Lars Hjemli
2007-10-01Add prefix parameter to cgit_diff_tree()Lars Hjemli
2007-09-25Add support for a renamelimit option in cgitrcLars Hjemli
2007-09-20cgit v0.6.3Lars Hjemli
2007-09-20Upgrade to GIT 1.5.3.2Lars Hjemli
2007-09-20Use trim_end() to remove trailing slashesLars Hjemli
2007-09-20Remove a few compiler warningsLars Hjemli
2007-09-20Add cgit.conf to .gitignore, remove *~Lars Hjemli
2007-09-20ui-tree: show last line of blobLars Hjemli
2007-09-19ui-tree: specify parameter position for all htmlf formatsLars Hjemli
2007-09-14fixed typo in cgitrcMichael Krelin
2007-09-09Improve the sample cgitrc fileChris Pickel
2007-09-08cgit v0.6.2Lars Hjemli
2007-09-08Revert part of "Makefile: add support for DESTDIR"Lars Hjemli
2007-09-08Revert "Makefile: add missing references to DESTDIR"Lars Hjemli
2007-09-08cgit v0.6.1Lars Hjemli
2007-09-08Makefile: add missing references to DESTDIRLars Hjemli
2007-09-08Make cgit honor CACHE_ROOT as defined in MakefileChris Pickel
2007-09-08Makefile: add support for DESTDIRChris Pickel
2007-09-04cgit v0.6Lars Hjemli
2007-09-04Update READMELars Hjemli
2007-09-04Set xdemitconf_t.findfunc=NULLLars Hjemli
2007-09-03Use git-1.5.3 as submoduleLars Hjemli
2007-09-03Delete submodules.sh and prepare for using git-submoduleLars Hjemli
2007-09-03Makefile: add target "get-git"Lars Hjemli
2007-09-03Rewrite the makefile + gen-version.shLars Hjemli
2007-07-23ui-snapshot: whitespace/formatting cleanupLars Hjemli
2007-07-23Make ui-tag.c generate valid xhtmlLars Hjemli
2007-07-23Add support for line number in url fragmentLars Hjemli
2007-07-23cgit_print_snapshot_links: use url to specify snapshot nameLars Hjemli
2007-07-22Add ui-tag.cLars Hjemli
2007-07-21link raw blob from tree file viewMichael Krelin
2007-07-21fix: changed view link to blob in summary.Michael Krelin
2007-07-21allow selective enabling of snapshotsMichael Krelin
2007-07-21shorten snapshot names to repo basenameMichael Krelin
2007-07-21introduce cgit_repobasenameMichael Krelin
2007-07-21added snapshot filename to the linkMichael Krelin
2007-07-21add plain uncompressed tar snapshort formatMichael Krelin
2007-07-21introduced .tar.bz2 snapshotsMichael Krelin
2007-07-20compress .tar.gz using gzip as a filterMichael Krelin
2007-07-20added a chk_non_negative checkMichael Krelin
2007-07-18css: adjust vertical-align of commit info th cellsMichael Krelin
'>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