mcramer
2012-09-05 5715f5fe3954a2112f443964244747dfd6d31937
- Implemented check for theme compatibility
- Implemented session message system (template modifications pending)
- Updated ISPC SVN version number to 3.0.5

16 files modified
4 files added
93 ■■■■■ changed files
install/sql/ispconfig3.sql 2 ●●● patch | view | raw | blame | history
install/tpl/config.inc.php.master 2 ●●● patch | view | raw | blame | history
interface/lib/classes/listform_actions.inc.php 9 ●●●●● patch | view | raw | blame | history
interface/lib/classes/tform_actions.inc.php 8 ●●●●● patch | view | raw | blame | history
interface/web/admin/form/users.tform.php 4 ●●● patch | view | raw | blame | history
interface/web/client/form/client.tform.php 4 ●●● patch | view | raw | blame | history
interface/web/client/form/client_circle.tform.php 4 ●●● patch | view | raw | blame | history
interface/web/client/form/reseller.tform.php 4 ●●● patch | view | raw | blame | history
interface/web/dashboard/dashboard.php 10 ●●●●● patch | view | raw | blame | history
interface/web/index.php 10 ●●●●● patch | view | raw | blame | history
interface/web/login/index.php 13 ●●●●● patch | view | raw | blame | history
interface/web/login/lib/lang/de.lng 1 ●●●● patch | view | raw | blame | history
interface/web/login/lib/lang/en.lng 2 ●●●●● patch | view | raw | blame | history
interface/web/mailuser/index.php 8 ●●●●● patch | view | raw | blame | history
interface/web/themes/default-304/ISPC_VERSION 1 ●●●● patch | view | raw | blame | history
interface/web/themes/default_64_navimg/ISPC_VERSION 1 ●●●● patch | view | raw | blame | history
interface/web/themes/default_combobox/ISPC_VERSION 1 ●●●● patch | view | raw | blame | history
interface/web/themes/default_no_navimg/ISPC_VERSION 1 ●●●● patch | view | raw | blame | history
interface/web/tools/form/interface_settings.tform.php 4 ●●● patch | view | raw | blame | history
interface/web/tools/form/tpl_default.tform.php 4 ●●● patch | view | raw | blame | history
install/sql/ispconfig3.sql
@@ -2130,6 +2130,6 @@
-- Dumping data for table `sys_config`
--
INSERT INTO sys_config VALUES ('1','db','db_version','3.0.4.5');
INSERT INTO sys_config VALUES ('1','db','db_version','3.0.5');
SET FOREIGN_KEY_CHECKS = 1;
install/tpl/config.inc.php.master
@@ -56,7 +56,7 @@
//** Application
define('ISPC_APP_TITLE', 'ISPConfig');
define('ISPC_APP_VERSION', '3.0.4.5');
define('ISPC_APP_VERSION', '3.0.5');
define('DEVSYSTEM', 0);
interface/lib/classes/listform_actions.inc.php
@@ -278,6 +278,15 @@
        $app->tpl->setVar($app->listform->wordbook);
        $app->tpl->setVar('form_action', $app->listform->listDef['file']);
        
        if(isset($_SESSION['show_info_msg'])) {
            $app->tpl->setVar('show_info_msg', $_SESSION['show_info_msg']);
            unset($_SESSION['show_info_msg']);
        }
        if(isset($_SESSION['show_error_msg'])) {
            $app->tpl->setVar('show_error_msg', $_SESSION['show_error_msg']);
            unset($_SESSION['show_error_msg']);
        }
        //* Parse the templates and send output to the browser
        $this->onShowEnd();
    }
interface/lib/classes/tform_actions.inc.php
@@ -491,6 +491,14 @@
                    $app->tpl->setVar('form_navibar',$navibar);
                }
                
                if(isset($_SESSION['show_info_msg'])) {
                    $app->tpl->setVar('show_info_msg', $_SESSION['show_info_msg']);
                    unset($_SESSION['show_info_msg']);
                }
                if(isset($_SESSION['show_error_msg'])) {
                    $app->tpl->setVar('show_error_msg', $_SESSION['show_error_msg']);
                    unset($_SESSION['show_error_msg']);
                }
                
                // loading plugins
                $this->loadPlugins($this->active_tab);
