* [RFC PATCH] gitweb.perl: tags snapshot link
@ 2010-09-03 11:42 WOLfgang Schricker
2010-09-12 23:25 ` Giuseppe Bilotta
0 siblings, 1 reply; 3+ messages in thread
From: WOLfgang Schricker @ 2010-09-03 11:42 UTC (permalink / raw)
To: git
Hello,
I missed a snapshot link in my local repo:
====
tags
====
tag | commit | shortlog | log | *snapshot*
I found this threads
<http://kerneltrap.org/mailarchive/git/2009/11/8/15785/thread>
<http://thread.gmane.org/gmane.comp.version-control.git/132366>
and the code for "Smarter snapshot names" in 'gitwep.perl'.
My gitweb.perl-1.7.2.2.patch for "activating":
--- gitweb.perl.orig 2010-08-20 01:44:47.000000000 +0200
+++ gitweb.perl 2010-09-03 13:20:40.000000000 +0200
@@ -4909,6 +4909,10 @@
} elsif ($tag{'reftype'} eq "blob") {
print " | " . $cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})}, "raw");
}
+ my $snapshot_links = format_snapshot_links($tag{'fullname'});
+ if (defined $snapshot_links) {
+ print " | " . $snapshot_links;
+ }
print "</td>\n" .
"</tr>";
}
--
Regards
*WOL* fgang *S* chricker
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFC PATCH] gitweb.perl: tags snapshot link
2010-09-03 11:42 [RFC PATCH] gitweb.perl: tags snapshot link WOLfgang Schricker
@ 2010-09-12 23:25 ` Giuseppe Bilotta
2010-09-14 18:06 ` WOLfgang Schricker
0 siblings, 1 reply; 3+ messages in thread
From: Giuseppe Bilotta @ 2010-09-12 23:25 UTC (permalink / raw)
To: git
WOLfgang Schricker wrote:
> Hello,
>
> I missed a snapshot link in my local repo:
> ====
> tags
> ====
> tag | commit | shortlog | log | *snapshot*
>
> I found this threads
>
> <http://kerneltrap.org/mailarchive/git/2009/11/8/15785/thread>
> <http://thread.gmane.org/gmane.comp.version-control.git/132366>
>
> and the code for "Smarter snapshot names" in 'gitwep.perl'.
>
> My gitweb.perl-1.7.2.2.patch for "activating":
>
>
> --- gitweb.perl.orig 2010-08-20 01:44:47.000000000 +0200
> +++ gitweb.perl 2010-09-03 13:20:40.000000000 +0200
> @@ -4909,6 +4909,10 @@
> } elsif ($tag{'reftype'} eq "blob") {
> print " | " . $cgi->a({-href => href(action=>"blob_plain",
> hash=>$tag{'refid'})}, "raw"); }
> + my $snapshot_links = format_snapshot_links($tag{'fullname'});
> + if (defined $snapshot_links) {
> + print " | " . $snapshot_links;
> + }
> print "</td>\n" .
> "</tr>";
> }
If I read the patch correctly, this would add a 'snapshot' link to the tag
list view. Although the snapshot can already be obtained by clicking first
on the commit or shortlog view, this would reduce the number of clicks
necessary to obtain the snapshot. I believe it would be a good idea to have
this. Wolfgang: wold you consider submitting it in a more appropriate form
for inclusion?
If you do, you should probably also consider other places where such a link
could be added, such as in tag view, where the nav bar currently reads
summary | shortlog | log | commit | commitdiff | tree
and "| snapshot" could be appended.
--
Giuseppe Bilotta
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFC PATCH] gitweb.perl: tags snapshot link
2010-09-12 23:25 ` Giuseppe Bilotta
@ 2010-09-14 18:06 ` WOLfgang Schricker
0 siblings, 0 replies; 3+ messages in thread
From: WOLfgang Schricker @ 2010-09-14 18:06 UTC (permalink / raw)
To: git
Giuseppe Bilotta wrote:
> WOLfgang Schricker wrote:
>
>> Hello,
>>
>> I missed a snapshot link in my local repo:
>> ====
>> tags
>> ====
>> tag | commit | shortlog | log | *snapshot*
>>
>> I found this threads
>>
>> <http://kerneltrap.org/mailarchive/git/2009/11/8/15785/thread>
>> <http://thread.gmane.org/gmane.comp.version-control.git/132366>
>>
>> and the code for "Smarter snapshot names" in 'gitwep.perl'.
>>
>> My gitweb.perl-1.7.2.2.patch for "activating":
>>
>>
>> --- gitweb.perl.orig 2010-08-20 01:44:47.000000000 +0200
>> +++ gitweb.perl 2010-09-03 13:20:40.000000000 +0200
>> @@ -4909,6 +4909,10 @@
>> } elsif ($tag{'reftype'} eq "blob") {
>> print " | " . $cgi->a({-href => href(action=>"blob_plain",
>> hash=>$tag{'refid'})}, "raw"); }
>> + my $snapshot_links = format_snapshot_links($tag{'fullname'});
>> + if (defined $snapshot_links) {
>> + print " | " . $snapshot_links;
>> + }
>> print "</td>\n" .
>> "</tr>";
>> }
>
> If I read the patch correctly, this would add a 'snapshot' link to the tag
> list view. Although the snapshot can already be obtained by clicking first
> on the commit or shortlog view, this would reduce the number of clicks
> necessary to obtain the snapshot. I believe it would be a good idea to have
> this. Wolfgang: wold you consider submitting it in a more appropriate form
> for inclusion?
>
> If you do, you should probably also consider other places where such a link
> could be added, such as in tag view, where the nav bar currently reads
>
> summary | shortlog | log | commit | commitdiff | tree
>
> and "| snapshot" could be appended.
>
Yes. _Every_ available snapshot link looks <project>-<SHA1>.tgz.
A 'v0.1' tag brings in the tag list project-v0.1.tgz now.
I see eg. a relocatable 'latest' tag for project-latest.tgz.
--
Regards
*WOL* fgang *S* chricker
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-09-14 18:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-03 11:42 [RFC PATCH] gitweb.perl: tags snapshot link WOLfgang Schricker
2010-09-12 23:25 ` Giuseppe Bilotta
2010-09-14 18:06 ` WOLfgang Schricker
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).