diff --git a/core/trunk/install/ajax.php b/core/trunk/install/ajax.php index 4fdb78405ae9519087fada4fbe6abd56bbd1493e..c82526911b305cc1245c79a64abd2dbadadb314a 100644 --- a/core/trunk/install/ajax.php +++ b/core/trunk/install/ajax.php @@ -1,4 +1,32 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ include_once '../core/init.php'; diff --git a/core/trunk/install/class/Class_Install.php b/core/trunk/install/class/Class_Install.php index 0e5fa5e0c9beded5b56ac0251d1eb75ceb644474..fa55042c47035085a2c5c6ea076195460a0e71be 100755 --- a/core/trunk/install/class/Class_Install.php +++ b/core/trunk/install/class/Class_Install.php @@ -1,4 +1,34 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Laurent Giovannoni +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + //Loads the required class try { require_once 'core/class/class_functions.php'; diff --git a/core/trunk/install/class/Class_Merge.php b/core/trunk/install/class/Class_Merge.php index 3fe00c28544acb2fb3980437aec97b87771bc220..315bf61b9f12c6309c1279d0c07d91aad408b37e 100755 --- a/core/trunk/install/class/Class_Merge.php +++ b/core/trunk/install/class/Class_Merge.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + class Merge { function __construct() diff --git a/core/trunk/install/controller/database_controller.php b/core/trunk/install/controller/database_controller.php index c3210fdd077f96453e21f389814f59ed024e8ec7..20b9d72d26d3cb31b746b4b05d08e2fbe618e490 100755 --- a/core/trunk/install/controller/database_controller.php +++ b/core/trunk/install/controller/database_controller.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + //CONTROLLER //TITLE diff --git a/core/trunk/install/controller/docservers_controller.php b/core/trunk/install/controller/docservers_controller.php index cfb714bae8d8dca3110a75de5e8861c3723d51cf..457a02fdb438c04a29ab1a390725717e614234f4 100755 --- a/core/trunk/install/controller/docservers_controller.php +++ b/core/trunk/install/controller/docservers_controller.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + //CONTROLLER //TITLE diff --git a/core/trunk/install/controller/error_controller.php b/core/trunk/install/controller/error_controller.php index 3200a0f7800447b44c33d0517fca6e9dfe8cb183..ca1101f879574513701567cf0d11819387a5d3a1 100755 --- a/core/trunk/install/controller/error_controller.php +++ b/core/trunk/install/controller/error_controller.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + //CONTROLLER $error = $_REQUEST['error']; switch ($error) { diff --git a/core/trunk/install/controller/language_controller.php b/core/trunk/install/controller/language_controller.php index 71fce4acbae8ccd3ecc078c29781356b7d43b638..fdcdf11763ca557b22c75cc8d57830e0b45a417e 100755 --- a/core/trunk/install/controller/language_controller.php +++ b/core/trunk/install/controller/language_controller.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + //CONTROLLER //TITLES $shortTitle = _LANGUAGE; diff --git a/core/trunk/install/controller/licence_controller.php b/core/trunk/install/controller/licence_controller.php index 61b9331ce5ae258e59707db79d601cd566b320ea..03e0939d8d38423f6fbf27163ce54750cbe6d714 100755 --- a/core/trunk/install/controller/licence_controller.php +++ b/core/trunk/install/controller/licence_controller.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + //CONTROLLER //TITLE diff --git a/core/trunk/install/controller/password_controller.php b/core/trunk/install/controller/password_controller.php index 12fc7941d50e14f9db3d3dc3f66b561804b982d3..f6651b68a3573b53813e95a6d16f9e8a60177e62 100755 --- a/core/trunk/install/controller/password_controller.php +++ b/core/trunk/install/controller/password_controller.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + //CONTROLLER //TITLE diff --git a/core/trunk/install/controller/prerequisites_controller.php b/core/trunk/install/controller/prerequisites_controller.php index 85e70ab4e9939556b2dd4dc3953e97770e995104..07af90ffb1de29d029bd4e9c93055210f3116369 100755 --- a/core/trunk/install/controller/prerequisites_controller.php +++ b/core/trunk/install/controller/prerequisites_controller.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + //CONTROLLER //TITLE diff --git a/core/trunk/install/controller/resume_controller.php b/core/trunk/install/controller/resume_controller.php index 95f6e64c2faa52a2a078352b87714667c6bc90e2..d8343d245e06f0bef62ce3b969e8dccdf2f25059 100755 --- a/core/trunk/install/controller/resume_controller.php +++ b/core/trunk/install/controller/resume_controller.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + //CONTROLLER //TITLE diff --git a/core/trunk/install/controller/welcome_controller.php b/core/trunk/install/controller/welcome_controller.php index 34cd04f743912d8d7453834134c613f2fe37b04d..cefcdd4b1d3f4c81116924eace39a6e602fa0eba 100755 --- a/core/trunk/install/controller/welcome_controller.php +++ b/core/trunk/install/controller/welcome_controller.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + //CONTROLLER //TITLE diff --git a/core/trunk/install/error.php b/core/trunk/install/error.php index 3b38695a18bae4089696a110255d5ac1a5a9cfea..9972d795800667a3445c4262d8ea4a1c40d9865e 100755 --- a/core/trunk/install/error.php +++ b/core/trunk/install/error.php @@ -1,4 +1,32 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ include_once '../core/init.php'; diff --git a/core/trunk/install/final.php b/core/trunk/install/final.php index 3119c65d8b1e98bbf88b89ebdc93605b7250df3a..011717b53b68edcb93696c6a1db1097548fe2902 100644 --- a/core/trunk/install/final.php +++ b/core/trunk/install/final.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + include_once '../core/init.php'; //write semaphore installed.lck diff --git a/core/trunk/install/index.php b/core/trunk/install/index.php index 3b357be21390b65b0dc7f1521bb80d5d0bffd3ba..7020248f0a0d8b5450d6fc5cbeff27b4e7b30f47 100755 --- a/core/trunk/install/index.php +++ b/core/trunk/install/index.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + //MODEL include_once '../core/init.php'; require_once('install/class/Class_Install.php'); diff --git a/core/trunk/install/scripts/database.php b/core/trunk/install/scripts/database.php index a2baf2c40a758ecc0a4a343785669764af0dec97..ac9103eed63d793ebc30dc123887b2f1dae8b532 100644 --- a/core/trunk/install/scripts/database.php +++ b/core/trunk/install/scripts/database.php @@ -1,4 +1,32 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ if ($_REQUEST['action'] == 'testConnect') { $_SESSION['config']['databaseserver'] = $_REQUEST['databaseserver']; diff --git a/core/trunk/install/scripts/docservers.php b/core/trunk/install/scripts/docservers.php index dde9d0ef06e4c47747fe388e9239a7dbef702e06..64c0b7ffbbaa7aabadfe0654adf9c2cf44d47bd0 100644 --- a/core/trunk/install/scripts/docservers.php +++ b/core/trunk/install/scripts/docservers.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + $_REQUEST['docserverRoot'] = str_replace("/", DIRECTORY_SEPARATOR, $_REQUEST['docserverRoot']); $checkDocserverRoot = $Class_Install->checkDocserverRoot( diff --git a/core/trunk/install/scripts/language.php b/core/trunk/install/scripts/language.php index b0e2a75816c92e16694dcc57809dc8d07f61afda..9e9672705c9310964511c2f4621cba54f68fc688 100755 --- a/core/trunk/install/scripts/language.php +++ b/core/trunk/install/scripts/language.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + //MODEL include_once '../../core/init.php'; diff --git a/core/trunk/install/scripts/password.php b/core/trunk/install/scripts/password.php index 5afecf1659444648971824eb66e224059131c274..8fd6e535c6c37fe39ac8692d020d9d11175269f2 100644 --- a/core/trunk/install/scripts/password.php +++ b/core/trunk/install/scripts/password.php @@ -1,4 +1,33 @@ <?php +/* +* Copyright 2008-2012 Maarch +* +* This file is part of Maarch Framework. +* +* Maarch Framework is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Maarch Framework is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Maarch Framework. If not, see <http://www.gnu.org/licenses/>. +*/ + +/** +* @brief class of install tools +* +* @file +* @author Arnaud Veber +* @date $date$ +* @version $Revision$ +* @ingroup install +*/ + //MODEL include_once '../../core/init.php'; require_once('install/class/Class_Install.php');