interface/web/admin/form/users.tform.php
@@ -100,7 +100,9 @@
while ($file = @readdir ($handle)) { 
    if (substr($file, 0, 1) != '.') {
        if(@is_dir(ISPC_THEMES_PATH."/$file")) {
            $themes_list[$file] = $file;
            if($file == 'default' || (@file_exists(ISPC_THEMES_PATH."/$file/ISPC_VERSION") && trim(@file_get_contents(ISPC_THEMES_PATH."/$file/ISPC_VERSION")) == ISPC_APP_VERSION)) {
                $themes_list[$file] = $file;
            }
        }
    }
}
interface/web/client/form/client.tform.php
@@ -73,7 +73,9 @@
while ($file = @readdir ($handle)) { 
    if (substr($file, 0, 1) != '.') {
        if(@is_dir(ISPC_THEMES_PATH."/$file")) {
            $themes_list[$file] = $file;
            if($file == 'default' || (@file_exists(ISPC_THEMES_PATH."/$file/ISPC_VERSION") && trim(@file_get_contents(ISPC_THEMES_PATH."/$file/ISPC_VERSION")) == ISPC_APP_VERSION)) {
                $themes_list[$file] = $file;
            }
        }
    }
}
interface/web/client/form/client_circle.tform.php
@@ -73,7 +73,9 @@
while ($file = @readdir ($handle)) { 
    if (substr($file, 0, 1) != '.') {
        if(@is_dir(ISPC_THEMES_PATH."/$file")) {
            $themes_list[$file] = $file;
            if($file == 'default' || (@file_exists(ISPC_THEMES_PATH."/$file/ISPC_VERSION") && trim(@file_get_contents(ISPC_THEMES_PATH."/$file/ISPC_VERSION")) == ISPC_APP_VERSION)) {
                $themes_list[$file] = $file;
            }
        }
    }
}
interface/web/client/form/reseller.tform.php
@@ -61,7 +61,9 @@
while ($file = @readdir ($handle)) {
    if (substr($file, 0, 1) != '.') {
        if(@is_dir(ISPC_THEMES_PATH."/$file")) {
            $themes_list[$file] = $file;
            if($file == 'default' || (@file_exists(ISPC_THEMES_PATH."/$file/ISPC_VERSION") && trim(@file_get_contents(ISPC_THEMES_PATH."/$file/ISPC_VERSION")) == ISPC_APP_VERSION)) {
                $themes_list[$file] = $file;
            }
        }
    }
}
interface/web/dashboard/dashboard.php
@@ -93,6 +93,16 @@
*/
$info = array();
if(isset($_SESSION['show_info_msg'])) {
    $info[] = array('info_msg' => $_SESSION['show_info_msg']);
    unset($_SESSION['show_info_msg']);
}
if(isset($_SESSION['show_error_msg'])) {
    $app->tpl->setloop('error', array(array('error_msg' => $_SESSION['show_error_msg'])));
    unset($_SESSION['show_error_msg']);
}
/*
 * Check the ISPConfig-Version (only for the admin)
*/
interface/web/index.php
@@ -51,6 +51,16 @@
    $app->tpl->setVar('global_tabchange_discard_txt', $app->lng('global_tabchange_discard_txt'));
}
if(isset($_SESSION['show_info_msg'])) {
    $app->tpl->setVar('show_info_msg', $_SESSION['show_info_msg']);
    unset($_SESSION['show_info_msg']);
}
if(isset($_SESSION['show_error_msg'])) {
    $app->tpl->setVar('show_error_msg', $_SESSION['show_error_msg']);
    unset($_SESSION['show_error_msg']);
}
$app->tpl_defaults();
$app->tpl->pparse();
?>
interface/web/login/index.php
@@ -65,7 +65,7 @@
            $maintenance_mode_error = $app->lng('error_maintenance_mode');
        }
        //* Login Form was send
        //* Login Form was sent
        if(count($_POST) > 0) {
            //** Check variables
@@ -197,6 +197,17 @@
                                    include_once($_SESSION['s']['user']['startmodule'].'/lib/module.conf.php');
                                    $_SESSION['s']['module'] = $module;
                                }
                                // check if the user theme is valid
                                if($_SESSION['s']['user']['theme'] != 'default') {
                                    $tmp_path = ISPC_THEMES_PATH."/".$_SESSION['s']['user']['theme'];
                                    if(!@is_dir($tmp_path) || !@file_exists($tmp_path."/ISPC_VERSION") || trim(file_get_contents($tmp_path."/ISPC_VERSION")) != ISPC_APP_VERSION) {
                                        // fall back to default theme if this one is not compatible with current ispc version
                                        $_SESSION['s']['user']['theme'] = 'default';
                                        $_SESSION['s']['theme'] = 'default';
                                        $_SESSION['show_error_msg'] = $app->lng('theme_not_compatible');
                                    }
                                }
                                $app->plugin->raiseEvent('login',$this);
