From mboxrd@z Thu Jan 1 00:00:00 1970 From: Giuseppe Bilotta Subject: Re: [RFC PATCH] gitweb.perl: tags snapshot link Date: Mon, 13 Sep 2010 01:25:30 +0200 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Mon Sep 13 01:26:06 2010 Return-path: Envelope-to: gcvg-git-2@lo.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Ouvvw-00037R-Jd for gcvg-git-2@lo.gmane.org; Mon, 13 Sep 2010 01:26:04 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754046Ab0ILXZr (ORCPT ); Sun, 12 Sep 2010 19:25:47 -0400 Received: from lo.gmane.org ([80.91.229.12]:48104 "EHLO lo.gmane.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754004Ab0ILXZr (ORCPT ); Sun, 12 Sep 2010 19:25:47 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Ouvvc-00032O-3P for git@vger.kernel.org; Mon, 13 Sep 2010 01:25:44 +0200 Received: from 151.60.177.87 ([151.60.177.87]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 13 Sep 2010 01:25:44 +0200 Received: from giuseppe.bilotta by 151.60.177.87 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 13 Sep 2010 01:25:44 +0200 X-Injected-Via-Gmane: http://gmane.org/ Followup-To: gmane.comp.version-control.git X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 151.60.177.87 User-Agent: KNode/4.4.5 Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: WOLfgang Schricker wrote: > Hello, > > I missed a snapshot link in my local repo: > ==== > tags > ==== > tag | commit | shortlog | log | *snapshot* > > I found this threads > > > > > 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 "\n" . > ""; > } 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