* [PATCH] gitweb: "raw" links to blobs at HEAD
@ 2006-09-26 5:39 Luben Tuikov
2006-09-26 6:46 ` Junio C Hamano
2006-09-26 8:58 ` Jakub Narebski
0 siblings, 2 replies; 5+ messages in thread
From: Luben Tuikov @ 2006-09-26 5:39 UTC (permalink / raw)
To: git
[-- Attachment #1: Type: text/plain, Size: 1245 bytes --]
Currently there is no HTML interface which references (or
can be externally referenced) to yield a _binary_ blob at
HEAD. There is one for non-binary blobs, but none for
binary ones.
The reason is that "blob"/entry itself for non-binary
entries gives you the "Blob page" where you can click on
last link of the page path, but clicking on the binary
entry/"blob" gives you the raw file.
Binary blobs:
Since "raw" == the entry itself, we can eliminate this
redundancy and set "raw" to the binary blob at HEAD. This
patch implements that. If the user wants the binary blob at
hash/hash_base then they can click on the entry itself.
Non-binary blobs:
With this patch "raw" yields the HEAD revision as per the
above comment for binary blobs. If the raw output of the
hash/hash_base blob is required the user can click on the entry
(same as for binary only) and then click on "raw" (which
used to be named "plain" not so long ago) or last entry of
"page" path.
Compare the "raw" link for non-binary blobs from tree view,
to the alternative to getting it: click on entry->HEAD->last
entry of "page" path.
Signed-off-by: Luben Tuikov <ltuikov@yahoo.com>
---
gitweb/gitweb.perl | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 1908141687-p2.txt --]
[-- Type: text/inline; name="p2.txt", Size: 610 bytes --]
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index c7ab3b6..959e3f9 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -1625,9 +1625,9 @@ sub git_print_tree_entry {
"history");
}
print " | " .
- $cgi->a({-href => href(action=>"blob_plain",
- hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},
- "raw");
+ $cgi->a({-href => href(action=>"blob_plain", hash_base=>"HEAD",
+ file_name=>"$basedir$t->{'name'}")},
+ "raw");
print "</td>\n";
} elsif ($t->{'type'} eq "tree") {
--
1.4.2.1.gdbbb
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] gitweb: "raw" links to blobs at HEAD
2006-09-26 5:39 [PATCH] gitweb: "raw" links to blobs at HEAD Luben Tuikov
@ 2006-09-26 6:46 ` Junio C Hamano
2006-09-26 18:53 ` Luben Tuikov
2006-09-26 8:58 ` Jakub Narebski
1 sibling, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2006-09-26 6:46 UTC (permalink / raw)
To: ltuikov; +Cc: git
This does not feel right. Go to summary view, pick the tree
link of a non-head commit from the shortlog list, and the raw
links on the resulting page all say hb=HEAD.
Doesn't this make clicking the entry itself (blob view) and
clicking on the raw link (blob-plain view) inconsistent? The
former goes to the blob from that revision while the latter
always goes to the HEAD.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] gitweb: "raw" links to blobs at HEAD
2006-09-26 6:46 ` Junio C Hamano
@ 2006-09-26 18:53 ` Luben Tuikov
0 siblings, 0 replies; 5+ messages in thread
From: Luben Tuikov @ 2006-09-26 18:53 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
--- Junio C Hamano <junkio@cox.net> wrote:
> This does not feel right. Go to summary view, pick the tree
> link of a non-head commit from the shortlog list, and the raw
> links on the resulting page all say hb=HEAD.
I see your point.
> Doesn't this make clicking the entry itself (blob view) and
> clicking on the raw link (blob-plain view) inconsistent?
It this exactly this consistency which the patch used to de-couple
it and use the "raw" to point to HEAD.
> The former goes to the blob from that revision while the latter
> always goes to the HEAD.
Yes, I completely understand the conundrum.
Ideally, hb would equal HEAD from the _context_, but
1) hb and h != HEAD for any "raw" link,
2) one can set hb=HEAD in the context only when the "blob page"
can be loaded, which is impossible for binary blobs.
So the fix would be that, unless the user had selected a hb/h
explicitly, set "raw" to HEAD (i.e. by default), but leave the entry
with hb/h in SHA. This way, one can take a reference to HEAD or
SHA of the head depending on what is needed. And if they had
selected a hb/h explicitly then both the entry and the "raw"
would point to the SHA.
Such a patch can go on top of those two.
Luben
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] gitweb: "raw" links to blobs at HEAD
2006-09-26 5:39 [PATCH] gitweb: "raw" links to blobs at HEAD Luben Tuikov
2006-09-26 6:46 ` Junio C Hamano
@ 2006-09-26 8:58 ` Jakub Narebski
2006-09-26 20:20 ` Luben Tuikov
1 sibling, 1 reply; 5+ messages in thread
From: Jakub Narebski @ 2006-09-26 8:58 UTC (permalink / raw)
To: git
Luben Tuikov wrote:
> Currently there is no HTML interface which references (or
> can be externally referenced) to yield a _binary_ blob at
> HEAD. There is one for non-binary blobs, but none for
> binary ones.
You can in the same number of steps. First go to _tree_
at head, then click on "raw" link.
It's true that decision that binary files are automatically
redirected to "plain" ("raw") format, so they don't have "html"
output caused that there is no link for binary blob at head.
But I don't think that changing "raw" link to link to HEAD
version, while all other links are to current version is
a good idea...
--
Jakub Narebski
Warsaw, Poland
ShadeHawk on #git
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] gitweb: "raw" links to blobs at HEAD
2006-09-26 8:58 ` Jakub Narebski
@ 2006-09-26 20:20 ` Luben Tuikov
0 siblings, 0 replies; 5+ messages in thread
From: Luben Tuikov @ 2006-09-26 20:20 UTC (permalink / raw)
To: Jakub Narebski, git
--- Jakub Narebski <jnareb@gmail.com> wrote:
> Luben Tuikov wrote:
>
> > Currently there is no HTML interface which references (or
> > can be externally referenced) to yield a _binary_ blob at
> > HEAD. There is one for non-binary blobs, but none for
> > binary ones.
>
> You can in the same number of steps. First go to _tree_
> at head, then click on "raw" link.
Jakub,
For binary only files, there is no HTML interface to refer
to, such that, hb=HEAD for _binary_ only files. Unless of course
one types that on the URL line manually.
That is, I'd like to externally reference binary only blobs
at "HEAD", s.t. no matter _when_ the reference is used, it would
refer to the latest "version" of that file.
E.g. a PDF spec file.
My recent patches on the subject enable this capability.
Luben
> It's true that decision that binary files are automatically
> redirected to "plain" ("raw") format, so they don't have "html"
> output caused that there is no link for binary blob at head.
> But I don't think that changing "raw" link to link to HEAD
> version, while all other links are to current version is
> a good idea...
> --
> Jakub Narebski
> Warsaw, Poland
> ShadeHawk on #git
>
>
> -
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2006-09-26 20:20 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-26 5:39 [PATCH] gitweb: "raw" links to blobs at HEAD Luben Tuikov
2006-09-26 6:46 ` Junio C Hamano
2006-09-26 18:53 ` Luben Tuikov
2006-09-26 8:58 ` Jakub Narebski
2006-09-26 20:20 ` Luben Tuikov
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).