jenkins-bot has submitted this change and it was merged. Change subject: Remove '@section LICENSE' ......................................................................
Remove '@section LICENSE' This was used in 2 special classes, the logger classes and spread to a few other random classes. Afaik this has no meaning. Is for something we don't use, and goes against the meaning of '@section' in Doxygen, which we do use. In Doxygen output, all LICENSE references became links to ProfilerXhprof (the one Doxygen encoutered first). Bug: T72328 Change-Id: Icc7c443245c70bc0f549bee7d105eef5691c864d --- M includes/debug/logger/Logger.php M includes/debug/logger/NullSpi.php M includes/debug/logger/Spi.php M includes/debug/logger/legacy/Logger.php M includes/debug/logger/legacy/Spi.php M includes/debug/logger/monolog/Handler.php M includes/debug/logger/monolog/LegacyFormatter.php M includes/debug/logger/monolog/Processor.php M includes/debug/logger/monolog/Spi.php M includes/libs/IPSet.php M includes/libs/ObjectFactory.php M includes/libs/Xhprof.php M includes/profiler/ProfilerXhprof.php M includes/specials/SpecialFilepath.php M includes/specials/SpecialRedirect.php M maintenance/purgeChangedFiles.php M maintenance/purgeChangedPages.php M tests/phpunit/includes/db/DatabaseMysqlBaseTest.php M tests/phpunit/includes/db/LBFactoryTest.php M tests/phpunit/includes/debug/logging/legacy/LoggerTest.php M tests/phpunit/includes/libs/ObjectFactoryTest.php M tests/phpunit/includes/libs/XhprofTest.php 22 files changed, 0 insertions(+), 24 deletions(-) Approvals: Wmat: Looks good to me, but someone else must approve Nikerabbit: Looks good to me, approved jenkins-bot: Verified diff --git a/includes/debug/logger/Logger.php b/includes/debug/logger/Logger.php index f5d2445..7417c6b 100644 --- a/includes/debug/logger/Logger.php +++ b/includes/debug/logger/Logger.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 diff --git a/includes/debug/logger/NullSpi.php b/includes/debug/logger/NullSpi.php index 33304fc..f725b64 100644 --- a/includes/debug/logger/NullSpi.php +++ b/includes/debug/logger/NullSpi.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 diff --git a/includes/debug/logger/Spi.php b/includes/debug/logger/Spi.php index 7139856..cd4af9c 100644 --- a/includes/debug/logger/Spi.php +++ b/includes/debug/logger/Spi.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 diff --git a/includes/debug/logger/legacy/Logger.php b/includes/debug/logger/legacy/Logger.php index c67bd7b..e7c69b8 100644 --- a/includes/debug/logger/legacy/Logger.php +++ b/includes/debug/logger/legacy/Logger.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 diff --git a/includes/debug/logger/legacy/Spi.php b/includes/debug/logger/legacy/Spi.php index a3d34fa..b8813aa 100644 --- a/includes/debug/logger/legacy/Spi.php +++ b/includes/debug/logger/legacy/Spi.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 diff --git a/includes/debug/logger/monolog/Handler.php b/includes/debug/logger/monolog/Handler.php index b2e3012..42ab797 100644 --- a/includes/debug/logger/monolog/Handler.php +++ b/includes/debug/logger/monolog/Handler.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 diff --git a/includes/debug/logger/monolog/LegacyFormatter.php b/includes/debug/logger/monolog/LegacyFormatter.php index 11dbc82..c9545fa 100644 --- a/includes/debug/logger/monolog/LegacyFormatter.php +++ b/includes/debug/logger/monolog/LegacyFormatter.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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,7 +17,6 @@ * * @file */ - /** * Log message formatter that mimics the legacy log message formatting of diff --git a/includes/debug/logger/monolog/Processor.php b/includes/debug/logger/monolog/Processor.php index a9f72c8..4aa07f1 100644 --- a/includes/debug/logger/monolog/Processor.php +++ b/includes/debug/logger/monolog/Processor.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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,7 +17,6 @@ * * @file */ - /** * Injects `wfHostname()` and `wfWikiID()` in all records. diff --git a/includes/debug/logger/monolog/Spi.php b/includes/debug/logger/monolog/Spi.php index e514715..c43e3d6 100644 --- a/includes/debug/logger/monolog/Spi.php +++ b/includes/debug/logger/monolog/Spi.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 diff --git a/includes/libs/IPSet.php b/includes/libs/IPSet.php index ae59378..3b9f1a8 100644 --- a/includes/libs/IPSet.php +++ b/includes/libs/IPSet.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 diff --git a/includes/libs/ObjectFactory.php b/includes/libs/ObjectFactory.php index 73e76f7..96e195c 100644 --- a/includes/libs/ObjectFactory.php +++ b/includes/libs/ObjectFactory.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 diff --git a/includes/libs/Xhprof.php b/includes/libs/Xhprof.php index 1ad01cc..990e2c3 100644 --- a/includes/libs/Xhprof.php +++ b/includes/libs/Xhprof.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 diff --git a/includes/profiler/ProfilerXhprof.php b/includes/profiler/ProfilerXhprof.php index cbd081d..00209e2 100644 --- a/includes/profiler/ProfilerXhprof.php +++ b/includes/profiler/ProfilerXhprof.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 diff --git a/includes/specials/SpecialFilepath.php b/includes/specials/SpecialFilepath.php index 5860f63..9323211 100644 --- a/includes/specials/SpecialFilepath.php +++ b/includes/specials/SpecialFilepath.php @@ -2,7 +2,6 @@ /** * Implements Special:Filepath * - * @section LICENSE * 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 diff --git a/includes/specials/SpecialRedirect.php b/includes/specials/SpecialRedirect.php index 2022d74..cc46987 100644 --- a/includes/specials/SpecialRedirect.php +++ b/includes/specials/SpecialRedirect.php @@ -2,7 +2,6 @@ /** * Implements Special:Redirect * - * @section LICENSE * 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 diff --git a/maintenance/purgeChangedFiles.php b/maintenance/purgeChangedFiles.php index 1e702de..d21a296 100644 --- a/maintenance/purgeChangedFiles.php +++ b/maintenance/purgeChangedFiles.php @@ -2,7 +2,6 @@ /** * Scan the logging table and purge affected files within a timeframe. * - * @section LICENSE * 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 diff --git a/maintenance/purgeChangedPages.php b/maintenance/purgeChangedPages.php index 6702209..56e22c4 100644 --- a/maintenance/purgeChangedPages.php +++ b/maintenance/purgeChangedPages.php @@ -2,7 +2,6 @@ /** * Send purge requests for pages edited in date range to squid/varnish. * - * @section LICENSE * 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 diff --git a/tests/phpunit/includes/db/DatabaseMysqlBaseTest.php b/tests/phpunit/includes/db/DatabaseMysqlBaseTest.php index 55e48d1..b4292a6 100644 --- a/tests/phpunit/includes/db/DatabaseMysqlBaseTest.php +++ b/tests/phpunit/includes/db/DatabaseMysqlBaseTest.php @@ -2,7 +2,6 @@ /** * Holds tests for DatabaseMysqlBase MediaWiki class. * - * @section LICENSE * 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 diff --git a/tests/phpunit/includes/db/LBFactoryTest.php b/tests/phpunit/includes/db/LBFactoryTest.php index 4c59f47..81d6840 100644 --- a/tests/phpunit/includes/db/LBFactoryTest.php +++ b/tests/phpunit/includes/db/LBFactoryTest.php @@ -2,7 +2,6 @@ /** * Holds tests for LBFactory abstract MediaWiki class. * - * @section LICENSE * 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 diff --git a/tests/phpunit/includes/debug/logging/legacy/LoggerTest.php b/tests/phpunit/includes/debug/logging/legacy/LoggerTest.php index bad8d8d..22d3270 100644 --- a/tests/phpunit/includes/debug/logging/legacy/LoggerTest.php +++ b/tests/phpunit/includes/debug/logging/legacy/LoggerTest.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 diff --git a/tests/phpunit/includes/libs/ObjectFactoryTest.php b/tests/phpunit/includes/libs/ObjectFactoryTest.php index 8c2f12c..9220732 100644 --- a/tests/phpunit/includes/libs/ObjectFactoryTest.php +++ b/tests/phpunit/includes/libs/ObjectFactoryTest.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 diff --git a/tests/phpunit/includes/libs/XhprofTest.php b/tests/phpunit/includes/libs/XhprofTest.php index cc81aba..2440fc0 100644 --- a/tests/phpunit/includes/libs/XhprofTest.php +++ b/tests/phpunit/includes/libs/XhprofTest.php @@ -1,6 +1,5 @@ <?php /** - * @section LICENSE * 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 -- To view, visit https://gerrit.wikimedia.org/r/175932 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Icc7c443245c70bc0f549bee7d105eef5691c864d Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/core Gerrit-Branch: master Gerrit-Owner: Krinkle <[email protected]> Gerrit-Reviewer: BryanDavis <[email protected]> Gerrit-Reviewer: Hashar <[email protected]> Gerrit-Reviewer: Nemo bis <[email protected]> Gerrit-Reviewer: Nikerabbit <[email protected]> Gerrit-Reviewer: Parent5446 <[email protected]> Gerrit-Reviewer: Wmat <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