interface/web/login/lib/lang/de.lng
@@ -20,4 +20,5 @@
$wb['pw_button_txt'] = 'Passwort zusenden';
$wb['email_txt'] = 'E-Mail';
$wb['error_maintenance_mode'] = 'Diese ISPConfig-Installation wird gerade gewartet. Wir sind in Kürze wieder für Sie da. Vielen Dank für Ihre Geduld.';
$wb['theme_not_compatible'] = 'Das gewählte Theme ist mit dieser ISPConfig Version nicht kompatibel. Bitte prüfen Sie, ob ein Update des Themes verfügbar ist.<br />Es wurde nun automatisch das Standard-Theme aktiviert.';
?>
interface/web/login/lib/lang/en.lng
@@ -24,4 +24,6 @@
$wb['email_txt']    = "Email";
$wb['error_maintenance_mode'] = 'This ISPConfig installation is currently under maintenance. We should be back shortly. Thank you for your patience.';
$wb['theme_not_compatible'] = 'The chosen theme is not compatible with the current ISPConfig version. Please check for a new version of the theme.<br />The default theme as been activated automatically.';
?>
interface/web/mailuser/index.php
@@ -38,6 +38,14 @@
$app->tpl->setVar('msg',$msg);
$app->tpl->setVar('error',$error);
if(isset($_SESSION['show_info_msg'])) {
    $app->tpl->setVar('show_info_msg', $_SESSION['show_info_msg']);
    unset($_SESSION['show_info_msg']);
}
if(isset($_SESSION['show_error_msg'])) {
    $app->tpl->setVar('show_error_msg', $_SESSION['show_error_msg']);
    unset($_SESSION['show_error_msg']);
}
interface/web/themes/default-304/ISPC_VERSION
New file
@@ -0,0 +1 @@
3.0.4.6
interface/web/themes/default_64_navimg/ISPC_VERSION
New file
@@ -0,0 +1 @@
3.0.5
interface/web/themes/default_combobox/ISPC_VERSION
New file
@@ -0,0 +1 @@
3.0.5
interface/web/themes/default_no_navimg/ISPC_VERSION
New file
@@ -0,0 +1 @@
3.0.5
interface/web/tools/form/interface_settings.tform.php
@@ -113,7 +113,9 @@
while ($file = @readdir ($handle)) { 
    if (substr($file, 0, 1) != '.') {
        if(@is_dir(ISPC_THEMES_PATH."/$file")) {
            $themes_list[$file] = $file;
            if($file == 'default' || (@file_exists(ISPC_THEMES_PATH."/$file/ISPC_VERSION") && trim(@file_get_contents(ISPC_THEMES_PATH."/$file/ISPC_VERSION")) == ISPC_APP_VERSION)) {
                $themes_list[$file] = $file;
            }
        }
    }
}
interface/web/tools/form/tpl_default.tform.php
@@ -113,7 +113,9 @@
while ($file = @readdir ($handle)) { 
    if (substr($file, 0, 1) != '.') {
        if(@is_dir(ISPC_THEMES_PATH."/$file")) {
            $themes_list[$file] = $file;
            if($file == 'default' || (@file_exists(ISPC_THEMES_PATH."/$file/ISPC_VERSION") && trim(@file_get_contents(ISPC_THEMES_PATH."/$file/ISPC_VERSION")) == ISPC_APP_VERSION)) {
                $themes_list[$file] = $file;
            }
        }
    }
}