From 1082c71e9b63d2963139e91bf4de66afca7c1167 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Mon, 21 May 2012 21:56:04 +0200 Subject: [PATCH] Added missing GPLv2 headers in some places. Also made file/class documentation more consistent. Change-Id: Ibe7815124d6915792dcbb150d01df21d9b22b0b0 --- includes/CacheHelper.php | 32 +++++++++++++++++++++++--------- includes/Category.php | 25 ++++++++++++++++++++++--- includes/CategoryPage.php | 17 ++++++++++++++++- includes/CategoryViewer.php | 20 ++++++++++++++++++++ includes/Categoryfinder.php | 21 +++++++++++++++++++++ includes/Cdb.php | 17 ++++++++++++++++- includes/Cdb_PHP.php | 15 +++++++++++++++ includes/ChangeTags.php | 18 +++++++++++++++++- includes/ChangesFeed.php | 20 ++++++++++++++++++++ includes/ChangesList.php | 19 ++++++++++++++++++- includes/Collation.php | 20 ++++++++++++++++++++ includes/ConfEditor.php | 20 ++++++++++++++++++++ includes/Cookie.php | 20 +++++++++++++++++++- includes/CryptRand.php | 15 +++++++++++++++ 14 files changed, 262 insertions(+), 17 deletions(-) diff --git a/includes/CacheHelper.php b/includes/CacheHelper.php index 6b6a5940ff..5209857e4b 100644 --- a/includes/CacheHelper.php +++ b/includes/CacheHelper.php @@ -1,13 +1,32 @@ */ + +/** + * Interface for all classes implementing CacheHelper functionality. + * + * @since 1.20 + */ interface ICacheHelper { /** @@ -81,11 +100,6 @@ interface ICacheHelper { * After adding the last HTML that should be cached, call $this->saveCache(); * * @since 1.20 - * - * @file CacheHelper.php - * - * @licence GNU GPL v2 or later - * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ class CacheHelper implements ICacheHelper { @@ -360,4 +374,4 @@ class CacheHelper implements ICacheHelper { $this->onInitHandler = $handlerFunction; } -} \ No newline at end of file +} diff --git a/includes/Category.php b/includes/Category.php index 4f1e423e7f..79870692df 100644 --- a/includes/Category.php +++ b/includes/Category.php @@ -1,14 +1,33 @@