* gitweb: A git:// link for the project?
@ 2006-04-06 19:14 Jan-Benedict Glaw
0 siblings, 0 replies; only message in thread
From: Jan-Benedict Glaw @ 2006-04-06 19:14 UTC (permalink / raw)
To: Kay Sievers; +Cc: Git Mailing List
[-- Attachment #1: Type: text/plain, Size: 1729 bytes --]
Hi Kay!
I've got another small idea for gitweb, probably only a line or two,
but Perl isn't exactly my preferred language :)
The idea is to have a 'Copy Link-Lokation'able link presented by
gitweb, maybe placed right to summary, shortlog and log.
That should just link to a URL prefix
(git://git.yourbox.tld/some/path) plus the project path. I guess it's
something like this, but I haven't tested it. Should be good enough to
get an idea of what I ment:
Signed-off-by: Jan-Benedict Glaw <jbglaw@lug-owl.de>
diff --git a/gitweb.cgi b/gitweb.cgi
index c1bb624..b2942fd 100755
--- a/gitweb.cgi
+++ b/gitweb.cgi
@@ -26,6 +26,9 @@ my $rss_link = "";
#my $projectroot = "/pub/scm";
my $projectroot = "/home/kay/public_html/pub/scm";
+# URL prefix for the git:// link
+my $urlprefix = "git://git.kernel.org/pub/scm";
+
# location of the git-core binaries
my $gitbin = "/usr/bin";
@@ -920,6 +923,7 @@ sub git_project_list {
$cgi->a({-href => "$my_uri?" . esc_param("p=$pr->{'path'};a=summary")}, "summary") .
" | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$pr->{'path'};a=shortlog")}, "shortlog") .
" | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$pr->{'path'};a=log")}, "log") .
+ " | " . $cgi->a({-href => "$urlprefix" . esc_param("/$pr->{'path'}")}, "GIT") .
"</td>\n" .
"</tr>\n";
}
--
Jan-Benedict Glaw jbglaw@lug-owl.de . +49-172-7608481 _ O _
"Eine Freie Meinung in einem Freien Kopf | Gegen Zensur | Gegen Krieg _ _ O
für einen Freien Staat voll Freier Bürger" | im Internet! | im Irak! O O O
ret = do_actions((curr | FREE_SPEECH) & ~(NEW_COPYRIGHT_LAW | DRM | TCPA));
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2006-04-06 19:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-06 19:14 gitweb: A git:// link for the project? Jan-Benedict Glaw
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox