From 7254525c8edc8514f3b377bf3760fe033ce8d789 Mon Sep 17 00:00:00 2001 From: clerie <git@clerie.de> Date: Thu, 6 Mar 2025 20:14:27 +0100 Subject: [PATCH] pkgs/git-show-link: Match names with special chars too --- pkgs/git-show-link/git-show-link.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/git-show-link/git-show-link.py b/pkgs/git-show-link/git-show-link.py index f1d9705..0364cd3 100755 --- a/pkgs/git-show-link/git-show-link.py +++ b/pkgs/git-show-link/git-show-link.py @@ -7,13 +7,13 @@ import subprocess REMOTE_TYPES = [ { # github - "match": re.compile(r'git@github.com:(?P<username>\w+)/(?P<project>\w+).git'), + "match": re.compile(r'git@github.com:(?P<username>[\w\.-]+)/(?P<project>[\w\.-]+).git'), "format-branch": lambda g, b: f"https://github.com/{g['username']}/{g['project']}/tree/{b}/", "format-commit": lambda g, c: f"https://github.com/{g['username']}/{g['project']}/commit/{c}/", }, { # gitea - "match": re.compile(r'(?P<gituser>\w+)@(?P<host>[\w\.-]+):(?P<username>\w+)/(?P<project>\w+).git'), + "match": re.compile(r'(?P<gituser>[\w\.-]+)@(?P<host>[\w\.-]+):(?P<username>[\w\.-]+)/(?P<project>[\w\.-]+).git'), "format-branch": lambda g, b: f"https://{g['host']}/{g['username']}/{g['project']}/src/branch/{b}/", "format-commit": lambda g, c: f"https://{g['host']}/{g['username']}/{g['project']}/commit/{c}/", },