From 8093168723016dffd3d12e07aed1f39aa3202d72 Mon Sep 17 00:00:00 2001 From: mwolson_admin Date: Sun, 24 Feb 2008 16:35:02 -0500 Subject: [PATCH] gitweb.cgi: Make customizations --- gitweb.cgi | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/gitweb.cgi b/gitweb.cgi index adca1b8..8d73401 100755 --- a/gitweb.cgi +++ b/gitweb.cgi @@ -39,11 +39,13 @@ our $projectroot = "/pub/git"; our $home_link = $my_uri || "/"; # string of the home link on top of all pages -our $home_link_str = "projects"; +# hcoop-change: Customize. +our $home_link_str = "HCoop"; # name of your site or organization to appear in page titles # replace this with something more descriptive for clearer bookmarks -our $site_name = "" +# hcoop-change: Customize. +our $site_name = "HCoop Git" || ($ENV{'SERVER_NAME'} || "Untitled") . " Git"; # filename of html text to include at top of each page @@ -87,7 +89,10 @@ our $strict_export = ""; # list of git base URLs used for URL to where fetch project from, # i.e. full URL is "$git_base_url/$project" -our @git_base_url_list = grep { $_ ne '' } (""); +# hcoop-change: We like several URLs. +#our @git_base_url_list = grep { $_ ne '' } (""); +our @git_base_url_list = ('git://git.hcoop.net/git', + 'http://git.hcoop.net/git'); # default blob_plain mimetype and default charset for text/plain blob our $default_blob_plain_mimetype = 'text/plain'; -- 2.20.1