From 7b82f17eed6e2f7fadbb11a1d57fcaa13e4fa617 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Tue, 31 Aug 2010 16:39:40 +0000 Subject: [PATCH] - Cosmetics: aligned screen titles with the "Next" label mentioned in the previous screen. - All hyperlinks (in the setup) now point to a new tab/window so that you can continue to run the setup in the original window after reading what was displayed. SVN:trunk[731] --- setup/index.php | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/setup/index.php b/setup/index.php index 59b8fa6a4..d3782551a 100644 --- a/setup/index.php +++ b/setup/index.php @@ -184,7 +184,7 @@ function CheckPHPVersion(SetupWebPage $oP) else { $aMissingExtensions[] = $sExtension; - $aMissingExtensionsLinks[] = "$sExtension"; + $aMissingExtensionsLinks[] = "$sExtension"; } } if (count($aExtensionsOk) > 0) @@ -647,8 +647,8 @@ function LicenceAcknowledgement($oP, $aParamValues, $iCurrentStep) { $sNextOperation = 'step'.($iCurrentStep+1); - $oP->set_title('License Agreement'); - $oP->add('

iTop is released by Combodo SARL under the terms of the GPL V3 license. In order to use iTop you must accept the terms of this license.

'); + $oP->set_title('License agreement'); + $oP->add('

iTop is released by Combodo SARL under the terms of the GPL V3 license. In order to use iTop you must accept the terms of this license.

'); $oP->add("\n"); $oP->add("
\n"); $oP->add("\n"); @@ -679,7 +679,7 @@ function DatabaseServerSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep) if ($aParamValues['licence_ok'] == 1) { $sRedStar = '*'; - $oP->set_title("Configuration of the database connection\n"); + $oP->set_title("Database server selection\n"); $oP->add("

Please enter the name of the MySQL database server you want to use for iTop and supply valid credentials to connect to it

\n"); // Form goes here $oP->add("
Database connection\n"); @@ -691,7 +691,7 @@ function DatabaseServerSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep) $aForm[] = array('label' => 'Password:', 'input' => ""); $oP->form($aForm); $oP->add("
\n"); - $oP->add("

Next: Database Instance Selection

\n"); + $oP->add("

Next: Database instance Selection

\n"); $oP->add("\n"); $oP->add("\n"); $oP->add("\n"); @@ -713,7 +713,7 @@ function DatabaseServerSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep) function DatabaseInstanceSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep, $oConfig) { $sNextOperation = 'step'.($iCurrentStep+1); - $oP->set_title("Database Instance Selection\n"); + $oP->set_title("Database instance selection\n"); $oP->add("\n"); $oP->add("\n"); AddParamsToForm($oP, $aParamValues, array('db_name', 'db_prefix', 'new_db_name')); @@ -772,7 +772,7 @@ function DatabaseInstanceSelection(SetupWebPage $oP, $aParamValues, $iCurrentSte $aForm[] = array('label' => "Add a prefix to all the tables: "); $oP->form($aForm); - $oP->add("

Next: iTop Modules Selection

\n"); + $oP->add("

Next: iTop modules selection

\n"); $oP->add("
\n"); $oP->add("\n"); $oP->add("\n"); @@ -803,7 +803,7 @@ function ModulesSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep, $oConf $oP->add("\n"); AddParamsToForm($oP, $aParamValues, array('module')); $sRedStar = '*'; - $oP->set_title("Selection of the iTop Modules\n"); + $oP->set_title("iTop modules selection"); $oP->add("

Customize your iTop installation to fit your needs

\n"); $aAvailableModules = GetAvailableModules($oP); @@ -828,7 +828,7 @@ function ModulesSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep, $oConf $sModuleHelp = $aModule['doc.more_information']; $sClass = ($aModule['mandatory']) ? 'class="read-only"' : ''; $sChecked = ($aModule['mandatory'] || in_array($sModuleId, $aSelectedModules) ) ? 'checked' : ''; - $sMoreInfo = (!empty($aModule['doc.more_information'])) ? "more info": ''; + $sMoreInfo = (!empty($aModule['doc.more_information'])) ? "more info": ''; if ($aModule['category'] == 'authentication') { // For now authentication modules are always on and hidden @@ -849,7 +849,7 @@ function ModulesSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep, $oConf } $oP->add(""); $oP->add("\n"); - $oP->add("

Next: Administrator Account Creation

\n"); + $oP->add("

Next: Administrator account creation

\n"); $oP->add("
\n"); $oP->add("\n"); $oP->add("\n"); @@ -868,7 +868,7 @@ function ModulesSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep, $oConf function AdminAccountDefinition(SetupWebPage $oP, $aParamValues, $iCurrentStep, Config $oConfig) { $sNextOperation = 'step'.($iCurrentStep+1); - $oP->set_title("Configuration of the admin account"); + $oP->set_title("Administrator account creation"); $oP->add("

Creation of the database structure

"); $oP->add("\n"); $oP->add("\n"); @@ -910,7 +910,7 @@ function AdminAccountDefinition(SetupWebPage $oP, $aParamValues, $iCurrentStep, $aForm[] = array('label' => "Retype password$sRedStar:", 'input' => ""); $oP->form($aForm); $oP->add("\n"); - $oP->add("

Next: Administrator Account Creation

\n"); + $oP->add("

Next: Application initialization

\n"); $oP->add("
\n"); $oP->add("\n"); $oP->add("\n"); @@ -934,7 +934,7 @@ function SampleDataSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep, Con { $sNextOperation = 'step'.($iCurrentStep+1); - $oP->set_title("Application Initialization"); + $oP->set_title("Application initialization"); $sAdminUser = $aParamValues['auth_user']; $sAdminPwd = $aParamValues['auth_pwd']; $sLanguage = $aParamValues['language']; @@ -952,7 +952,7 @@ function SampleDataSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep, Con $oP->p("\n"); $oP->p("\n"); $oP->p("\n"); - $oP->add("

Next: Application Initialization

\n"); + $oP->add("

Next: Setup complete

\n"); $oP->add("
\n"); $oP->add("\n"); $oP->add("\n"); @@ -1007,7 +1007,7 @@ function SetupFinished(SetupWebPage $oP, $aParamValues, $iCurrentStep, Config $o // try to make the final config file read-only @chmod(FINAL_CONFIG_FILE, 0440); // Read-only for owner and group, nothing for others - $oP->set_title("Configuration completed"); + $oP->set_title("Setup complete"); $oP->add("\n"); // Check if there are some manual steps required: @@ -1037,12 +1037,12 @@ function SetupFinished(SetupWebPage $oP, $aParamValues, $iCurrentStep, Config $o // Form goes here.. No back button since the job is done ! $oP->add("

Let us know what you think about iTop

"); $oP->add('
'); + $oP->add(''); $oP->add('
'); - $oP->add(''); $oP->add("Combodo built iTop because Combodo believes that modern ITIL tools should be at the center of any IT department."); $oP->p("Combodo invested a lot of time and effort in iTop, but you can help us improve it even further by providing your feedbacks

"); $oP->p("Register online to get informed about all iTop related events (new versions, webinars, etc...)"); - $oP->p("Check out the support options available for iTop."); + $oP->p("Check out the support options available for iTop."); $oP->add('
'); $oP->add("

\n"); $oP->add("
\n");