git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gitweb: recognize six digit abbreviated SHA1
@ 2009-01-13  0:04 Anders Melchiorsen
  2009-01-13  0:08 ` Anders Melchiorsen
  0 siblings, 1 reply; 5+ messages in thread
From: Anders Melchiorsen @ 2009-01-13  0:04 UTC (permalink / raw)
  To: git; +Cc: jnareb, gitster

This lets gitweb hightlight abbreviated hashes as produced by
git rev-parse --short.

Signed-off-by: Anders Melchiorsen <mail@cup.kalibalik.dk>
---

It seems like seven digit hashes are in vogue now. So, did I miss some
reason for keeping it at eight in this spot?


diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 0ac84d1..1a7d448 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -1337,7 +1337,7 @@ sub format_log_line_html {
 	my $line = shift;
 
 	$line = esc_html($line, -nbsp=>1);
-	if ($line =~ m/([0-9a-fA-F]{8,40})/) {
+	if ($line =~ m/([0-9a-fA-F]{7,40})/) {
 		my $hash_text = $1;
 		my $link =
 			$cgi->a({-href => href(action=>"object", hash=>$hash_text),
-- 
1.6.0.2.514.g23abd3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] gitweb: recognize six digit abbreviated SHA1
  2009-01-13  0:04 [PATCH] gitweb: recognize six digit abbreviated SHA1 Anders Melchiorsen
@ 2009-01-13  0:08 ` Anders Melchiorsen
  2009-01-13  2:00   ` Sam Vilain
  0 siblings, 1 reply; 5+ messages in thread
From: Anders Melchiorsen @ 2009-01-13  0:08 UTC (permalink / raw)
  To: git; +Cc: jnareb, gitster

Anders Melchiorsen <mail@cup.kalibalik.dk> writes:

> +	if ($line =~ m/([0-9a-fA-F]{7,40})/) {

I could not make up my mind between the seven digits from "git
rev-parse --short" and the six digits currently used by gitk.

So I put one option in the patch, and the other one in the subject.


Cheers,
Anders.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] gitweb: recognize six digit abbreviated SHA1
  2009-01-13  0:08 ` Anders Melchiorsen
@ 2009-01-13  2:00   ` Sam Vilain
  2009-01-13  8:26     ` Junio C Hamano
  0 siblings, 1 reply; 5+ messages in thread
From: Sam Vilain @ 2009-01-13  2:00 UTC (permalink / raw)
  To: Anders Melchiorsen; +Cc: git, jnareb, gitster

Anders Melchiorsen wrote:
> Anders Melchiorsen <mail@cup.kalibalik.dk> writes:
>
>   
>> +	if ($line =~ m/([0-9a-fA-F]{7,40})/) {
>>     
>
> I could not make up my mind between the seven digits from "git
> rev-parse --short" and the six digits currently used by gitk.
>
> So I put one option in the patch, and the other one in the subject.
>   

I think if you're going to go so short as 6 digits, it's probably worth
making sure that the really short SHA1s check commits only. eg, if
you've got a commit 'fa023473' and a tree 'fa023421', then 'fa0234'
should match the commit and not the tree. But I don't think there's a
plumbing way to do a query like that at the moment.

Even git.git isn't unique over 6 digits, even restricting to commits.
Not since b0a3de ;-).

Sam

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] gitweb: recognize six digit abbreviated SHA1
  2009-01-13  2:00   ` Sam Vilain
@ 2009-01-13  8:26     ` Junio C Hamano
  2009-01-14  0:33       ` Sam Vilain
  0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2009-01-13  8:26 UTC (permalink / raw)
  To: Sam Vilain; +Cc: Anders Melchiorsen, git, jnareb

Sam Vilain <sam@vilain.net> writes:

> I think if you're going to go so short as 6 digits, it's probably worth
> making sure that the really short SHA1s check commits only. eg, if
> you've got a commit 'fa023473' and a tree 'fa023421', then 'fa0234'
> should match the commit and not the tree. But I don't think there's a
> plumbing way to do a query like that at the moment.

When people give an abbreviated object name, 99% of the time they mean
commits (and "index deadbeef..acebead" in a patch is a good place to pick
blob object names from, which would be what the 99% of the remaining 1%
would name), so making sure it is a commit or a blob would be a very
sensible thing to do.

Unfortunately, you fundamentally cannot do this without taking a
performance hit of actually opening the object.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] gitweb: recognize six digit abbreviated SHA1
  2009-01-13  8:26     ` Junio C Hamano
@ 2009-01-14  0:33       ` Sam Vilain
  0 siblings, 0 replies; 5+ messages in thread
From: Sam Vilain @ 2009-01-14  0:33 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Anders Melchiorsen, git, jnareb

Junio C Hamano wrote:
> When people give an abbreviated object name, 99% of the time they mean
> commits (and "index deadbeef..acebead" in a patch is a good place to pick
> blob object names from, which would be what the 99% of the remaining 1%
> would name), so making sure it is a commit or a blob would be a very
> sensible thing to do.
>
> Unfortunately, you fundamentally cannot do this without taking a
> performance hit of actually opening the object.
>   

Yeah. I envisioned this just for those cases where the tool would
otherwise return 'ambiguous argument'; if there was a hint as to the
object type, open *all* the matching objects and return the one that
matched the type only.

Sam.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-01-14  0:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-13  0:04 [PATCH] gitweb: recognize six digit abbreviated SHA1 Anders Melchiorsen
2009-01-13  0:08 ` Anders Melchiorsen
2009-01-13  2:00   ` Sam Vilain
2009-01-13  8:26     ` Junio C Hamano
2009-01-14  0:33       ` Sam Vilain

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).