Verwendete Schnittstelle (CGI/FastCGI) in Versionsinfoscreen anzeigen
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 15 Feb 2011 08:02:25 +0000 (09:02 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 15 Feb 2011 08:02:25 +0000 (09:02 +0100)
SL/Dispatcher.pm
bin/mozilla/login.pl
locale/de/all
templates/webpages/login/company_logo.html

index f22cf0e..26312f6 100644 (file)
@@ -35,6 +35,11 @@ sub new {
   return $self;
 }
 
+sub interface_type {
+  my ($self) = @_;
+  return $self->{interface} eq 'cgi' ? 'CGI' : 'FastCGI';
+}
+
 sub pre_request_checks {
   if (!$::auth->session_tables_present) {
     if ($::form->{script} eq 'admin.pl') {
index 49cb6c6..43ef952 100644 (file)
@@ -163,6 +163,7 @@ sub company_logo {
 
   $form->{stylesheet} =  $myconfig{stylesheet};
   $form->{title}      =  $::locale->text('Lx-Office');
+  $form->{interface}  = $::dispatcher->interface_type;
 
   # create the logo screen
   $form->header() unless $form->{noheader};
index 41038e1..dd55043 100644 (file)
@@ -1897,6 +1897,7 @@ $self->{texts} = {
   'Warning'                     => 'Warnung',
   'Warnings during template upgrade' => 'Warnungen bei Aktualisierung der Dokumentenvorlagen',
   'WebDAV link'                 => 'WebDAV-Link',
+  'Webserver interface'         => 'Webserverschnittstelle',
   'Weight'                      => 'Gewicht',
   'Weight unit'                 => 'Gewichtseinheit',
   'What <b>term</b> you are looking for?' => 'Nach welchem <b>Begriff</b> wollen Sie suchen?',
index 7946c52..fc758d8 100644 (file)
      <th align="left">[% 'Database Host' | $T8 %]</th>
      <td>[% HTML.escape(myconfig_dbhost) %]</td>
     </tr>
+    <tr>
+     <th align="left">[% 'Webserver interface' | $T8 %]</th>
+     <td>[% HTML.escape(interface) %]</td>
+    </tr>
     <tr class="nomobile">
      <th align="left">[% 'Lx-Office Homepage' | $T8 %]:</th>
      <td><a href="http://lx-office.org" target="_blank" title="[% 'Lx-Office Homepage' | $T8 %]">http://lx-office.org</a></td>