From: Richard Braun <rbraun@sceen.net>
To: git@vger.kernel.org
Subject: [PATCH] gitweb: fix link to parent diff with pathinfo
Date: Sat, 7 May 2016 02:11:42 +0200 [thread overview]
Message-ID: <1462579902-18907-1-git-send-email-rbraun@sceen.net> (raw)
In-Reply-To: <xmqqmvo225fg.fsf@gitster.mtv.corp.google.com>
Gitweb, when used with PATH_INFO, shows a link to parent diff
like http://somedomain/somerepo.git/commitdiff/somehash?hp=parenthash.
That link reports "400 - Invalid hash parameter".
As I understand it, it should instead directly point to the parent diff,
i.e. turn it into http://somedomain/somerepo.git/commitdiff/parenthash,
and delete 'hash_parent' element from the %params hash once we used it,
otherwise the '?hp=parenthash' string is appended.
Signed-off-by: Richard Braun <rbraun@sceen.net>
---
gitweb/gitweb.perl | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 05d7910..f7f7936 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -1423,7 +1423,12 @@ sub href {
delete $params{'hash'};
delete $params{'hash_base'};
} elsif (defined $params{'hash'}) {
- $href .= esc_path_info($params{'hash'});
+ if (defined $params{'hash_parent'}) {
+ $href .= esc_path_info($params{'hash_parent'});
+ delete $params{'hash_parent'};
+ } else {
+ $href .= esc_path_info($params{'hash'});
+ }
delete $params{'hash'};
}
--
2.1.4
next prev parent reply other threads:[~2016-05-07 0:11 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-06 10:19 [PATCH] gitweb: fix link to parent diff with pathinfo Richard Braun
2016-05-06 22:21 ` Junio C Hamano
2016-05-07 0:11 ` Richard Braun [this message]
2016-05-24 18:17 ` Junio C Hamano
2016-05-24 18:26 ` Richard Braun
2016-05-24 18:39 ` Junio C Hamano
2016-05-25 20:33 ` Jakub Narębski
2016-05-25 22:20 ` Richard Braun
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1462579902-18907-1-git-send-email-rbraun@sceen.net \
--to=rbraun@sceen.net \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).