Fixing installation styles due the new base.css and base_chamilo.css

skala
Julio Montoya 15 years ago
parent fcbd9c7894
commit 2e14a6f795
  1. 4
      main/css/base.css
  2. 26
      main/inc/global_error_message.inc.php
  3. 10
      main/install/index.php
  4. 41
      main/install/install.lib.php

@ -695,4 +695,8 @@ button:hover {
div.system_announcement { div.system_announcement {
background-color: #EEEEEE; background-color: #EEEEEE;
}
.RequirementHeading, .RequirementText, .RequirementContent {
margin-top:12px;
} }

@ -52,7 +52,9 @@ if (is_int($global_error_code) && $global_error_code > 0) {
$theme = 'chamilo/'; $theme = 'chamilo/';
$css_path = 'main/css/'; $css_path = 'main/css/';
$css_file = $css_path.$theme.'default.css'; $css_file = $css_path.$theme.'default.css';
$css_base_file = $css_path.'base.css';
$css_base_chamilo_file = $css_path.'base_chamilo.css';
$root_sys = str_replace('\\', '/', realpath(dirname(__FILE__).'/../../')).'/'; $root_sys = str_replace('\\', '/', realpath(dirname(__FILE__).'/../../')).'/';
$root_rel = htmlentities($_SERVER['PHP_SELF']); $root_rel = htmlentities($_SERVER['PHP_SELF']);
@ -83,6 +85,17 @@ if (is_int($global_error_code) && $global_error_code > 0) {
} else { } else {
$css_def = ''; $css_def = '';
} }
$css_base_chamilo_file = $root_sys.$css_base_chamilo_file;
if (file_exists($css_base_chamilo_file)) {
$css_def .= @file_get_contents($css_base_chamilo_file);
}
$css_base_file = $root_sys.$css_base_file;
if (file_exists($css_base_file)) {
$css_def .= @file_get_contents($css_base_file);
}
$css_def = str_replace('behavior:url("/main/css/csshover3.htc");', '', $css_def); $css_def = str_replace('behavior:url("/main/css/csshover3.htc");', '', $css_def);
$css_def = str_replace('main/', $root_rel.'main/', $css_def); $css_def = str_replace('main/', $root_rel.'main/', $css_def);
@ -92,7 +105,6 @@ if (is_int($global_error_code) && $global_error_code > 0) {
$global_error_message = array(); $global_error_message = array();
switch ($global_error_code) { switch ($global_error_code) {
case 1: case 1:
$global_error_message['section'] = $SectionSystemRequirementsProblem; $global_error_message['section'] = $SectionSystemRequirementsProblem;
$global_error_message['title'] = $IncorrectPhpVersionTitle; $global_error_message['title'] = $IncorrectPhpVersionTitle;
@ -109,7 +121,6 @@ if (is_int($global_error_code) && $global_error_code > 0) {
} }
$global_error_message['description'] = $IncorrectPhpVersionDescription; $global_error_message['description'] = $IncorrectPhpVersionDescription;
break; break;
case 2: case 2:
$global_error_message['section'] = $SectionInstallation; $global_error_message['section'] = $SectionInstallation;
$global_error_message['title'] = $InstallationTitle; $global_error_message['title'] = $InstallationTitle;
@ -122,7 +133,6 @@ if (is_int($global_error_code) && $global_error_code > 0) {
<a href="'.$installation_guide_url.'" target="_blank">'.$read_installation_guide.'</a>'; <a href="'.$installation_guide_url.'" target="_blank">'.$read_installation_guide.'</a>';
$global_error_message['description'] = $InstallationDescription; $global_error_message['description'] = $InstallationDescription;
break; break;
case 3: case 3:
case 4: case 4:
case 5: case 5:
@ -153,7 +163,8 @@ if (is_int($global_error_code) && $global_error_code > 0) {
$global_error_message['encoding'] = 'UTF-8'; $global_error_message['encoding'] = 'UTF-8';
$global_error_message['css'] = $css_def; $global_error_message['css'] = $css_def;
$global_error_message['chamilo_logo'] = $root_rel.$css_path.$theme.'images/header-logo.png';
// {ORGANISATION} moved from the header // {ORGANISATION} moved from the header
$global_error_message_page = $global_error_message_page =
@ -173,6 +184,9 @@ if (is_int($global_error_code) && $global_error_code > 0) {
<div id="wrapper"> <div id="wrapper">
<div id="header"> <div id="header">
<div id="header1"> <div id="header1">
<div id="logo">
<img vspace="10" hspace="10" alt="Chamilo" src="{CHAMILO_LOGO}">
</div>
</div> </div>
<div class="clear"></div> <div class="clear"></div>
<div id="header2"></div> <div id="header2"></div>
@ -188,7 +202,7 @@ if (is_int($global_error_code) && $global_error_code > 0) {
<div id="main"> <div id="main">
<div style="text-align: center;"> <div style="text-align: center;">
<div class="warning-message">{DESCRIPTION}</div> {DESCRIPTION}
{CODE} {CODE}
</div> </div>
</div> </div>

@ -605,11 +605,12 @@ if ($_POST['step2']) {
//STEP 6 : LAST CHECK BEFORE INSTALL //STEP 6 : LAST CHECK BEFORE INSTALL
?> ?>
<div class="RequirementHeading">
<h2><?php echo display_step_sequence().get_lang('LastCheck'); ?></h2> <h2><?php echo display_step_sequence().get_lang('LastCheck'); ?></h2>
</div>
<div class="RequirementContent">
<?php echo get_lang('HereAreTheValuesYouEntered'); ?> <?php echo get_lang('HereAreTheValuesYouEntered'); ?>
<br /> </div>
<strong><?php echo get_lang('PrintThisPageToRememberPassAndOthers'); ?></strong> <strong><?php echo get_lang('PrintThisPageToRememberPassAndOthers'); ?></strong>
<blockquote> <blockquote>
@ -620,7 +621,8 @@ if ($_POST['step2']) {
<?php echo get_lang('DBLogin').' : '.$dbUsernameForm; ?><br /> <?php echo get_lang('DBLogin').' : '.$dbUsernameForm; ?><br />
<?php echo get_lang('DBPassword').' : '.str_repeat('*', api_strlen($dbPassForm)); ?><br /> <?php echo get_lang('DBPassword').' : '.str_repeat('*', api_strlen($dbPassForm)); ?><br />
<?php if (!empty($dbPrefixForm)) echo get_lang('DbPrefixForm').' : '.$dbPrefixForm.'<br />'; ?> <?php if (!empty($dbPrefixForm)) echo get_lang('DbPrefixForm').' : '.$dbPrefixForm.'<br />'; ?>
<?php echo get_lang('MainDB').' : <strong>'.$dbNameForm; ?></strong><?php if ($installType == 'new') echo ' (<font color="#cc0033">'.get_lang('ReadWarningBelow').'</font>)'; ?><br /> <?php echo get_lang('MainDB').' : <strong>'.$dbNameForm; ?></strong>
<?php if ($installType == 'new') echo ' (<font color="#cc0033">'.get_lang('ReadWarningBelow').'</font>)'; ?><br />
<?php <?php
if (!$singleDbForm) { if (!$singleDbForm) {
echo get_lang('StatDB').' : <strong>'.$dbStatsForm.'</strong>'; echo get_lang('StatDB').' : <strong>'.$dbStatsForm.'</strong>';

@ -993,13 +993,15 @@ function display_language_selection_box($name = 'language_list', $default_langua
*/ */
function display_language_selection() { ?> function display_language_selection() { ?>
<h2><?php get_lang('WelcomeToTheDokeosInstaller'); ?></h2> <h2><?php get_lang('WelcomeToTheDokeosInstaller'); ?></h2>
<h2><?php echo display_step_sequence(); ?><?php echo get_lang('InstallationLanguage'); ?></h2> <div class="RequirementHeading">
<p><?php echo get_lang('PleaseSelectInstallationProcessLanguage'); ?>:</p> <h2><?php echo display_step_sequence(); ?><?php echo get_lang('InstallationLanguage'); ?></h2>
<p><?php echo get_lang('PleaseSelectInstallationProcessLanguage'); ?>:</p>
<form id="lang_form" method="post" action="<?php echo api_get_self(); ?>"> <form id="lang_form" method="post" action="<?php echo api_get_self(); ?>">
<?php display_language_selection_box('language_list', api_get_interface_language()); ?> <?php display_language_selection_box('language_list', api_get_interface_language()); ?>
<button type="submit" name="step1" class="next" value="<?php get_lang('Next'); ?> &gt;"><?php echo get_lang('Next'); ?></button> <button type="submit" name="step1" class="next" value="<?php get_lang('Next'); ?> &gt;"><?php echo get_lang('Next'); ?></button>
<input type="hidden" name="is_executable" id="is_executable" value="-" /> <input type="hidden" name="is_executable" id="is_executable" value="-" />
</form> </form>
</div>
<?php <?php
} }
@ -1016,14 +1018,16 @@ function display_language_selection() { ?>
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
*/ */
function display_requirements($installType, $badUpdatePath, $updatePath = '', $update_from_version_8 = array(), $update_from_version_6 = array()) { function display_requirements($installType, $badUpdatePath, $updatePath = '', $update_from_version_8 = array(), $update_from_version_6 = array()) {
echo '<h2>'.display_step_sequence().get_lang('Requirements')."</h2>\n"; echo '<div class="RequirementHeading"><h2>'.display_step_sequence().get_lang('Requirements')."</h2></div>";
echo '<div class="RequirementText">';
echo '<strong>'.get_lang('ReadThoroughly').'</strong><br />'; echo '<strong>'.get_lang('ReadThoroughly').'</strong><br />';
echo get_lang('MoreDetails').' <a href="../../documentation/installation_guide.html" target="_blank">'.get_lang('ReadTheInstallGuide').'</a>.<br />'."\n"; echo get_lang('MoreDetails').' <a href="../../documentation/installation_guide.html" target="_blank">'.get_lang('ReadTheInstallGuide').'</a>.<br />'."\n";
if ($installType == 'update') { if ($installType == 'update') {
echo get_lang('IfYouPlanToUpgradeFromOlderVersionYouMightWantToHaveAlookAtTheChangelog').'<br />'."\n"; echo get_lang('IfYouPlanToUpgradeFromOlderVersionYouMightWantToHaveAlookAtTheChangelog').'<br />'."\n";
} }
echo '</div>';
// SERVER REQUIREMENTS // SERVER REQUIREMENTS
echo '<div class="RequirementHeading"><h2>'.get_lang('ServerRequirements').'</h2>'; echo '<div class="RequirementHeading"><h2>'.get_lang('ServerRequirements').'</h2>';
@ -1347,9 +1351,10 @@ function display_requirements($installType, $badUpdatePath, $updatePath = '', $u
*/ */
function display_license_agreement() { function display_license_agreement() {
echo '<h2>'.display_step_sequence().get_lang('Licence').'</h2>'; echo '<div class="RequirementHeading"><h2>'.display_step_sequence().get_lang('Licence').'</h2>';
echo '<p>'.get_lang('DokeosLicenseInfo').'</p>'; echo '<p>'.get_lang('DokeosLicenseInfo').'</p>';
echo '<p><a href="../../documentation/license.html" target="_blank">'.get_lang('PrintVers').'</a></p>'; echo '<p><a href="../../documentation/license.html" target="_blank">'.get_lang('PrintVers').'</a></p>';
echo '</div>';
?> ?>
<table> <table>
<tr><td> <tr><td>
@ -1593,20 +1598,21 @@ function display_database_settings_form($installType, $dbHostForm, $dbUsernameFo
if (empty($dbUserForm)) { if (empty($dbUserForm)) {
$dbUserForm = $singleDbForm ? $dbNameForm : $dbPrefixForm.'chamilo_user'; $dbUserForm = $singleDbForm ? $dbNameForm : $dbPrefixForm.'chamilo_user';
} }
echo '<h2>' . display_step_sequence() .get_lang('DBSetting') . '</h2>'; echo '<div class="RequirementHeading"><h2>' . display_step_sequence() .get_lang('DBSetting') . '</h2></div>';
echo '<div class="RequirementContent">';
echo get_lang('DBSettingUpgradeIntro'); echo get_lang('DBSettingUpgradeIntro');
echo '</div>';
} else { } else {
if (empty($dbPrefixForm)) { //make sure there is a default value for db prefix if (empty($dbPrefixForm)) { //make sure there is a default value for db prefix
$dbPrefixForm = 'chamilo_'; $dbPrefixForm = 'chamilo_';
} }
echo '<h2>' . display_step_sequence() .get_lang('DBSetting') . '</h2>'; echo '<div class="RequirementHeading"><h2>' . display_step_sequence() .get_lang('DBSetting') . '</h2>';
echo '</div>';
echo '<div class="RequirementContent">';
echo get_lang('DBSettingIntro'); echo get_lang('DBSettingIntro');
echo '</div>';
} }
?>
?>
<br /><br />
</td> </td>
</tr> </tr>
<tr> <tr>
@ -1744,9 +1750,12 @@ function display_configuration_settings_form($installType, $urlForm, $languageFo
if ($installType != 'update' && empty($languageForm)) { if ($installType != 'update' && empty($languageForm)) {
$languageForm = $_SESSION['install_language']; $languageForm = $_SESSION['install_language'];
} }
echo '<div class="RequirementHeading">';
echo "<h2>" . display_step_sequence() . get_lang("CfgSetting") . "</h2>"; echo "<h2>" . display_step_sequence() . get_lang("CfgSetting") . "</h2>";
echo '</div>';
echo '<div class="RequirementContent">';
echo '<p>'.get_lang('ConfigSettingsInfo').' <strong>main/inc/conf/configuration.php</strong></p>'; echo '<p>'.get_lang('ConfigSettingsInfo').' <strong>main/inc/conf/configuration.php</strong></p>';
echo '</div>';
echo "</td></tr>\n<tr><td>"; echo "</td></tr>\n<tr><td>";
echo "<table width=\"100%\">"; echo "<table width=\"100%\">";
@ -1884,14 +1893,16 @@ function display_configuration_settings_form($installType, $urlForm, $languageFo
*/ */
function display_after_install_message($installType, $nbr_courses) { function display_after_install_message($installType, $nbr_courses) {
?> ?>
<div class="RequirementHeading">
<h2><?php echo display_step_sequence() . get_lang('CfgSetting'); ?></h2> <h2><?php echo display_step_sequence() . get_lang('CfgSetting'); ?></h2>
</div>
<div class="RequirementContent">
<?php echo get_lang('FirstUseTip'); ?> <?php echo get_lang('FirstUseTip'); ?>
</div>
<br /><br />
<?php <?php
echo '<div class="warning-message">'; echo '<div class="warning-message">';
//echo '<img src="../img/message_warning.png" style="float:left; margin-right:10px;" alt="'.get_lang('Warning').'"/>';
echo '<strong>'.get_lang('SecurityAdvice').'</strong>'; echo '<strong>'.get_lang('SecurityAdvice').'</strong>';
echo ': '; echo ': ';
printf(get_lang('ToProtectYourSiteMakeXAndYReadOnly'), 'main/inc/conf/configuration.php', 'main/install/index.php'); printf(get_lang('ToProtectYourSiteMakeXAndYReadOnly'), 'main/inc/conf/configuration.php', 'main/install/index.php');

Loading…
Cancel
Save