display commit first 8 digits instead of previous 'commit' link
[infrastructure.git] / gitweb / gitweb.cgi
index 017b8be..b8ad9cc 100755 (executable)
@@ -47,7 +47,7 @@ our $home_link_str = $ENV{'SERVER_NAME'} ? "git://" . $ENV{'SERVER_NAME'} : "pro
 
 # name of your site or organization to appear in page titles
 # replace this with something more descriptive for clearer bookmarks
-our $site_name = "git.onelab"
+our $site_name = "@SITENAME@"
                  || ($ENV{'SERVER_NAME'} || "Untitled") . " Git";
 
 # filename of html text to include at top of each page
@@ -62,15 +62,15 @@ our @stylesheets = ("gitweb.css");
 # URI of a single stylesheet, which can be overridden in GITWEB_CONFIG.
 our $stylesheet = undef;
 # URI of GIT logo (72x27 size)
-our $logo = "img/onelab-logo.png";
+our $logo = "img/@LOGO@.png";
 # URI of GIT favicon, assumed to be image/png type
-our $favicon = "img/onelab-favicon.png";
+our $favicon = "img/@FAVICON@.png";
 
 # URI and label (title) of GIT logo link
 #our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
 #our $logo_label = "git documentation";
-our $logo_url = "http://www.onelab.eu";
-our $logo_label = "Onelab";
+our $logo_url = "@LOGOURL@";
+our $logo_label = "@LOGOLABEL@";
 
 # source of projects list
 our $projects_list = "";
@@ -94,8 +94,7 @@ our $strict_export = "";
 our @git_base_url_list = grep { $_ ne '' } ("");
 
 @git_base_url_list = (
-        "git://git.onelab.eu",
-        "ssh://git.onelab.eu/git"
+        "@GITURL@"
 );
 
 
@@ -3610,6 +3609,7 @@ sub git_project_list_body {
        print "</table>\n";
 }
 
+
 sub git_shortlog_body {
        # uses global variable $project
        my ($commitlist, $from, $to, $refs, $extra) = @_;
@@ -3638,7 +3638,7 @@ sub git_shortlog_body {
                                          href(action=>"commit", hash=>$commit), $ref);
                print "</td>\n" .
                      "<td class=\"link\">" .
-                     $cgi->a({-href => href(action=>"commit", hash=>$commit)}, "commit") . " | " .
+                     $cgi->a({-href => href(action=>"commit", hash=>$commit)}, substr($commit,0,8)) . " | " .
                      $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") . " | " .
                      $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree");
                my $snapshot_links = format_snapshot_links($commit);