update
[infrastructure.git] / gitweb / gitweb.cgi
index c03efec..017b8be 100755 (executable)
@@ -43,11 +43,11 @@ our $project_maxdepth = 2007;
 our $home_link = $my_uri || "/";
 
 # string of the home link on top of all pages
-our $home_link_str = $ENV{'SERVER_NAME'} ? "http://" . $ENV{'SERVER_NAME'} : "projects";
+our $home_link_str = $ENV{'SERVER_NAME'} ? "git://" . $ENV{'SERVER_NAME'} : "projects";
 
 # name of your site or organization to appear in page titles
 # replace this with something more descriptive for clearer bookmarks
-our $site_name = ""
+our $site_name = "git.onelab"
                  || ($ENV{'SERVER_NAME'} || "Untitled") . " Git";
 
 # filename of html text to include at top of each page
@@ -64,7 +64,7 @@ our $stylesheet = undef;
 # URI of GIT logo (72x27 size)
 our $logo = "img/onelab-logo.png";
 # URI of GIT favicon, assumed to be image/png type
-our $favicon = "img/git-favicon.png";
+our $favicon = "img/onelab-favicon.png";
 
 # URI and label (title) of GIT logo link
 #our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
@@ -93,6 +93,12 @@ our $strict_export = "";
 # i.e. full URL is "$git_base_url/$project"
 our @git_base_url_list = grep { $_ ne '' } ("");
 
+@git_base_url_list = (
+        "git://git.onelab.eu",
+        "ssh://git.onelab.eu/git"
+);
+
+
 # default blob_plain mimetype and default charset for text/plain blob
 our $default_blob_plain_mimetype = 'text/plain';
 our $default_text_plain_charset  = undef;