From 64ccbdc9f7c3bc48dc3a0dbcb35b173d179d6fc8 Mon Sep 17 00:00:00 2001 From: "Jon \"The Nice Guy\" Spriggs" Date: Sat, 25 Aug 2012 08:55:00 +0100 Subject: [PATCH] Closes issue #122: "Search & Replace http://github.com/JonTheNiceGuy/cfm2 to http://CampFireManager/cfm2" --- SETUP/initialize.php | 2 +- SETUP/initialize_with_demo_data.php | 2 +- Tests/classes/Container/ConfigTest.php | 2 +- Tests/missing_function_finder.php | 2 +- classes/Abstract/GenericCollection.php | 4 ++-- classes/Abstract/GenericObject.php | 4 ++-- classes/Base/Cache.php | 4 ++-- classes/Base/Database.php | 4 ++-- classes/Base/ExternalLibraryLoader.php | 4 ++-- classes/Base/GeneralFunctions.php | 4 ++-- classes/Base/Hook.php | 4 ++-- classes/Base/OpenID.php | 4 ++-- classes/Base/Request.php | 4 ++-- classes/Base/Response.php | 4 ++-- classes/Collection/DirectionScreen.php | 4 ++-- classes/Collection/MainScreen.php | 4 ++-- classes/Collection/NowAndNext.php | 4 ++-- classes/Collection/Timetable.php | 4 ++-- classes/Collection/TimetablePortrait.php | 4 ++-- classes/Container/Config.php | 6 +++--- classes/Container/Database.php | 4 ++-- classes/Container/Hook.php | 4 ++-- classes/Container/Request.php | 4 ++-- classes/Exception/AuthenticationFailed.php | 4 ++-- classes/Glue/Broker.php | 4 ++-- classes/Glue/Gammu.php | 4 ++-- classes/Glue/TwitterAPI.php | 6 +++--- classes/Interface/Glue.php | 4 ++-- classes/Interface/Object.php | 4 ++-- classes/Object/Attendee.php | 6 +++--- classes/Object/Config.php | 6 +++--- classes/Object/Daemon.php | 6 +++--- classes/Object/DefaultSlotType.php | 6 +++--- classes/Object/Input.php | 6 +++--- classes/Object/Output.php | 6 +++--- classes/Object/Resource.php | 6 +++--- classes/Object/Room.php | 6 +++--- classes/Object/Screen.php | 6 +++--- classes/Object/ScreenDirection.php | 6 +++--- classes/Object/SecureConfig.php | 6 +++--- classes/Object/Slot.php | 6 +++--- classes/Object/Talk.php | 6 +++--- classes/Object/User.php | 6 +++--- classes/Object/UserPresenter.php | 4 ++-- classes/Object/UserProposer.php | 4 ++-- classes/Object/Userauth.php | 6 +++--- classes/Plugin/GlueBroadcaster/hook_loader.php | 4 ++-- classes/Plugin/InputParser/hook_loader.php | 4 ++-- classes/Plugin/JoindIn/hook_loader.php | 4 ++-- classes/Plugin/LimboTalks/hook_loader.php | 4 ++-- classes/Plugin/ResetCleartexts/hook_loader.php | 4 ++-- classes/Plugin/TalkFixer/hook_loader.php | 4 ++-- classes/Plugin/Verbose/hook_loader.php | 4 ++-- classes/autoloader.php | 2 +- config/default.php | 2 +- config/local.dist.php | 2 +- config/plugin.php | 2 +- config/unittest.php | 2 +- cron.php | 2 +- index.php | 2 +- 60 files changed, 126 insertions(+), 126 deletions(-) diff --git a/SETUP/initialize.php b/SETUP/initialize.php index 8722dc2..06399a6 100644 --- a/SETUP/initialize.php +++ b/SETUP/initialize.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** diff --git a/SETUP/initialize_with_demo_data.php b/SETUP/initialize_with_demo_data.php index f630bb2..5da4506 100644 --- a/SETUP/initialize_with_demo_data.php +++ b/SETUP/initialize_with_demo_data.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** diff --git a/Tests/classes/Container/ConfigTest.php b/Tests/classes/Container/ConfigTest.php index 33d7cbc..e6bd933 100644 --- a/Tests/classes/Container/ConfigTest.php +++ b/Tests/classes/Container/ConfigTest.php @@ -90,7 +90,7 @@ public function testGetUnconfiguredValue() * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Container_Config_Testable extends Container_Config { diff --git a/Tests/missing_function_finder.php b/Tests/missing_function_finder.php index 7226905..661933e 100644 --- a/Tests/missing_function_finder.php +++ b/Tests/missing_function_finder.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ if ( ! isset($argv[1]) or $argv[1] == '') { showHelp("No directory specified."); diff --git a/classes/Abstract/GenericCollection.php b/classes/Abstract/GenericCollection.php index 985671f..15c4f26 100644 --- a/classes/Abstract/GenericCollection.php +++ b/classes/Abstract/GenericCollection.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class provides all the collection specific functions used throughout the @@ -20,7 +20,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ abstract class Abstract_GenericCollection implements Interface_Object diff --git a/classes/Abstract/GenericObject.php b/classes/Abstract/GenericObject.php index a37096a..149f49b 100644 --- a/classes/Abstract/GenericObject.php +++ b/classes/Abstract/GenericObject.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class provides all the object specific functions used throughout the site. @@ -20,7 +20,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ abstract class Abstract_GenericObject implements Interface_Object diff --git a/classes/Base/Cache.php b/classes/Base/Cache.php index 2a82832..c1b2bc6 100644 --- a/classes/Base/Cache.php +++ b/classes/Base/Cache.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class caches all the responses from the database searches. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Base_Cache diff --git a/classes/Base/Database.php b/classes/Base/Database.php index 7837e1d..26b7633 100644 --- a/classes/Base/Database.php +++ b/classes/Base/Database.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class does all the basic database stuff - connecting to the database, @@ -21,7 +21,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Base_Database diff --git a/classes/Base/ExternalLibraryLoader.php b/classes/Base/ExternalLibraryLoader.php index 4fc72b1..02b8f47 100644 --- a/classes/Base/ExternalLibraryLoader.php +++ b/classes/Base/ExternalLibraryLoader.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This singleton class handles all the loading of external libraries. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Base_ExternalLibraryLoader diff --git a/classes/Base/GeneralFunctions.php b/classes/Base/GeneralFunctions.php index 8ad7cb6..4eee43c 100644 --- a/classes/Base/GeneralFunctions.php +++ b/classes/Base/GeneralFunctions.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class provides all the functions which are needed by code in the site @@ -20,7 +20,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Base_GeneralFunctions diff --git a/classes/Base/Hook.php b/classes/Base/Hook.php index c7a0984..359a1c2 100644 --- a/classes/Base/Hook.php +++ b/classes/Base/Hook.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class handles all hooks and triggers for the site, including loading @@ -20,7 +20,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Base_Hook diff --git a/classes/Base/OpenID.php b/classes/Base/OpenID.php index b6b7c06..01e1063 100644 --- a/classes/Base/OpenID.php +++ b/classes/Base/OpenID.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This helper library enables OpenID authentication, by chaining together the @@ -20,7 +20,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ diff --git a/classes/Base/Request.php b/classes/Base/Request.php index e81a7cc..ce1cc98 100644 --- a/classes/Base/Request.php +++ b/classes/Base/Request.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class reads everything related to the request that might be useful to the @@ -20,7 +20,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Base_Request diff --git a/classes/Base/Response.php b/classes/Base/Response.php index 0625652..952f116 100644 --- a/classes/Base/Response.php +++ b/classes/Base/Response.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class provides all the functions which are needed by code in the site @@ -20,7 +20,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Base_Response diff --git a/classes/Collection/DirectionScreen.php b/classes/Collection/DirectionScreen.php index 6aa9759..3945f13 100644 --- a/classes/Collection/DirectionScreen.php +++ b/classes/Collection/DirectionScreen.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class collates all the objects needed to render a DirectionScreen Page @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Collection_DirectionScreen extends Abstract_GenericCollection diff --git a/classes/Collection/MainScreen.php b/classes/Collection/MainScreen.php index da3f303..4c27fae 100644 --- a/classes/Collection/MainScreen.php +++ b/classes/Collection/MainScreen.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class collates all the objects needed to render a full timetable @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Collection_MainScreen extends Collection_Timetable diff --git a/classes/Collection/NowAndNext.php b/classes/Collection/NowAndNext.php index c2f11b9..1d2f89b 100644 --- a/classes/Collection/NowAndNext.php +++ b/classes/Collection/NowAndNext.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class collates all the objects needed to render a NowAndNext Page @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Collection_NowAndNext extends Collection_Timetable diff --git a/classes/Collection/Timetable.php b/classes/Collection/Timetable.php index 911724d..c83f9c0 100644 --- a/classes/Collection/Timetable.php +++ b/classes/Collection/Timetable.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class returns all the timetable data, sorted as talks by slot then room @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Collection_Timetable extends Abstract_GenericCollection diff --git a/classes/Collection/TimetablePortrait.php b/classes/Collection/TimetablePortrait.php index 8c68d63..9063fe9 100644 --- a/classes/Collection/TimetablePortrait.php +++ b/classes/Collection/TimetablePortrait.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class collates all the objects needed to render a full timetable @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Collection_TimetablePortrait extends Collection_Timetable diff --git a/classes/Container/Config.php b/classes/Container/Config.php index 31365c4..327757e 100644 --- a/classes/Container/Config.php +++ b/classes/Container/Config.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class obtains manipulates all the configuration data for the service. It @@ -21,7 +21,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Container_Config implements Interface_Object @@ -519,7 +519,7 @@ public function getSelf() * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Container_Config_Demo extends Container_Config diff --git a/classes/Container/Database.php b/classes/Container/Database.php index b7612ae..202da0f 100644 --- a/classes/Container/Database.php +++ b/classes/Container/Database.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class initiates all the connections to the database server. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Container_Database diff --git a/classes/Container/Hook.php b/classes/Container/Hook.php index df50028..6646e29 100644 --- a/classes/Container/Hook.php +++ b/classes/Container/Hook.php @@ -11,7 +11,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class obtains manipulates all the configuration data for the service. It @@ -22,7 +22,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Container_Hook diff --git a/classes/Container/Request.php b/classes/Container/Request.php index 836424b..cd99f0b 100644 --- a/classes/Container/Request.php +++ b/classes/Container/Request.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class handles all request calls. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Container_Request diff --git a/classes/Exception/AuthenticationFailed.php b/classes/Exception/AuthenticationFailed.php index 414b3a8..2e35f23 100644 --- a/classes/Exception/AuthenticationFailed.php +++ b/classes/Exception/AuthenticationFailed.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class is used when trying to login and a failure occurs. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Exception_AuthenticationFailed extends Exception diff --git a/classes/Glue/Broker.php b/classes/Glue/Broker.php index 395c117..151e100 100644 --- a/classes/Glue/Broker.php +++ b/classes/Glue/Broker.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class returns an array of Glues. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Glue_Broker diff --git a/classes/Glue/Gammu.php b/classes/Glue/Gammu.php index d0f4900..8a22fe6 100644 --- a/classes/Glue/Gammu.php +++ b/classes/Glue/Gammu.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This glue is used to broker all inter-Gammu conversations. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Glue_Gammu implements Interface_Glue diff --git a/classes/Glue/TwitterAPI.php b/classes/Glue/TwitterAPI.php index 3856f3c..96c22c4 100644 --- a/classes/Glue/TwitterAPI.php +++ b/classes/Glue/TwitterAPI.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This glue is used to broker all inter-Twitter conversations. It is mostly @@ -22,7 +22,7 @@ * you want to see what Jack wrote. There's nothing wrong with it, it just * doesn't match how I need things to fit together. * - * https://github.com/JonTheNiceGuy/cfm2/blob/3c7710ba8a7913cd8d4754ceedabfc41bca51365/classes/Plugin/Twitter/ExternalLibraries/TwitterManager.php + * https://github.com/CampFireManager/cfm2/blob/3c7710ba8a7913cd8d4754ceedabfc41bca51365/classes/Plugin/Twitter/ExternalLibraries/TwitterManager.php * * @category Glue_Twitter * @package CampFireManager2 @@ -30,7 +30,7 @@ * @author Jack Wearden * @author themattharris * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Glue_TwitterAPI implements Interface_Glue diff --git a/classes/Interface/Glue.php b/classes/Interface/Glue.php index ba7eca4..9c4fb95 100644 --- a/classes/Interface/Glue.php +++ b/classes/Interface/Glue.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This Interface defines the required functions in Glue based class. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ interface Interface_Glue diff --git a/classes/Interface/Object.php b/classes/Interface/Object.php index cba7c75..07a94fb 100644 --- a/classes/Interface/Object.php +++ b/classes/Interface/Object.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This Interface defines the required functions in any PDO object based class. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ interface Interface_Object diff --git a/classes/Object/Attendee.php b/classes/Object/Attendee.php index 8ef2233..5d4a284 100644 --- a/classes/Object/Attendee.php +++ b/classes/Object/Attendee.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the object for PDO to use when retrives data about a Attendee. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Attendee extends Abstract_GenericObject @@ -126,7 +126,7 @@ public function getSelf($getUser = false, $getTalk = false) * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Attendee_Demo extends Object_Attendee { diff --git a/classes/Object/Config.php b/classes/Object/Config.php index 4ad8e33..bcbf753 100644 --- a/classes/Object/Config.php +++ b/classes/Object/Config.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class obtains manipulates all the configuration data for the service. It @@ -21,7 +21,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Config extends Abstract_GenericObject @@ -102,7 +102,7 @@ public function __construct($values = null, $lastChange = null) * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Config_Demo extends Object_Config { diff --git a/classes/Object/Daemon.php b/classes/Object/Daemon.php index 29f14ab..da66626 100644 --- a/classes/Object/Daemon.php +++ b/classes/Object/Daemon.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class retrieves data about the daemons. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Daemon extends Abstract_GenericObject @@ -71,7 +71,7 @@ public function __construct() * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Daemon_Demo extends Object_Daemon { diff --git a/classes/Object/DefaultSlotType.php b/classes/Object/DefaultSlotType.php index b84b5f1..7d55be2 100644 --- a/classes/Object/DefaultSlotType.php +++ b/classes/Object/DefaultSlotType.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the default value for a slot, and whether this value would @@ -22,7 +22,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_DefaultSlotType extends Abstract_GenericObject @@ -70,7 +70,7 @@ protected function getCurrent($return) * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_DefaultSlotType_Demo extends Object_DefaultSlotType { diff --git a/classes/Object/Input.php b/classes/Object/Input.php index 0bf52db..799a7bb 100644 --- a/classes/Object/Input.php +++ b/classes/Object/Input.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the object for PDO to retrieve Text only Input data. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Input extends Abstract_GenericObject @@ -150,7 +150,7 @@ public static function import($strSender, $strInterface, $textMessage, $intNativ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Input_Demo extends Object_Input { diff --git a/classes/Object/Output.php b/classes/Object/Output.php index 2df9993..c938429 100644 --- a/classes/Object/Output.php +++ b/classes/Object/Output.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the object for PDO to retrieve Text only Input data. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Output extends Abstract_GenericObject @@ -142,7 +142,7 @@ public static function replyToInput($objInput, $strMessage) * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Output_Demo extends Object_Output { diff --git a/classes/Object/Resource.php b/classes/Object/Resource.php index c870e63..3c01fea 100644 --- a/classes/Object/Resource.php +++ b/classes/Object/Resource.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the facilities available in a room, which may be requested @@ -20,7 +20,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Resource extends Abstract_GenericObject @@ -49,7 +49,7 @@ class Object_Resource extends Abstract_GenericObject * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Resource_Demo extends Object_Resource { diff --git a/classes/Object/Room.php b/classes/Object/Room.php index de5e10f..03323b9 100644 --- a/classes/Object/Room.php +++ b/classes/Object/Room.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the object for PDO to use when retrives data about a room. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Room extends Abstract_GenericObject @@ -114,7 +114,7 @@ public static function brokerAllByRoomSize() * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Room_Demo extends Object_Room { diff --git a/classes/Object/Screen.php b/classes/Object/Screen.php index d58cafa..a8159c0 100644 --- a/classes/Object/Screen.php +++ b/classes/Object/Screen.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the default value for a slot, and whether this value would @@ -22,7 +22,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Screen extends Abstract_GenericObject @@ -101,7 +101,7 @@ public function getData() * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Screen_Demo extends Object_Screen { diff --git a/classes/Object/ScreenDirection.php b/classes/Object/ScreenDirection.php index 5357d5a..194ec11 100644 --- a/classes/Object/ScreenDirection.php +++ b/classes/Object/ScreenDirection.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the default value for a slot, and whether this value would @@ -22,7 +22,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_ScreenDirection extends Abstract_GenericObject @@ -98,7 +98,7 @@ function getData() * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_ScreenDirection_Demo extends Object_ScreenDirection { diff --git a/classes/Object/SecureConfig.php b/classes/Object/SecureConfig.php index 734c7fd..53864e0 100644 --- a/classes/Object/SecureConfig.php +++ b/classes/Object/SecureConfig.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class obtains manipulates all the configuration data for the service. It @@ -21,7 +21,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_SecureConfig extends Abstract_GenericObject @@ -109,7 +109,7 @@ public function getSelf() * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_SecureConfig_Demo extends Object_SecureConfig { diff --git a/classes/Object/Slot.php b/classes/Object/Slot.php index 1a328e5..9b42d93 100644 --- a/classes/Object/Slot.php +++ b/classes/Object/Slot.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the object for PDO to use when retrives data about a slot. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Slot extends Abstract_GenericObject @@ -208,7 +208,7 @@ public function getKey($key = null) * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Slot_Demo extends Object_Slot diff --git a/classes/Object/Talk.php b/classes/Object/Talk.php index 67501e2..0549b54 100644 --- a/classes/Object/Talk.php +++ b/classes/Object/Talk.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the object for PDO to use when retrives data about a talk. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Talk extends Abstract_GenericObject @@ -535,7 +535,7 @@ public static function unscheduleBasedOnAttendees($talks, $intMinAttendees = 0) * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Talk_Demo extends Object_Talk diff --git a/classes/Object/User.php b/classes/Object/User.php index 1635372..a023d4c 100644 --- a/classes/Object/User.php +++ b/classes/Object/User.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the object for PDO to use when retrives data about a talk. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_User extends Abstract_GenericObject @@ -435,7 +435,7 @@ public function merge($objUser) * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_User_Demo extends Object_User { diff --git a/classes/Object/UserPresenter.php b/classes/Object/UserPresenter.php index f2472c8..caf6104 100644 --- a/classes/Object/UserPresenter.php +++ b/classes/Object/UserPresenter.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the object for PDO to use when retrives data about a talk. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_UserPresenter extends Object_User diff --git a/classes/Object/UserProposer.php b/classes/Object/UserProposer.php index 25375ce..b1cdecd 100644 --- a/classes/Object/UserProposer.php +++ b/classes/Object/UserProposer.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the object for PDO to use when retrives data about a talk. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_UserProposer extends Object_User diff --git a/classes/Object/Userauth.php b/classes/Object/Userauth.php index 0e614a4..8551b7f 100644 --- a/classes/Object/Userauth.php +++ b/classes/Object/Userauth.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This class defines the object for PDO to use when retrives data about a talk. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Userauth extends Abstract_GenericObject @@ -378,7 +378,7 @@ function getCleartext() * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Object_Userauth_Demo extends Object_Userauth diff --git a/classes/Plugin/GlueBroadcaster/hook_loader.php b/classes/Plugin/GlueBroadcaster/hook_loader.php index c57ff21..99b06c5 100644 --- a/classes/Plugin/GlueBroadcaster/hook_loader.php +++ b/classes/Plugin/GlueBroadcaster/hook_loader.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This plugin is used to broadcast to twitter when talks are about to start. @@ -19,7 +19,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Plugin_GlueBroadcaster diff --git a/classes/Plugin/InputParser/hook_loader.php b/classes/Plugin/InputParser/hook_loader.php index aec9035..196bbc8 100644 --- a/classes/Plugin/InputParser/hook_loader.php +++ b/classes/Plugin/InputParser/hook_loader.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This plugin is used to interact with the text-only interfaces. To have a @@ -22,7 +22,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Plugin_InputParser diff --git a/classes/Plugin/JoindIn/hook_loader.php b/classes/Plugin/JoindIn/hook_loader.php index bb45c80..9782a21 100644 --- a/classes/Plugin/JoindIn/hook_loader.php +++ b/classes/Plugin/JoindIn/hook_loader.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This plugin is used to publish the talks to Joind.in on fixing @@ -20,7 +20,7 @@ * @author Jon Spriggs * @author Lorna Mitchell * @license about:blank?tbc tbc - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Plugin_JoindIn diff --git a/classes/Plugin/LimboTalks/hook_loader.php b/classes/Plugin/LimboTalks/hook_loader.php index c52dee4..ccdf460 100644 --- a/classes/Plugin/LimboTalks/hook_loader.php +++ b/classes/Plugin/LimboTalks/hook_loader.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This plugin is used to de-allocate rooms and slots when a talk falls under a @@ -20,7 +20,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Plugin_LimboTalks diff --git a/classes/Plugin/ResetCleartexts/hook_loader.php b/classes/Plugin/ResetCleartexts/hook_loader.php index 734eeb4..58d9fe3 100644 --- a/classes/Plugin/ResetCleartexts/hook_loader.php +++ b/classes/Plugin/ResetCleartexts/hook_loader.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This plugin is used clear down any cleartext passwords, two minutes after @@ -20,7 +20,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Plugin_ResetCleartexts diff --git a/classes/Plugin/TalkFixer/hook_loader.php b/classes/Plugin/TalkFixer/hook_loader.php index fedddf7..5195016 100644 --- a/classes/Plugin/TalkFixer/hook_loader.php +++ b/classes/Plugin/TalkFixer/hook_loader.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This plugin is used to de-allocate rooms and slots when a talk falls under a @@ -20,7 +20,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Plugin_TalkFixer diff --git a/classes/Plugin/Verbose/hook_loader.php b/classes/Plugin/Verbose/hook_loader.php index 3caf2bd..40035f2 100644 --- a/classes/Plugin/Verbose/hook_loader.php +++ b/classes/Plugin/Verbose/hook_loader.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * This plugin is used to verbosely log all the database queries which result @@ -20,7 +20,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ class Plugin_Verbose diff --git a/classes/autoloader.php b/classes/autoloader.php index cd2ec7d..c6343a2 100644 --- a/classes/autoloader.php +++ b/classes/autoloader.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** * A basic autoloader diff --git a/config/default.php b/config/default.php index fbf79e1..200e26c 100644 --- a/config/default.php +++ b/config/default.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** diff --git a/config/local.dist.php b/config/local.dist.php index 9efd521..e9bf446 100644 --- a/config/local.dist.php +++ b/config/local.dist.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ // Uncomment only the values you want to modify diff --git a/config/plugin.php b/config/plugin.php index 8c8986e..47bf076 100644 --- a/config/plugin.php +++ b/config/plugin.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ // This is vital - it clears the cleartext passwords stored for display purposes diff --git a/config/unittest.php b/config/unittest.php index 2731f7b..ad943b4 100644 --- a/config/unittest.php +++ b/config/unittest.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ $this->set('demo', 1); diff --git a/cron.php b/cron.php index f3fe6db..0688cae 100644 --- a/cron.php +++ b/cron.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /** diff --git a/index.php b/index.php index 28bce8f..c346cbb 100644 --- a/index.php +++ b/index.php @@ -10,7 +10,7 @@ * @package CampFireManager2 * @author Jon Spriggs * @license http://www.gnu.org/licenses/agpl.html AGPLv3 - * @link https://github.com/JonTheNiceGuy/cfm2 Version Control Service + * @link https://github.com/CampFireManager/cfm2 Version Control Service */ /**