* [PATCH v7, resend] gitweb: ref markers link to named shortlogs
@ 2008-09-02 19:47 Giuseppe Bilotta
2008-09-02 21:15 ` Petr Baudis
2008-09-02 23:16 ` Jakub Narebski
0 siblings, 2 replies; 5+ messages in thread
From: Giuseppe Bilotta @ 2008-09-02 19:47 UTC (permalink / raw)
To: git
Cc: Jakub Narebski, Petr Baudis, Lea Wiemann, Junio C Hamano,
Giuseppe Bilotta
This patch turns ref markers for tags and heads into links to
appropriate views for the ref name, depending on current context.
For annotated tags, we link to the tag view, unless that's the current
view, in which case we switch to shortlog. For other refs, we prefer the
current view if it's history or (short)log, and default to shortlog
otherwise.
Appropriate changes are made in the CSS to prevent ref markers from
being annoyingly blue and underlined, unless hovered. A visual
indication of the target view difference is also implemented by making
annotated tags show up in italic.
Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
---
This is a resend of v7 of the refmark patch, since it seems to
have falled again below the gitweb maintainers' radar, despite
their interest in it ;)
gitweb/gitweb.css | 13 +++++++++++++
gitweb/gitweb.perl | 37 ++++++++++++++++++++++++++++++++++---
2 files changed, 47 insertions(+), 3 deletions(-)
diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css
index 5f4a4b8..3e50060 100644
--- a/gitweb/gitweb.css
+++ b/gitweb/gitweb.css
@@ -491,6 +491,19 @@ span.refs span {
border-color: #ffccff #ff00ee #ff00ee #ffccff;
}
+span.refs span a {
+ text-decoration: none;
+ color: inherit;
+}
+
+span.refs span a:hover {
+ text-decoration: underline;
+}
+
+span.refs span.indirect {
+ font-style: italic;
+}
+
span.refs span.ref {
background-color: #aaaaff;
border-color: #ccccff #0033cc #0033cc #ccccff;
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index a0d9272..7536fc8 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -1196,13 +1196,23 @@ sub format_log_line_html {
}
# format marker of refs pointing to given object
+
+# the destination action is chosen based on object type and current context:
+# - for annotated tags, we choose the tag view unless it's the current view
+# already, in which case we go to shortlog view
+# - for other refs, we keep the current view if we're in history, shortlog or
+# log view, and select shortlog otherwise
sub format_ref_marker {
my ($refs, $id) = @_;
my $markers = '';
if (defined $refs->{$id}) {
foreach my $ref (@{$refs->{$id}}) {
+ # this code exploits the fact that non-lightweight tags are the
+ # only indirect objects, and that they are the only objects for which
+ # we want to use tag instead of shortlog as action
my ($type, $name) = qw();
+ my $indirect = ($ref =~ s/\^\{\}$//);
# e.g. tags/v2.6.11 or heads/next
if ($ref =~ m!^(.*?)s?/(.*)$!) {
$type = $1;
@@ -1212,8 +1222,29 @@ sub format_ref_marker {
$name = $ref;
}
- $markers .= " <span class=\"$type\" title=\"$ref\">" .
- esc_html($name) . "</span>";
+ my $class = $type;
+ $class .= " indirect" if $indirect;
+
+ my $dest_action = "shortlog";
+
+ if ($indirect) {
+ $dest_action = "tag" unless $action eq "tag";
+ } elsif ($action =~ /^(history|(short)?log)$/) {
+ $dest_action = $action;
+ }
+
+ my $dest = "";
+ $dest .= "refs/" unless $ref =~ m!^refs/!;
+ $dest .= $ref;
+
+ my $link = $cgi->a({
+ -href => href(
+ action=>$dest_action,
+ hash=>$dest
+ )}, $name);
+
+ $markers .= " <span class=\"$class\" title=\"$ref\">" .
+ $link . "</span>";
}
}
@@ -2035,7 +2066,7 @@ sub git_get_references {
while (my $line = <$fd>) {
chomp $line;
- if ($line =~ m!^([0-9a-fA-F]{40})\srefs/($type/?[^^]+)!) {
+ if ($line =~ m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {
if (defined $refs{$1}) {
push @{$refs{$1}}, $2;
} else {
--
1.5.6.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v7, resend] gitweb: ref markers link to named shortlogs
2008-09-02 19:47 [PATCH v7, resend] gitweb: ref markers link to named shortlogs Giuseppe Bilotta
@ 2008-09-02 21:15 ` Petr Baudis
2008-09-02 23:16 ` Jakub Narebski
1 sibling, 0 replies; 5+ messages in thread
From: Petr Baudis @ 2008-09-02 21:15 UTC (permalink / raw)
To: Giuseppe Bilotta; +Cc: git, Jakub Narebski, Lea Wiemann, Junio C Hamano
On Tue, Sep 02, 2008 at 09:47:05PM +0200, Giuseppe Bilotta wrote:
> This patch turns ref markers for tags and heads into links to
> appropriate views for the ref name, depending on current context.
>
> For annotated tags, we link to the tag view, unless that's the current
> view, in which case we switch to shortlog. For other refs, we prefer the
> current view if it's history or (short)log, and default to shortlog
> otherwise.
>
> Appropriate changes are made in the CSS to prevent ref markers from
> being annoyingly blue and underlined, unless hovered. A visual
> indication of the target view difference is also implemented by making
> annotated tags show up in italic.
>
> Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
Acked-by: Petr Baudis <pasky@suse.cz>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v7, resend] gitweb: ref markers link to named shortlogs
2008-09-02 19:47 [PATCH v7, resend] gitweb: ref markers link to named shortlogs Giuseppe Bilotta
2008-09-02 21:15 ` Petr Baudis
@ 2008-09-02 23:16 ` Jakub Narebski
2008-09-02 23:26 ` Junio C Hamano
2008-09-02 23:55 ` Giuseppe Bilotta
1 sibling, 2 replies; 5+ messages in thread
From: Jakub Narebski @ 2008-09-02 23:16 UTC (permalink / raw)
To: Giuseppe Bilotta; +Cc: git, Petr Baudis, Lea Wiemann, Junio C Hamano
On Tue, 2 Sep 2008, Giuseppe Bilotta wrote:
> This patch turns ref markers for tags and heads into links to
> appropriate views for the ref name, depending on current context.
>
> For annotated tags, we link to the tag view, unless that's the current
> view, in which case we switch to shortlog. For other refs, we prefer the
> current view if it's history or (short)log, and default to shortlog
> otherwise.
>
> Appropriate changes are made in the CSS to prevent ref markers from
> being annoyingly blue and underlined, unless hovered. A visual
> indication of the target view difference is also implemented by making
> annotated tags show up in italic.
>
> Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
Acked-by: Jakub Narebski <jnareb@gmail.com>
for what it is worth...
> ---
>
> This is a resend of v7 of the refmark patch, since it seems to
> have falled again below the gitweb maintainers' radar, despite
> their interest in it ;)
Unfortunately there is not gitweb maintainer; nobody picked up
the mantle (although there are a few of unofficial gitweb "gurus").
--
Jakub Narebski
ShadeHawk on #git
Poland
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v7, resend] gitweb: ref markers link to named shortlogs
2008-09-02 23:16 ` Jakub Narebski
@ 2008-09-02 23:26 ` Junio C Hamano
2008-09-02 23:55 ` Giuseppe Bilotta
1 sibling, 0 replies; 5+ messages in thread
From: Junio C Hamano @ 2008-09-02 23:26 UTC (permalink / raw)
To: Jakub Narebski; +Cc: Giuseppe Bilotta, git, Petr Baudis, Lea Wiemann
Jakub Narebski <jnareb@gmail.com> writes:
> On Tue, 2 Sep 2008, Giuseppe Bilotta wrote:
>
>> This patch turns ref markers for tags and heads into links to
>> appropriate views for the ref name, depending on current context.
>>
>> For annotated tags, we link to the tag view, unless that's the current
>> view, in which case we switch to shortlog. For other refs, we prefer the
>> current view if it's history or (short)log, and default to shortlog
>> otherwise.
>>
>> Appropriate changes are made in the CSS to prevent ref markers from
>> being annoyingly blue and underlined, unless hovered. A visual
>> indication of the target view difference is also implemented by making
>> annotated tags show up in italic.
>>
>> Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
>
> Acked-by: Jakub Narebski <jnareb@gmail.com>
Thanks (and thanks, Pasky, too). Will apply.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v7, resend] gitweb: ref markers link to named shortlogs
2008-09-02 23:16 ` Jakub Narebski
2008-09-02 23:26 ` Junio C Hamano
@ 2008-09-02 23:55 ` Giuseppe Bilotta
1 sibling, 0 replies; 5+ messages in thread
From: Giuseppe Bilotta @ 2008-09-02 23:55 UTC (permalink / raw)
To: Jakub Narebski; +Cc: git, Petr Baudis, Lea Wiemann, Junio C Hamano
On Wed, Sep 3, 2008 at 1:16 AM, Jakub Narebski <jnareb@gmail.com> wrote:
>
> for what it is worth...
>> ---
>>
>> This is a resend of v7 of the refmark patch, since it seems to
>> have falled again below the gitweb maintainers' radar, despite
>> their interest in it ;)
>
> Unfortunately there is not gitweb maintainer; nobody picked up
> the mantle (although there are a few of unofficial gitweb "gurus").
Oh, that's ok, as long as I know I can bug you and Petr I'm happy ;)
Just let me know if I become a little too insistent 8-D
--
Giuseppe "Oblomov" Bilotta
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-09-02 23:56 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-02 19:47 [PATCH v7, resend] gitweb: ref markers link to named shortlogs Giuseppe Bilotta
2008-09-02 21:15 ` Petr Baudis
2008-09-02 23:16 ` Jakub Narebski
2008-09-02 23:26 ` Junio C Hamano
2008-09-02 23:55 ` Giuseppe Bilotta
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).