about summary refs log tree commit diff stats
path: root/filters
diff options
context:
space:
mode:
authorChristian Hesse2020-10-20 23:46:09 +0200
committerChristian Hesse2020-10-20 23:57:12 +0200
commita4de0e810b69710c3b32f6d253d80d16dec09f36 (patch)
treebae0b334de05e134d06b48aeb888a3bf134a705a /filters
parentglobal: replace references to 'sha1' with 'oid' (diff)
downloadcgit-a4de0e810b69710c3b32f6d253d80d16dec09f36.tar.gz
cgit-a4de0e810b69710c3b32f6d253d80d16dec09f36.zip
global: replace hard coded hash length
With sha1 we had a guaranteed length of 40 hex chars. This changes now
that we have to support sha256 with 64 hex chars... Support both.

Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'filters')
-rwxr-xr-xfilters/commit-links.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/commit-links.sh b/filters/commit-links.sh index 5881952..796ac30 100755 --- a/filters/commit-links.sh +++ b/filters/commit-links.sh
@@ -19,7 +19,7 @@ regex=''
19 19
20# This expression generates links to commits referenced by their SHA1. 20# This expression generates links to commits referenced by their SHA1.
21regex=$regex' 21regex=$regex'
22s|\b([0-9a-fA-F]{7,40})\b|<a href="./?id=\1">\1</a>|g' 22s|\b([0-9a-fA-F]{7,64})\b|<a href="./?id=\1">\1</a>|g'
23 23
24# This expression generates links to a fictional bugtracker. 24# This expression generates links to a fictional bugtracker.
25regex=$regex' 25regex=$regex'