Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit a96afa7

Browse files
author
Jamie Snape
committed
Correct spelling, grammar, and formatting on first installation page
1 parent 607179e commit a96afa7

File tree

1 file changed

+17
-21
lines changed

1 file changed

+17
-21
lines changed

core/views/install/index.phtml

Lines changed: 17 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,19 @@ PURPOSE. See the above copyright notices for more information.
1313
<link href="<?php echo $this->coreWebroot?>/public/css/install/install.css" rel="stylesheet" type="text/css" />
1414

1515
<div class="viewMain">
16-
17-
<h2>Welcome to MIDAS!</h2>
18-
<p>MIDAS is a collection of server, client, and stand-alone tools for data archiving, analysis, and access.</p>
16+
<h2>Welcome to Midas Platform!</h2>
17+
<p>Midas Platform is a collection of server, client, and standalone tools for data archiving, analysis, and access.</p>
1918
<ul>
20-
<li>Hosts public and private collections of data</li>
21-
<li>Handles massive collections and images</li>
22-
<li>Manages image and non-image files and meta-data</li>
23-
<li>Integrates BatchMake technology for server-side and stand-alone batch processing</li>
24-
<li>Builds upon open source code and open standards</li>
19+
<li>Hosts public and private collections of data;</li>
20+
<li>Handles massive collections and images;</li>
21+
<li>Manages images, files, and metadata;</li>
22+
<li>Integrates BatchMake technology for server-side and standalone batch processing;</li>
23+
<li>Builds upon open source code and open standards.</li>
2524
</ul>
2625
<div class="separator"></div>
2726
<h3>Installation</h3>
28-
This script will guide you during the installation of MIDAS.
29-
MIDAS will store the datasets and related information in these directories.
30-
Make sure they are fitting your installation or modify your config.php file.
31-
<br/><br/>For more information go to: <a href="http://www.kitware.com/midaswiki/index.php/MIDAS3-Installation">http://www.kitware.com/midaswiki/index.php/MIDAS3-Installation</a>
27+
This script will guide you during the installation of Midas Platform.<br/><br/>
28+
For more information go to: <a href="http://www.kitware.com/midaswiki/index.php/MIDAS3-Installation">http://www.kitware.com/midaswiki/index.php/MIDAS3-Installation</a>
3229

3330
<h3>System check</h3>
3431
<?php
@@ -37,32 +34,31 @@ PURPOSE. See the above copyright notices for more information.
3734
{
3835
foreach($this->phpextension_missing as $missing)
3936
{
40-
echo "<li><span style=\"color:#d48304\"> $missing </span> </li>";
37+
echo "<li><span style=\"color:#d48304\">$missing</span></li>";
4138
}
4239
}
4340

44-
if($this->writable==false)
41+
if($this->writable === false)
4542
{
46-
echo "<li><span style=\"color:red\"> Unable to right in the application folder: {$this->basePath}. Please check you apache server permissions</span> </li>";
43+
echo "<li><span style=\"color:red\"> Unable to write to the application folder: {$this->basePath}. Please check your web server permissions.</span></li>";
4744
}
4845

49-
if($this->writable&&empty($this->phpextension_missing))
46+
if($this->writable && empty($this->phpextension_missing))
5047
{
51-
echo "<li><span style=\"color:green\"> Your system is OK</span> </li>";
48+
echo "<li><span style=\"color:green\"> Your system is OK.</span></li>";
5249
}
5350
echo "</ul>";
5451

55-
if($this->writable!=false)
52+
if($this->writable !== false)
5653
{
5754
echo "<form method='post' action=''>";
5855
echo "<input type='submit' name='submit' value='Go to next step'>";
5956
echo "</form>";
6057
}
6158
else
6259
{
63-
echo "<input type='submit' name='submit' value='Go to next step' disabled> <br/>";
64-
echo "Please fix the differents problems to be able to access to the next step.";
60+
echo "<input type='submit' name='submit' value='Go to next step' disabled><br/>";
61+
echo "Please fix the above issues to proceed to the next step.";
6562
}
6663
?>
67-
6864
</div>

0 commit comments

Comments
 (0)