aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimo Tijhof <krinklemail@gmail.com>2019-07-08 22:31:25 +0100
committerKrinkle <krinklemail@gmail.com>2019-07-08 21:56:24 +0000
commit6f3029a62306b7de291a18c415bd56520c925ea7 (patch)
tree92a3308935c8d874c35565d394ef2099567a3b70
parent35a327526d8d0175fe5bb7c2b882423647b12bbe (diff)
downloadmediawikicore-6f3029a62306b7de291a18c415bd56520c925ea7.tar.gz
mediawikicore-6f3029a62306b7de291a18c415bd56520c925ea7.zip
Remove `@author Timo Tijhof` from various file headers
Also remove a few redundant file-level descriptions in favour of their class entity describing the same already. Change-Id: I1a43fc402b5bd106931062a399952ba1e48beb48
-rw-r--r--includes/actions/DeleteAction.php5
-rw-r--r--includes/actions/EditAction.php7
-rw-r--r--includes/actions/ProtectAction.php7
-rw-r--r--includes/actions/RenderAction.php5
-rw-r--r--includes/actions/UnprotectAction.php7
-rw-r--r--includes/actions/ViewAction.php5
-rw-r--r--includes/libs/objectcache/IExpiringStore.php1
-rw-r--r--includes/resourceloader/MessageBlobStore.php3
-rw-r--r--includes/resourceloader/ResourceLoaderLanguageDataModule.php3
-rw-r--r--includes/resourceloader/ResourceLoaderSkinModule.php6
-rw-r--r--maintenance/benchmarks/benchmarkCSSMin.php1
-rw-r--r--maintenance/benchmarks/benchmarkJSMinPlus.php1
-rw-r--r--maintenance/benchmarks/benchmarkJavaScriptMinifier.php1
-rw-r--r--maintenance/mwdoc-filter.php1
-rw-r--r--maintenance/purgeModuleDeps.php5
-rw-r--r--resources/src/startup/profiler.js1
16 files changed, 7 insertions, 52 deletions
diff --git a/includes/actions/DeleteAction.php b/includes/actions/DeleteAction.php
index 6bed59a2f313..6fcb1c863cb4 100644
--- a/includes/actions/DeleteAction.php
+++ b/includes/actions/DeleteAction.php
@@ -1,9 +1,5 @@
<?php
/**
- * Handle page deletion
- *
- * Copyright © 2012 Timo Tijhof
- *
* 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
* the Free Software Foundation; either version 2 of the License, or
@@ -20,7 +16,6 @@
*
* @file
* @ingroup Actions
- * @author Timo Tijhof
*/
/**
diff --git a/includes/actions/EditAction.php b/includes/actions/EditAction.php
index f0bc8bff9145..df48f8864935 100644
--- a/includes/actions/EditAction.php
+++ b/includes/actions/EditAction.php
@@ -1,9 +1,5 @@
<?php
/**
- * action=edit handler
- *
- * Copyright © 2012 Timo Tijhof
- *
* 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
* the Free Software Foundation; either version 2 of the License, or
@@ -20,11 +16,10 @@
*
* @file
* @ingroup Actions
- * @author Timo Tijhof
*/
/**
- * Page edition handler
+ * Page edition handler (action=edit)
*
* This is a wrapper that will call the EditPage class or a custom editor from an extension.
*
diff --git a/includes/actions/ProtectAction.php b/includes/actions/ProtectAction.php
index 2e9e09340512..5c0e2b09c02d 100644
--- a/includes/actions/ProtectAction.php
+++ b/includes/actions/ProtectAction.php
@@ -1,9 +1,5 @@
<?php
/**
- * action=protect handler
- *
- * Copyright © 2012 Timo Tijhof
- *
* 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
* the Free Software Foundation; either version 2 of the License, or
@@ -20,11 +16,10 @@
*
* @file
* @ingroup Actions
- * @author Timo Tijhof
*/
/**
- * Handle page protection
+ * Handle page protection (action=protect)
*
* This is a wrapper that will call Article::protect().
*
diff --git a/includes/actions/RenderAction.php b/includes/actions/RenderAction.php
index 16e407f46f51..0dfbedacfcda 100644
--- a/includes/actions/RenderAction.php
+++ b/includes/actions/RenderAction.php
@@ -1,9 +1,5 @@
<?php
/**
- * Handle action=render
- *
- * Copyright © 2012 Timo Tijhof
- *
* 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
* the Free Software Foundation; either version 2 of the License, or
@@ -20,7 +16,6 @@
*
* @file
* @ingroup Actions
- * @author Timo Tijhof
*/
/**
diff --git a/includes/actions/UnprotectAction.php b/includes/actions/UnprotectAction.php
index 0757e88ceee9..4b8e6fccd7a2 100644
--- a/includes/actions/UnprotectAction.php
+++ b/includes/actions/UnprotectAction.php
@@ -1,9 +1,5 @@
<?php
/**
- * action=unprotect handler
- *
- * Copyright © 2012 Timo Tijhof
- *
* 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
* the Free Software Foundation; either version 2 of the License, or
@@ -20,11 +16,10 @@
*
* @file
* @ingroup Actions
- * @author Timo Tijhof
*/
/**
- * Handle page unprotection
+ * Handle page unprotection (action=unprotect)
*
* This is a wrapper that will call Article::unprotect().
*
diff --git a/includes/actions/ViewAction.php b/includes/actions/ViewAction.php
index 134b8a45b11a..72d92c31edb4 100644
--- a/includes/actions/ViewAction.php
+++ b/includes/actions/ViewAction.php
@@ -1,9 +1,5 @@
<?php
/**
- * An action that views article content
- *
- * Copyright © 2012 Timo Tijhof
- *
* 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
* the Free Software Foundation; either version 2 of the License, or
@@ -20,7 +16,6 @@
*
* @file
* @ingroup Actions
- * @author Timo Tijhof
*/
/**
diff --git a/includes/libs/objectcache/IExpiringStore.php b/includes/libs/objectcache/IExpiringStore.php
index 61a4c618cf3a..1566c07925e2 100644
--- a/includes/libs/objectcache/IExpiringStore.php
+++ b/includes/libs/objectcache/IExpiringStore.php
@@ -17,7 +17,6 @@
*
* @file
* @ingroup Cache
- * @author 2015 Timo Tijhof
*/
/**
diff --git a/includes/resourceloader/MessageBlobStore.php b/includes/resourceloader/MessageBlobStore.php
index 74d0616d1d0f..457648a0d6e8 100644
--- a/includes/resourceloader/MessageBlobStore.php
+++ b/includes/resourceloader/MessageBlobStore.php
@@ -1,7 +1,5 @@
<?php
/**
- * Message blobs storage used by ResourceLoader.
- *
* 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
* the Free Software Foundation; either version 2 of the License, or
@@ -20,7 +18,6 @@
* @file
* @author Roan Kattouw
* @author Trevor Parscal
- * @author Timo Tijhof
*/
use MediaWiki\MediaWikiServices;
diff --git a/includes/resourceloader/ResourceLoaderLanguageDataModule.php b/includes/resourceloader/ResourceLoaderLanguageDataModule.php
index f718e5feb3fc..7a7ab892ce4d 100644
--- a/includes/resourceloader/ResourceLoaderLanguageDataModule.php
+++ b/includes/resourceloader/ResourceLoaderLanguageDataModule.php
@@ -1,7 +1,5 @@
<?php
/**
- * ResourceLoader module for populating language specific data.
- *
* 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
* the Free Software Foundation; either version 2 of the License, or
@@ -19,7 +17,6 @@
*
* @file
* @author Santhosh Thottingal
- * @author Timo Tijhof
*/
/**
diff --git a/includes/resourceloader/ResourceLoaderSkinModule.php b/includes/resourceloader/ResourceLoaderSkinModule.php
index 2dd6c17dddae..0f3366621604 100644
--- a/includes/resourceloader/ResourceLoaderSkinModule.php
+++ b/includes/resourceloader/ResourceLoaderSkinModule.php
@@ -1,7 +1,5 @@
<?php
/**
- * ResourceLoader module for skin stylesheets.
- *
* 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
* the Free Software Foundation; either version 2 of the License, or
@@ -18,9 +16,11 @@
* http://www.gnu.org/copyleft/gpl.html
*
* @file
- * @author Timo Tijhof
*/
+/**
+ * ResourceLoader module for skin stylesheets.
+ */
class ResourceLoaderSkinModule extends ResourceLoaderFileModule {
/**
* All skins are assumed to be compatible with mobile
diff --git a/maintenance/benchmarks/benchmarkCSSMin.php b/maintenance/benchmarks/benchmarkCSSMin.php
index 8e2acb2987d1..30982e07dda5 100644
--- a/maintenance/benchmarks/benchmarkCSSMin.php
+++ b/maintenance/benchmarks/benchmarkCSSMin.php
@@ -17,7 +17,6 @@
*
* @file
* @ingroup Benchmark
- * @author Timo Tijhof
*/
require_once __DIR__ . '/Benchmarker.php';
diff --git a/maintenance/benchmarks/benchmarkJSMinPlus.php b/maintenance/benchmarks/benchmarkJSMinPlus.php
index 3aa7af71909a..189da0849ce6 100644
--- a/maintenance/benchmarks/benchmarkJSMinPlus.php
+++ b/maintenance/benchmarks/benchmarkJSMinPlus.php
@@ -17,7 +17,6 @@
*
* @file
* @ingroup Benchmark
- * @author Timo Tijhof
*/
require_once __DIR__ . '/Benchmarker.php';
diff --git a/maintenance/benchmarks/benchmarkJavaScriptMinifier.php b/maintenance/benchmarks/benchmarkJavaScriptMinifier.php
index bb75660522ec..d042fb75ffa6 100644
--- a/maintenance/benchmarks/benchmarkJavaScriptMinifier.php
+++ b/maintenance/benchmarks/benchmarkJavaScriptMinifier.php
@@ -17,7 +17,6 @@
*
* @file
* @ingroup Benchmark
- * @author Timo Tijhof
*/
require_once __DIR__ . '/Benchmarker.php';
diff --git a/maintenance/mwdoc-filter.php b/maintenance/mwdoc-filter.php
index 89fc44bd6ec0..1da805e927c9 100644
--- a/maintenance/mwdoc-filter.php
+++ b/maintenance/mwdoc-filter.php
@@ -17,7 +17,6 @@
* symbols being documented but not declared or defined.
*
* Copyright (C) 2012 Tamas Imrei <tamas.imrei@gmail.com> https://virtualtee.blogspot.com/
- * Copyright (C) 2015 Timo Tijhof
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the "Software"),
diff --git a/maintenance/purgeModuleDeps.php b/maintenance/purgeModuleDeps.php
index 3b25629318ed..683c319049f2 100644
--- a/maintenance/purgeModuleDeps.php
+++ b/maintenance/purgeModuleDeps.php
@@ -1,7 +1,5 @@
<?php
/**
- * Remove all cache entries for ResourceLoader modules from the database.
- *
* 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
* the Free Software Foundation; either version 2 of the License, or
@@ -19,7 +17,6 @@
*
* @file
* @ingroup Maintenance
- * @author Timo Tijhof
*/
use Wikimedia\Rdbms\IDatabase;
@@ -27,7 +24,7 @@ use Wikimedia\Rdbms\IDatabase;
require_once __DIR__ . '/Maintenance.php';
/**
- * Maintenance script to purge the module_deps database cache table.
+ * Maintenance script to purge the module_deps database cache table for ResourceLoader.
*
* @ingroup Maintenance
*/
diff --git a/resources/src/startup/profiler.js b/resources/src/startup/profiler.js
index 5e9b6ab2a635..0f044f8834d9 100644
--- a/resources/src/startup/profiler.js
+++ b/resources/src/startup/profiler.js
@@ -1,7 +1,6 @@
/*!
* Augment mw.loader to facilitate module-level profiling.
*
- * @author Timo Tijhof
* @since 1.32
*/
/* global mw */