summary refs log tree commit diff
path: root/bin/cash/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-02-15 17:47:44 -0500
committerJune McEnroe <june@causal.agency>2019-02-15 17:47:44 -0500
commit30132e89f935e247e3ba76c63abd736db52448ca (patch)
treedef9a4aac4710f74d700f2678d6737503401f8d0 /bin/cash/Makefile
parentAdd nmap gp (diff)
downloadsrc-30132e89f935e247e3ba76c63abd736db52448ca.tar.gz
src-30132e89f935e247e3ba76c63abd736db52448ca.zip
Highlight strings in sh command substitutions
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions
it's SHA1 ID) was simply concatenated to the URL. Now, prepend an "id=" string so that the links actually point to the right blobs and thus the exact lines. Signed-off-by: Julius Plenz <plenz@cis.fu-berlin.de> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> * Format git diff headers correctly when adding or removing files.Michael Halstead2012-11-15 | | | | | | Copying the output of cgit and using it in patches now works when adding files to or removing files from the repository. This is helpful for people who use cgit in their patch workflow. * Makefile: get snapshots from githubFerry Huberts2012-11-04 | | | | Github will have more bandwidth than Lars' server. * Makefile: remove tags fileJamie Couture2012-10-31 | | | | | | Remove tags file from working directory. Signed-off-by: Jamie Couture <jamie.couture@gmail.com> * ui-shared: use placeholder for empty commit subjectChristian Franke2012-10-28 | | | | | Display a placeholder when creating links to commits with empty subjects. This avoids the creation of links of the form <a></a>. * syntax-highlighting.sh: Fix command injection.Jason A. Donenfeld2012-10-27 | | | | | | | | | By not quoting the argument, an attacker with the ability to add files to the repository could pass arbitrary arguments to the highlight command, in particular, the --plug-in argument which can lead to arbitrary command execution. This patch adds simple argument quoting. * Fix man page typo.Jason A. Donenfeld2012-10-18 | * Makefile: Support OpenBSD just like FreeBSDJason A. Donenfeld2012-10-17 | * Makefile: support FreeBSD libiconv pathsJason A. Donenfeld2012-10-17 | | | | | According to Dan Rue <drue@therub.org>, FreeBSD requires the lib paths to get libiconv from /usr/local. * tests: check for proper html entityJason A. Donenfeld2012-10-17 | | | | | | | Since we're now properly writing ampersand literals as &amp; instead of as a plain &, we need to update the test accordingly. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> * ui-log: Add "commit-sort" option for controlling commit orderingTobias Bieniek2012-10-17 | | | | | | | This makes it possible to use strict commit date ordering or strict topological ordering by passing the corresponding flags to "git log". Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> * ui-repolist: Add "section-sort" flag to control section sorting.Tobias Bieniek2012-10-17 | | | | | | | | Flag which, when set to "1", will sort the sections on the repository listing by name. Set this flag to "0" if the order in the cgitrc file should be preserved. Default value: "1". Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> * scan-tree: Unify gitweb.* and cgit.* settings into one config option.Jason A. Donenfeld2012-10-17 | | | | | | | | | | | | | | | | | | | | | | | | | | After some back and forth with Jamie and René, it looks like the git config semantics are going to be like this: - gitweb.category maps to the cgit repo config key "section" - gitweb.description maps to the cgit repo config key "desc" - gitweb.owner maps to the cgit repo config key "owner" - cgit.* maps to all cgit repo config keys This option can be enabled with "enable-git-config=1", and replaces all previous "enable-gitweb-*" config keys. The order of operations is as follows: - git config settings are applied in the order that they exist in the git config file - if the owner is not set from git config, get the owner using the usual getpwuid call - if the description is not set from git config, look inside the static $path/description file - if section-from-path=1, override whatever previous settings were inside of git config using the section-from-path logic - parse $path/cgitrc for local repo.* settings, that override all previous settings * ui: Remember to print ampersand as proper html entities.William Bell2012-10-17 | * ui-repolist: Rename section-sort to repository-sort.Jason A. Donenfeld