==================================================================
  Please DO NOT REPLY to this mail or send email to the developers
  about this bug. Please follow-up to Bugzilla using this link:
    https://bugs.contribs.org/show_bug.cgi?id=9629

  Have you checked the Frequently Asked Questions (FAQ)?
    http://wiki.contribs.org/SME_Server:Documentation:FAQ

  Please also take the time to read the following useful guide:
    http://www.chiark.greenend.org.uk/~sgtatham/bugs.html
==================================================================

            Bug ID: 9629
           Summary: SystemName and  DomainName not used in server manager
    Classification: Contribs
           Product: SME Contribs
           Version: 9.0
          Hardware: ---
                OS: ---
            Status: CONFIRMED
          Severity: normal
          Priority: P3
         Component: smeserver-gitweb
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]

if you set a specific domain and or system name for git the server manager page
does not use it 


in /usr/share/perl5/vendor_perl/esmith/FormMagick/Panel/git.pm

at line 157

my $server = get_config_value('', 'SystemName') . "." . get_config_value('',
'DomainName');



could be :
  my $SystemName =  $config_db->get_prop('git','SystemName') ||
get_config_value('', 'SystemName');
  my $DomainName = $config_db->get_prop('git','DomainName') ||
get_config_value('', 'DomainName');
  my $server = $SystemName . "." . $DomainName ;


the same around line 245


    my $SystemName =  $config_db->get_prop('git','SystemName') ||
get_config_value('', 'SystemName');
    my $DomainName = $config_db->get_prop('git','DomainName') ||
get_config_value('', 'DomainName');
    my $repo_url               = $q->a({href => "https://"; . $SystemName . "."
                                                           . $DomainName .
"/git/"
                                                           . $repo_name .
".git" }, $repo_name . ".git" );

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Mail for each SME Contribs bug report
To unsubscribe, e-mail [email protected]
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

Reply via email to