partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit c94615b083b1ede7496472517f4abb434bbe7e67
parent a7a3aba204005528b354fbfbe8d3be96bee54572
Author: Felicitus <felicitus@felicitus.org>
Date:   Thu,  5 Jan 2012 17:12:39 +0100

Fixed typo (in filenames as well) for Prerequisites

Diffstat:
Mdocumentation/QUICK-INSTALL | 2+-
Rsrc/setup/check-php-prequisites.php -> src/setup/check-php-prerequisites.php | 0
Msrc/setup/index.html | 4++--
Dsrc/setup/js/Cards/PrequisitesTestCard.js | 19-------------------
Asrc/setup/js/Cards/PrerequisitesTestCard.js | 19+++++++++++++++++++
Dsrc/setup/js/SetupTests/PHPPrequisitesTest.js | 10----------
Asrc/setup/js/SetupTests/PHPPrerequisitesTest.js | 10++++++++++
Msrc/setup/js/SetupWizard.js | 2+-
8 files changed, 33 insertions(+), 33 deletions(-)

diff --git a/documentation/QUICK-INSTALL b/documentation/QUICK-INSTALL @@ -11,7 +11,7 @@ and code coverage. -Prequisites: +Prerequisites: ------------ * PHP 5.3 or higher * PDO diff --git a/src/setup/check-php-prequisites.php b/src/setup/check-php-prerequisites.php diff --git a/src/setup/index.html b/src/setup/index.html @@ -31,7 +31,7 @@ <script type="text/javascript" src="js/TestRunner.js"></script> <script type="text/javascript" src="js/Cards/AbstractTestCard.js"></script> - <script type="text/javascript" src="js/Cards/PrequisitesTestCard.js"></script> + <script type="text/javascript" src="js/Cards/PrerequisitesTestCard.js"></script> <script type="text/javascript" src="js/Cards/DatabaseParametersCard.js"></script> <script type="text/javascript" src="js/Cards/DatabaseParametersCard.MySQL.js"></script> <script type="text/javascript" src="js/Cards/DatabaseParametersCard.PostgreSQL.js"></script> @@ -40,7 +40,7 @@ <script type="text/javascript" src="js/SetupTests/AbstractTest.js"></script> <script type="text/javascript" src="js/SetupTests/PHPTest.js"></script> - <script type="text/javascript" src="js/SetupTests/PHPPrequisitesTest.js"></script> + <script type="text/javascript" src="js/SetupTests/PHPPrerequisitesTest.js"></script> <script type="text/javascript" src="js/SetupTests/DoctrineTest.js"></script> <script type="text/javascript" src="js/SetupTests/DatabaseConnectivityTest.js"></script> <script type="text/javascript" src="js/SetupTests/PHPSettingsTest.js"></script> diff --git a/src/setup/js/Cards/PrequisitesTestCard.js b/src/setup/js/Cards/PrequisitesTestCard.js @@ -1,19 +0,0 @@ -/** - * This card runs the prequisites test to make sure basic things like PHP and Doctrine are installed and configured. - */ -Ext.define('PartKeeprSetup.PrequisitesTestCard', { - extend: 'PartKeeprSetup.AbstractTestCard', - - cardMessage: "Setup now checks if your server is capable of running PartKeepr.", - title: 'Checking prequisites', - /** - * Sets up all tests - */ - setupTests: function () { - this.tests.push(new PartKeeprSetup.PHPTest()); - this.tests.push(new PartKeeprSetup.PHPPrequisitesTest()); - this.tests.push(new PartKeeprSetup.PHPSettingsTest()); - this.tests.push(new PartKeeprSetup.DoctrineTest()); - this.tests.push(new PartKeeprSetup.FilesystemPermissionTest()); - } -}); diff --git a/src/setup/js/Cards/PrerequisitesTestCard.js b/src/setup/js/Cards/PrerequisitesTestCard.js @@ -0,0 +1,19 @@ +/** + * This card runs the prequisites test to make sure basic things like PHP and Doctrine are installed and configured. + */ +Ext.define('PartKeeprSetup.PrerequisitesTestCard', { + extend: 'PartKeeprSetup.AbstractTestCard', + + cardMessage: "Setup now checks if your server is capable of running PartKeepr.", + title: 'Checking prerequisites', + /** + * Sets up all tests + */ + setupTests: function () { + this.tests.push(new PartKeeprSetup.PHPTest()); + this.tests.push(new PartKeeprSetup.PHPPrerequisitesTest()); + this.tests.push(new PartKeeprSetup.PHPSettingsTest()); + this.tests.push(new PartKeeprSetup.DoctrineTest()); + this.tests.push(new PartKeeprSetup.FilesystemPermissionTest()); + } +}); diff --git a/src/setup/js/SetupTests/PHPPrequisitesTest.js b/src/setup/js/SetupTests/PHPPrequisitesTest.js @@ -1,9 +0,0 @@ -/** - * Tests if the most important PHP prequisites are met (e.g. json_encode). - */ -Ext.define('PartKeeprSetup.PHPPrequisitesTest', { - extend: 'PartKeeprSetup.AbstractTest', - url: 'check-php-prequisites.php', - name: "PHP", - message: "Testing for PHP prequisites" -});- \ No newline at end of file diff --git a/src/setup/js/SetupTests/PHPPrerequisitesTest.js b/src/setup/js/SetupTests/PHPPrerequisitesTest.js @@ -0,0 +1,9 @@ +/** + * Tests if the most important PHP prerequisites are met (e.g. json_encode). + */ +Ext.define('PartKeeprSetup.PHPPrerequisitesTest', { + extend: 'PartKeeprSetup.AbstractTest', + url: 'check-php-prerequisites.php', + name: "PHP", + message: "Testing for PHP prerequisites" +});+ \ No newline at end of file diff --git a/src/setup/js/SetupWizard.js b/src/setup/js/SetupWizard.js @@ -71,7 +71,7 @@ Ext.define('PartKeeprSetup.SetupWizard', { }] })); - cards.push(Ext.create("PartKeeprSetup.PrequisitesTestCard")); + cards.push(Ext.create("PartKeeprSetup.PrerequisitesTestCard")); cards.push(Ext.create("PartKeeprSetup.DatabaseParametersCard")); cards.push(Ext.create("PartKeeprSetup.DatabaseConnectivityTestCard")); cards.push(Ext.create("PartKeeprSetup.DatabaseSetupCard"));