From fb36e6ac3e1adf1b1c47aa380217d50d4048baa4 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sun, 8 Aug 2010 11:55:47 +0000 Subject: [PATCH] * standardised file headers * added a basic description * added @file --- includes/db/LBFactory.php | 2 ++ includes/db/LBFactory_Multi.php | 2 ++ includes/db/LoadBalancer.php | 2 ++ includes/db/LoadMonitor.php | 12 +++++++-- includes/diff/Diff.php | 8 +++++- includes/diff/DifferenceEngine.php | 13 ++++----- includes/diff/DifferenceInterface.php | 5 +++- includes/extauth/Hardcoded.php | 39 +++++++++++++++------------ includes/extauth/MediaWiki.php | 39 +++++++++++++++------------ includes/extauth/vB.php | 39 +++++++++++++++------------ 10 files changed, 100 insertions(+), 61 deletions(-) diff --git a/includes/db/LBFactory.php b/includes/db/LBFactory.php index d6295452a0..8f28a2a181 100644 --- a/includes/db/LBFactory.php +++ b/includes/db/LBFactory.php @@ -1,5 +1,7 @@ +/** + * New version of the difference engine + * + * Copyright © 2008 Guy Van den Broeck * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -15,6 +18,9 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html + * + * @file + * @ingroup DifferenceEngine */ /** diff --git a/includes/diff/DifferenceEngine.php b/includes/diff/DifferenceEngine.php index 3364531243..1c9c2c9a2c 100644 --- a/includes/diff/DifferenceEngine.php +++ b/includes/diff/DifferenceEngine.php @@ -1,14 +1,15 @@ + * You may copy this code freely under the conditions of the GPL. + * + * @file + * @ingroup DifferenceEngine * @defgroup DifferenceEngine DifferenceEngine */ -// A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3) -// -// Copyright (C) 2000, 2001 Geoffrey T. Dairiki -// You may copy this code freely under the conditions of the GPL. -// - /** * @todo document * @private diff --git a/includes/diff/DifferenceInterface.php b/includes/diff/DifferenceInterface.php index bb210eca89..ba2a6da740 100644 --- a/includes/diff/DifferenceInterface.php +++ b/includes/diff/DifferenceInterface.php @@ -1,6 +1,9 @@