diff options
Diffstat (limited to 'gitweb/gitweb.cgi')
-rwxr-xr-x | gitweb/gitweb.cgi | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/gitweb/gitweb.cgi b/gitweb/gitweb.cgi index 5d743d4..0720425 100755 --- a/gitweb/gitweb.cgi +++ b/gitweb/gitweb.cgi @@ -19,7 +19,7 @@ use File::Basename qw(basename); binmode STDOUT, ':utf8'; our $cgi = new CGI; -our $version = "1.4.4.4"; +our $version = "1.4.4.2"; our $my_url = $cgi->url(); our $my_uri = $cgi->url(-absolute => 1); @@ -76,7 +76,7 @@ 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 '' } (""); +our @git_base_url_list = ("git://crux.nu", "ssh://crux.nu/home/crux/scm"); # default blob_plain mimetype and default charset for text/plain blob our $default_blob_plain_mimetype = 'text/plain'; @@ -179,15 +179,14 @@ our %feature = ( # CRUX: allow custom default HEAD for each project our %default_heads = ( - "ports/core.git" => "2.2", - "ports/opt.git" => "2.2", - "ports/contrib.git" => "2.2", - "ports/contrib-old.git" => "2.2", - "ports/xfce.git" => "2.2", - "ports/xorg.git" => "2.2", - "ports/sip.git" => "2.2", + "ports/core.git" => "2.4", + "ports/opt.git" => "2.4", + "ports/contrib.git" => "2.4", + "ports/xfce.git" => "2.4", + "ports/xorg.git" => "2.4", + "ports/sip.git" => "2.4", "ports/kde.git" => "2.2", - "system/iso.git" => "2.2", + "system/iso.git" => "2.4", ); sub gitweb_get_default_head { |