From: "Aneesh Kumar K.V" <aneesh.kumar@gmail.com>
To: git@vger.kernel.org
Subject: [PATCH] gitweb: Add support for cloneurl.
Date: Tue, 15 Aug 2006 19:58:28 +0530 [thread overview]
Message-ID: <44E1DA0C.80602@gmail.com> (raw)
In-Reply-To: <ebrpfs$grn$1@sea.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 323 bytes --]
Aneesh Kumar K.V wrote:
> http://gitweb.freedesktop.org/?p=PolicyKit.git;a=summary
>
> This shows it in the URL part of each project.
> -aneesh
The below patch implements the same. I am not sure whether the approach is the right one.
To see the results you can see
http://git.openssi.org/~kvaneesh/gitweb.cgi
-aneesh
[-- Attachment #2: 0001-gitweb-Add-support-for-cloneurl.txt --]
[-- Type: text/plain, Size: 1644 bytes --]
>From 87503bfc92210ab6791f7a15eba72682d60f74ca Mon Sep 17 00:00:00 2001
Subject: [PATCH] gitweb: Add support for cloneurl.
A new file cloneurl is added below .git directory for each project.
The contents of the file is displayed by gitweb as the url which
need to be used for git clone.
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@gmail.com>
---
gitweb/gitweb.perl | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index b5b89de..869c53e 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -503,6 +503,16 @@ sub git_get_project_description {
return $descr;
}
+sub git_get_project_cloneurl {
+ my $path = shift;
+
+ open my $fd, "$projectroot/$path/cloneurl" or return undef;
+ my $descr = <$fd>;
+ close $fd;
+ chomp $descr;
+ return $descr;
+}
+
sub git_get_projects_list {
my @list;
@@ -1655,6 +1665,7 @@ sub git_project_list {
sub git_summary {
my $descr = git_get_project_description($project) || "none";
my $head = git_get_head_hash($project);
+ my $cloneurl = git_get_project_cloneurl($project) || "none";
my %co = parse_commit($head);
my %cd = parse_date($co{'committer_epoch'}, $co{'committer_tz'});
@@ -1669,6 +1680,7 @@ sub git_summary {
"<tr><td>description</td><td>" . esc_html($descr) . "</td></tr>\n" .
"<tr><td>owner</td><td>$owner</td></tr>\n" .
"<tr><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n" .
+ "<tr><td>URL</td><td>$cloneurl</td></tr>\n" .
"</table>\n";
open my $fd, "-|", $GIT, "rev-list", "--max-count=17", git_get_head_hash($project)
--
1.4.2.rc1.g83e1-dirty
next prev parent reply other threads:[~2006-08-15 14:29 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-08-15 6:27 A better way to inform about git clone url. [2de21fac9842650fceb3db68f15711e38fabc3c8] Aneesh Kumar K.V
2006-08-15 14:28 ` Aneesh Kumar K.V [this message]
2006-08-15 16:24 ` Jon Loeliger
2006-08-15 17:23 ` [PATCH] gitweb: Support multiple clone urls Aneesh Kumar K.V
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=44E1DA0C.80602@gmail.com \
--to=aneesh.kumar@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).