gitweb.cgi: Make customizations
[hcoop/zz_old/gitweb.git] / gitweb.cgi
index adca1b8..8d73401 100755 (executable)
@@ -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';