From 7afd691603a9c7574766569cf7aeedb161be3e3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Schneider?= Date: Thu, 10 May 2012 08:59:57 +0200 Subject: [PATCH] Working on web admin --- .../0.2.0/Frameworks/Baikal/Framework.php | 2 +- .../Baikal/Model/Config/Standard.php | 7 +-- .../Controller/Install/Initialize.php | 2 +- .../0.2.0/Frameworks/Flake/Controller/Cli.php | 48 +++++++-------- .../Frameworks/Flake/Controller/HtmlBlock.php | 48 +++++++-------- .../Flake/Controller/HtmlBlockTemplated.php | 48 +++++++-------- .../Frameworks/Flake/Controller/Page.php | 48 +++++++-------- .../0.2.0/Frameworks/Flake/Core/Auth.php | 48 +++++++-------- .../Frameworks/Flake/Core/ClassLoader.php | 48 +++++++-------- .../Frameworks/Flake/Core/Collection.php | 48 +++++++-------- .../Frameworks/Flake/Core/CollectionTyped.php | 48 +++++++-------- .../Frameworks/Flake/Core/Controller.php | 48 +++++++-------- .../0.2.0/Frameworks/Flake/Core/Database.php | 48 +++++++-------- .../Frameworks/Flake/Core/Database/Sqlite.php | 48 +++++++-------- .../Flake/Core/DocumentedException.php | 48 +++++++-------- .../0.2.0/Frameworks/Flake/Core/FLObject.php | 48 +++++++-------- .../0.2.0/Frameworks/Flake/Core/Framework.php | 48 +++++++-------- .../0.2.0/Frameworks/Flake/Core/Model.php | 48 +++++++-------- .../0.2.0/Frameworks/Flake/Core/Model/Db.php | 48 +++++++-------- .../Frameworks/Flake/Core/Model/NoDb.php | 48 +++++++-------- .../Flake/Core/Render/Container.php | 48 +++++++-------- .../Frameworks/Flake/Core/Render/Zone.php | 48 +++++++-------- .../0.2.0/Frameworks/Flake/Core/Requester.php | 48 +++++++-------- .../Frameworks/Flake/Core/Requester/Sql.php | 48 +++++++-------- .../0.2.0/Frameworks/Flake/Core/Template.php | 48 +++++++-------- .../0.2.0/Frameworks/Flake/Core/View.php | 48 +++++++-------- .../0.2.0/Frameworks/Flake/Framework.php | 55 +++++++++-------- .../Frameworks/Flake/Util/Frameworks.php | 48 +++++++-------- .../0.2.0/Frameworks/Flake/Util/Router.php | 48 +++++++-------- .../Flake/Util/Router/QuestionMarkRewrite.php | 48 +++++++-------- .../0.2.0/Frameworks/Flake/Util/Tools.php | 48 +++++++-------- .../0.2.0/Frameworks/Flake/config.php | 58 ++++++++++-------- Specific/db/baikal.sqlite | Bin 14336 -> 0 bytes 33 files changed, 713 insertions(+), 707 deletions(-) delete mode 100755 Specific/db/baikal.sqlite diff --git a/CoreVersions/0.2.0/Frameworks/Baikal/Framework.php b/CoreVersions/0.2.0/Frameworks/Baikal/Framework.php index c4a5fad..6944987 100755 --- a/CoreVersions/0.2.0/Frameworks/Baikal/Framework.php +++ b/CoreVersions/0.2.0/Frameworks/Baikal/Framework.php @@ -59,7 +59,7 @@ class Framework extends \Flake\Core\Framework { } else { require_once(PROJECT_PATH_SPECIFIC . "config.php"); require_once(PROJECT_PATH_SPECIFIC . "config.system.php"); - date_default_timezone_set(BAIKAL_TIMEZONE); + date_default_timezone_set(PROJECT_TIMEZONE); # Check that Baïkal is already configured if(!defined("BAIKAL_CONFIGURED_VERSION")) { diff --git a/CoreVersions/0.2.0/Frameworks/Baikal/Model/Config/Standard.php b/CoreVersions/0.2.0/Frameworks/Baikal/Model/Config/Standard.php index d9165ab..77209d1 100755 --- a/CoreVersions/0.2.0/Frameworks/Baikal/Model/Config/Standard.php +++ b/CoreVersions/0.2.0/Frameworks/Baikal/Model/Config/Standard.php @@ -29,7 +29,7 @@ namespace Baikal\Model\Config; class Standard extends \Baikal\Model\Config { protected $aConstants = array( - "BAIKAL_TIMEZONE" => array( + "PROJECT_TIMEZONE" => array( "type" => "string", ), "BAIKAL_ADMIN_ENABLED" => array( @@ -50,10 +50,9 @@ class Standard extends \Baikal\Model\Config { ); protected $aData = array( - "BAIKAL_TIMEZONE" => "", + "PROJECT_TIMEZONE" => "", "BAIKAL_CARD_ENABLED" => "", "BAIKAL_CAL_ENABLED" => "", - "BAIKAL_TIMEZONE" => "", "BAIKAL_CARD_ENABLED" => "", "BAIKAL_CAL_ENABLED" => "", "BAIKAL_ADMIN_ENABLED" => "", @@ -65,7 +64,7 @@ class Standard extends \Baikal\Model\Config { $oMorpho = new \Formal\Form\Morphology(); $oMorpho->add(new \Formal\Element\Listbox(array( - "prop" => "BAIKAL_TIMEZONE", + "prop" => "PROJECT_TIMEZONE", "label" => "Time zone", "validation" => "required", "options" => \Baikal\Core\Tools::timezones(), diff --git a/CoreVersions/0.2.0/Frameworks/BaikalAdmin/Controller/Install/Initialize.php b/CoreVersions/0.2.0/Frameworks/BaikalAdmin/Controller/Install/Initialize.php index 3131b4e..bd74cff 100755 --- a/CoreVersions/0.2.0/Frameworks/BaikalAdmin/Controller/Install/Initialize.php +++ b/CoreVersions/0.2.0/Frameworks/BaikalAdmin/Controller/Install/Initialize.php @@ -131,7 +131,7 @@ PHP; # # Timezone of your users, if unsure, check http://en.wikipedia.org/wiki/List_of_tz_database_time_zones -define("BAIKAL_TIMEZONE", "Europe/Paris"); +define("PROJECT_TIMEZONE", "Europe/Paris"); # CardDAV ON/OFF switch; default TRUE define("BAIKAL_CARD_ENABLED", TRUE); diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Controller/Cli.php b/CoreVersions/0.2.0/Frameworks/Flake/Controller/Cli.php index 0a6f919..d967c8e 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Controller/Cli.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Controller/Cli.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Controller; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Controller/HtmlBlock.php b/CoreVersions/0.2.0/Frameworks/Flake/Controller/HtmlBlock.php index 033c218..7b15b50 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Controller/HtmlBlock.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Controller/HtmlBlock.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Controller; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Controller/HtmlBlockTemplated.php b/CoreVersions/0.2.0/Frameworks/Flake/Controller/HtmlBlockTemplated.php index 2e42496..d3eac0f 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Controller/HtmlBlockTemplated.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Controller/HtmlBlockTemplated.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Controller; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Controller/Page.php b/CoreVersions/0.2.0/Frameworks/Flake/Controller/Page.php index 190269f..3ccbddf 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Controller/Page.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Controller/Page.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Controller; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Auth.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Auth.php index 0550236..8381cd2 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Auth.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Auth.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/ClassLoader.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/ClassLoader.php index 55a5b30..a2a1105 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/ClassLoader.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/ClassLoader.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Collection.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Collection.php index 08818a9..0ce987c 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Collection.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Collection.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/CollectionTyped.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/CollectionTyped.php index 40cf4e4..b8c49a2 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/CollectionTyped.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/CollectionTyped.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Controller.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Controller.php index fa09b6a..fd368e8 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Controller.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Controller.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Database.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Database.php index c1ba62d..2df57a1 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Database.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Database.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Database/Sqlite.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Database/Sqlite.php index 4e2782b..1a1b9a6 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Database/Sqlite.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Database/Sqlite.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core\Database; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/DocumentedException.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/DocumentedException.php index ff86525..3c0c0a4 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/DocumentedException.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/DocumentedException.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/FLObject.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/FLObject.php index ada0512..9889686 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/FLObject.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/FLObject.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Framework.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Framework.php index c14b0af..bbec8c2 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Framework.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Framework.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Model.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Model.php index 36b3dc6..ccfd9f1 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Model.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Model.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Model/Db.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Model/Db.php index f76d92e..6695302 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Model/Db.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Model/Db.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core\Model; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Model/NoDb.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Model/NoDb.php index 72b9827..924a982 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Model/NoDb.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Model/NoDb.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core\Model; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Render/Container.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Render/Container.php index 17fd08c..a6547c4 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Render/Container.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Render/Container.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core\Render; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Render/Zone.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Render/Zone.php index 0a2d2c2..a50a70e 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Render/Zone.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Render/Zone.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core\Render; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Requester.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Requester.php index 7cdeb5c..aafb512 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Requester.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Requester.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Requester/Sql.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Requester/Sql.php index e332547..a29260f 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Requester/Sql.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Requester/Sql.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core\Requester; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/Template.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/Template.php index ba571df..28e2baf 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/Template.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/Template.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Core/View.php b/CoreVersions/0.2.0/Frameworks/Flake/Core/View.php index 8f71a28..fbe4a01 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Core/View.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Core/View.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Core; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Framework.php b/CoreVersions/0.2.0/Frameworks/Flake/Framework.php index 87a2d34..0a75bb6 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Framework.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Framework.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake; require_once(PROJECT_PATH_ROOT . "Core/Frameworks/Flake/Core/Framework.php"); # Manual require as Classloader not included yet @@ -73,6 +73,9 @@ class Framework extends \Flake\Core\Framework { if(version_compare(PHP_VERSION, '5.3.0', '<')) { die('Flake Fatal Error: Flake requires PHP 5.3.0+ to run properly. Your version is: ' . PHP_VERSION . '.'); } + + # Define safehash salt + define("PROJECT_SAFEHASH_SALT", "strong-secret-salt"); # Define absolute server path to Flake Framework define("FLAKE_PATH_ROOT", PROJECT_PATH_ROOT . "Core/Frameworks/Flake/"); # ./ @@ -106,9 +109,7 @@ class Framework extends \Flake\Core\Framework { define("PROJECT_PATH_WWWROOT", PROJECT_PATH_CORE . "WWWRoot/"); # Define path to Baïkal SQLite file - define("PROJECT_SQLITE_FILE", PROJECT_PATH_SPECIFIC . "db/baikal.sqlite"); - - define("PROJECT_SAFEHASH_SALT", "une-clef-super-secrete"); + define("PROJECT_SQLITE_FILE", PROJECT_PATH_SPECIFIC . "db/db.sqlite"); require_once(PROJECT_PATH_CORE . "Distrib.php"); diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Util/Frameworks.php b/CoreVersions/0.2.0/Frameworks/Flake/Util/Frameworks.php index 73c8b9e..4b18adc 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Util/Frameworks.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Util/Frameworks.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Util; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Util/Router.php b/CoreVersions/0.2.0/Frameworks/Flake/Util/Router.php index 9a71951..57c005c 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Util/Router.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Util/Router.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Util; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Util/Router/QuestionMarkRewrite.php b/CoreVersions/0.2.0/Frameworks/Flake/Util/Router/QuestionMarkRewrite.php index 38abfd4..6b19438 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Util/Router/QuestionMarkRewrite.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Util/Router/QuestionMarkRewrite.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Util\Router; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/Util/Tools.php b/CoreVersions/0.2.0/Frameworks/Flake/Util/Tools.php index 0620df4..ee7c940 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/Util/Tools.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/Util/Tools.php @@ -1,28 +1,28 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# namespace Flake\Util; diff --git a/CoreVersions/0.2.0/Frameworks/Flake/config.php b/CoreVersions/0.2.0/Frameworks/Flake/config.php index 67ab3ca..7f7300c 100755 --- a/CoreVersions/0.2.0/Frameworks/Flake/config.php +++ b/CoreVersions/0.2.0/Frameworks/Flake/config.php @@ -1,33 +1,39 @@ -* All rights reserved -* -* http://baikal.codr.fr -* -* This script is part of the Baïkal Server project. The Baïkal -* Server project 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 2 of the License, or (at your option) any later version. -* -* The GNU General Public License can be found at -* http://www.gnu.org/copyleft/gpl.html. -* -* This script 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. -* -* This copyright notice MUST APPEAR in all copies of the script! -***************************************************************/ +################################################################# +# Copyright notice +# +# (c) 2012 Jérôme Schneider +# All rights reserved +# +# http://flake.codr.fr +# +# This script is part of the Flake project. The Flake +# project 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 2 of the License, or (at your option) any later version. +# +# The GNU General Public License can be found at +# http://www.gnu.org/copyleft/gpl.html. +# +# This script 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. +# +# This copyright notice MUST APPEAR in all copies of the script! +################################################################# define("FLAKE_LOCALE", "fr_FR.UTF-8"); -if(defined("BAIKAL_TIMEZONE")) { - define("FLAKE_TIMEZONE", BAIKAL_TIMEZONE); +if(defined("PROJECT_LOCALE")) { + define("FLAKE_LOCALE", PROJECT_LOCALE); +} else { + define("FLAKE_LOCALE", "fr_FR.UTF-8"); +} + +if(defined("PROJECT_TIMEZONE")) { + define("FLAKE_TIMEZONE", PROJECT_TIMEZONE); } else { define("FLAKE_TIMEZONE", "Europe/Paris"); } \ No newline at end of file diff --git a/Specific/db/baikal.sqlite b/Specific/db/baikal.sqlite deleted file mode 100755 index db968cac30072d76bac2868986668c6910123112..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14336 zcmeHN-EZ606(>d6ikK<`wg!TcZDEiZjc3#5he(O?jD?mc*NrVXl5ETYGJ_(oT-K7P zk@VUW7z%q02JA1`V_t@}>%;c2w>}mA8@8gadFsQ4VNV;dmmOY`66M&nQ6y-ykdVlG zFYi6~{C@YGb3dfk{SC`QOxJe$y2pq_njlHyF2fK+?so)1T!U|PeFqX`lsT1-6~~hx zgMIq_DZeuHU;o9G;1RErq!R`b2EG{vGU*(2Or`!sP=BVj;E`Mj1OML)Jft$jl5}H_ z96Hv(u!efiU3v#Ob{|zyS3m4|jB1(=a$RQCwhzpp?5tP*oXNa(^09OBmp)=l#CXW{ zsGp}Y1S{P@xtRDNG9CLY5f@3{@*6Te#0+i6JKR6iEw@f)huWJ^WPnwX#|ID7)T*|&UN7%d)MhnD?`X}|dZS(z7r7k0)ofJPt7Ud+ zNgWPhP}c{>BBW#1#>k8O(vnus(a>bsb8O39US7`8wR#z67%@jTwVkrS@dC?9ELUs` zLK!}i@E}KTgYZI0Mm#4YmNPmXw!jNAtB4%WN>Z0A$h_1w3?)Zv^=hQyWg0C0(&#om zy7!YK1jbDs+s_eY-R>{@W;lWgX$A_$fzn_71LJCPHD7^@)+%@Eqpm3}ybVasMEJgK0mW2{M8IZh)7l z&9M&)=lif#(R+-v$VJ{;Q8!xf)yiv4ZLQH&V~G&QxYRk0^?682+( z6H1|VD>Y44C8fa11-ZZ$WUj)h+N#WQVnHitRY_7gHAh$5pyBe4y0NXTR6$xOjOTN7 zyQ$V&Tjk)PHgT7&?afWKxm)g?JUMydw{Er7X8Vlx5UTLY&8NQ9p#l zD{_5!JN+85RJlR2xtqVq&c;@2!D4U&F^1kl1JkjP!whwYF;6~*^`Xby3Ri7cq9s>Q zPj_yYNv{tN#b_3)?g&;1BH3-;%VB?2VSQDMn2)8(2Bc3}) zB}L{rq1ficQ!1U-2qX5R(^vx>tHvyz3SB!mqAl#S8`Z{7sjCEg^Co#am&?t>Yy_|9 zgVlLsfN+kr2Z*d9*Kn+%XW4^5Od|yXSl`NWxww(xCZ`Q3G%S!3Y(yf%ifdFSuM+cT z2#oImqIQ>&=g&_$Q06k)K*H~b1g;C%? zbSyaKdCv>WP0Jnj^hX07&VORXqguGJIi3=NN_5un^!=zydhX~)sZ2hfCy(F2Fbv%> zU3{Y^6vsu(9frJu+72O^SqfwEDxXMmoK;`mxRlZOfY*9Q|QM*6!` zXKL=ga8sEuipajsFrA2J#{_c?&2|ABTEv85_uya>+asOztUh`lRwhy2u=_*E4m=l^ z&~v{3XNWHe;!E=PsdCDuen9O|e|?Ffz$H~ZDo+Jo*1`kdvyB56-=-%992Z?|pjrFf z0q`F>J!aX4twA&%;G~9wbZ_iGFrrz{K0t#}8`pqUd%T5-hThxpg2*kw_r5!w$=|v~ z9@$v=Q9N?Tsq6%daXA>SA28PIZEa0!GF#1c{}6z=r|mLotKzHWchlB>)?T2qsIObS zC=-uv;rs3SI_&=MK#MtgPRvZ_*KU!7H89b8?k{@qGx8qnk8GUZ8*8w~kJI$g{FNYP z&tN3`j(s@nqkacDZajT;0!{qQ1$gM}sI$E>Y=9PYGFcYFiMLo_Mil{KF*}{VH+vq$ zxLSLBJonnKXl!gpyBOu63-ItQH-QTmg@DeVfwF!zJjaBiU|RcdN~-hGKt-bxRs+4~ zu1@Dy^5^M|yWQjQNDzd>hI4Jcp@udAYtHzGjN?+diJjj)aw)*FU8>^^*w4nUg*0& znVkQ<@DWNnNErCmGT_hu$@%}cc6buS5(Zu<1Hu0P1A_V+^$GRC3+*Zqo-mLwFv-A= zsWdUO85{%XQdf`*T|?kY$lyy{Ni4{wBp8N(bj9H1xm23SZ{nrAEQwvz70p7oB$%dH z=yp3DnJX1bJda997w(X0;`*k)!0!}9iSHP?QIb1yhvyVUhQ9@Llun5=4MQph`~Rl| o^_2Pt_3ugLl3c<-!obVU08P!1L4cvMRGtiu0