From 9d0a6f90b630a52bac84afa9255df62773b23619 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 15 Sep 2018 19:28:38 -0400 Subject: [PATCH] Update "mrpetovan" email address - Fix Tobias' email address - Fix copypasted doc block in Console/PostUpdate --- src/BaseModule.php | 2 +- src/Content/OEmbed.php | 2 +- src/Content/Text/Markdown.php | 2 +- src/Core/ACL.php | 2 +- src/Core/Cache/DatabaseCacheDriver.php | 2 +- src/Core/Cache/ICacheDriver.php | 2 +- src/Core/Cache/MemcacheCacheDriver.php | 2 +- src/Core/Cache/MemcachedCacheDriver.php | 2 +- src/Core/Cache/RedisCacheDriver.php | 2 +- src/Core/Config/IConfigAdapter.php | 2 +- src/Core/Config/JITConfigAdapter.php | 2 +- src/Core/Config/JITPConfigAdapter.php | 2 +- src/Core/Config/PreloadConfigAdapter.php | 2 +- src/Core/Config/PreloadPConfigAdapter.php | 2 +- src/Core/Console.php | 2 +- src/Core/Console/Config.php | 4 ++-- src/Core/Console/CreateDoxygen.php | 2 +- src/Core/Console/DatabaseStructure.php | 2 +- src/Core/Console/DocBloxErrorChecker.php | 2 +- src/Core/Console/Extract.php | 2 +- src/Core/Console/GlobalCommunityBlock.php | 4 ++-- src/Core/Console/GlobalCommunitySilence.php | 4 ++-- src/Core/Console/Maintenance.php | 2 +- src/Core/Console/PhpToPo.php | 2 +- src/Core/Console/PoToPhp.php | 2 +- src/Core/Console/PostUpdate.php | 9 +++------ src/Core/Console/Typo.php | 2 +- src/Core/Protocol.php | 2 +- src/Core/Session.php | 2 +- src/Core/Session/CacheSessionHandler.php | 2 +- src/Core/Session/DatabaseSessionHandler.php | 2 +- src/Module/Feed.php | 2 +- src/Module/Login.php | 2 +- src/Module/Logout.php | 2 +- src/Module/Oembed.php | 2 +- src/Object/OEmbed.php | 2 +- src/Render/FriendicaSmarty.php | 2 +- src/Render/FriendicaSmartyEngine.php | 2 +- view/lang/fr/messages.po | 2 +- 39 files changed, 44 insertions(+), 47 deletions(-) diff --git a/src/BaseModule.php b/src/BaseModule.php index d0019ccd1..3ad4a4f05 100644 --- a/src/BaseModule.php +++ b/src/BaseModule.php @@ -9,7 +9,7 @@ namespace Friendica; * The filename of the module in src/Module needs to match the class name * exactly to make the module available. * - * @author Hypolite Petovan mrpetovan@gmail.com + * @author Hypolite Petovan */ abstract class BaseModule extends BaseObject { diff --git a/src/Content/OEmbed.php b/src/Content/OEmbed.php index dd6ac7caa..116120ab5 100644 --- a/src/Content/OEmbed.php +++ b/src/Content/OEmbed.php @@ -31,7 +31,7 @@ require_once 'include/dba.php'; * * @see https://oembed.com * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class OEmbed { diff --git a/src/Content/Text/Markdown.php b/src/Content/Text/Markdown.php index 71d1a7b84..c50319e4c 100644 --- a/src/Content/Text/Markdown.php +++ b/src/Content/Text/Markdown.php @@ -14,7 +14,7 @@ use Friendica\Content\Text\HTML; /** * Friendica-specific usage of Markdown * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class Markdown extends BaseObject { diff --git a/src/Core/ACL.php b/src/Core/ACL.php index 164333aae..ffe11363f 100644 --- a/src/Core/ACL.php +++ b/src/Core/ACL.php @@ -17,7 +17,7 @@ use Friendica\Util\Network; /** * Handle ACL management and display * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class ACL extends BaseObject { diff --git a/src/Core/Cache/DatabaseCacheDriver.php b/src/Core/Cache/DatabaseCacheDriver.php index 53f4623e1..ca4842a46 100644 --- a/src/Core/Cache/DatabaseCacheDriver.php +++ b/src/Core/Cache/DatabaseCacheDriver.php @@ -9,7 +9,7 @@ use Friendica\Util\DateTimeFormat; /** * Database Cache Driver * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class DatabaseCacheDriver extends AbstractCacheDriver implements ICacheDriver { diff --git a/src/Core/Cache/ICacheDriver.php b/src/Core/Cache/ICacheDriver.php index e83b921c6..9ddcf5ad1 100644 --- a/src/Core/Cache/ICacheDriver.php +++ b/src/Core/Cache/ICacheDriver.php @@ -7,7 +7,7 @@ use Friendica\Core\Cache; /** * Cache Driver Interface * - * @author Hypolite Petovan + * @author Hypolite Petovan */ interface ICacheDriver { diff --git a/src/Core/Cache/MemcacheCacheDriver.php b/src/Core/Cache/MemcacheCacheDriver.php index 5fe9225e7..4ca5aa38d 100644 --- a/src/Core/Cache/MemcacheCacheDriver.php +++ b/src/Core/Cache/MemcacheCacheDriver.php @@ -10,7 +10,7 @@ use Memcache; /** * Memcache Cache Driver * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class MemcacheCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver { diff --git a/src/Core/Cache/MemcachedCacheDriver.php b/src/Core/Cache/MemcachedCacheDriver.php index 4397892a9..9e9c00f0b 100644 --- a/src/Core/Cache/MemcachedCacheDriver.php +++ b/src/Core/Cache/MemcachedCacheDriver.php @@ -10,7 +10,7 @@ use Memcached; /** * Memcached Cache Driver * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class MemcachedCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver { diff --git a/src/Core/Cache/RedisCacheDriver.php b/src/Core/Cache/RedisCacheDriver.php index fff079e78..2c2a3e5d7 100644 --- a/src/Core/Cache/RedisCacheDriver.php +++ b/src/Core/Cache/RedisCacheDriver.php @@ -10,7 +10,7 @@ use Redis; /** * Redis Cache Driver. This driver is based on Memcache driver * - * @author Hypolite Petovan + * @author Hypolite Petovan * @author Roland Haeder */ class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver diff --git a/src/Core/Config/IConfigAdapter.php b/src/Core/Config/IConfigAdapter.php index 4bd8eac26..f9af253c0 100644 --- a/src/Core/Config/IConfigAdapter.php +++ b/src/Core/Config/IConfigAdapter.php @@ -4,7 +4,7 @@ namespace Friendica\Core\Config; /** * - * @author Hypolite Petovan + * @author Hypolite Petovan */ interface IConfigAdapter { diff --git a/src/Core/Config/JITConfigAdapter.php b/src/Core/Config/JITConfigAdapter.php index 9c70a1dff..b985d91c2 100644 --- a/src/Core/Config/JITConfigAdapter.php +++ b/src/Core/Config/JITConfigAdapter.php @@ -11,7 +11,7 @@ require_once 'include/dba.php'; * * Default Config Adapter. Provides the best performance for pages loading few configuration variables. * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class JITConfigAdapter extends BaseObject implements IConfigAdapter { diff --git a/src/Core/Config/JITPConfigAdapter.php b/src/Core/Config/JITPConfigAdapter.php index 9c0999c39..512004b50 100644 --- a/src/Core/Config/JITPConfigAdapter.php +++ b/src/Core/Config/JITPConfigAdapter.php @@ -11,7 +11,7 @@ require_once 'include/dba.php'; * * Default PConfig Adapter. Provides the best performance for pages loading few configuration variables. * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class JITPConfigAdapter extends BaseObject implements IPConfigAdapter { diff --git a/src/Core/Config/PreloadConfigAdapter.php b/src/Core/Config/PreloadConfigAdapter.php index 26df41cce..67cf30845 100644 --- a/src/Core/Config/PreloadConfigAdapter.php +++ b/src/Core/Config/PreloadConfigAdapter.php @@ -13,7 +13,7 @@ require_once 'include/dba.php'; * * Minimizes the number of database queries to retrieve configuration values at the cost of memory. * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class PreloadConfigAdapter extends BaseObject implements IConfigAdapter { diff --git a/src/Core/Config/PreloadPConfigAdapter.php b/src/Core/Config/PreloadPConfigAdapter.php index 6bf193907..ebccb018b 100644 --- a/src/Core/Config/PreloadPConfigAdapter.php +++ b/src/Core/Config/PreloadPConfigAdapter.php @@ -13,7 +13,7 @@ require_once 'include/dba.php'; * * Minimizes the number of database queries to retrieve configuration values at the cost of memory. * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class PreloadPConfigAdapter extends BaseObject implements IPConfigAdapter { diff --git a/src/Core/Console.php b/src/Core/Console.php index 63af50ee2..29ccd795b 100644 --- a/src/Core/Console.php +++ b/src/Core/Console.php @@ -5,7 +5,7 @@ namespace Friendica\Core; /** * Description of Console * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class Console extends \Asika\SimpleConsole\Console { diff --git a/src/Core/Console/Config.php b/src/Core/Console/Config.php index daa0ba60a..da2d20fd1 100644 --- a/src/Core/Console/Config.php +++ b/src/Core/Console/Config.php @@ -37,8 +37,8 @@ require_once 'include/text.php'; * set to the value of the last parameter. (e.g. "system loglevel 0" will * disable logging) * - * @author Tobias Diekershoff - * @author Hypolite Petovan + * @author Tobias Diekershoff + * @author Hypolite Petovan */ class Config extends \Asika\SimpleConsole\Console { diff --git a/src/Core/Console/CreateDoxygen.php b/src/Core/Console/CreateDoxygen.php index b60116db3..1de2cee04 100644 --- a/src/Core/Console/CreateDoxygen.php +++ b/src/Core/Console/CreateDoxygen.php @@ -5,7 +5,7 @@ namespace Friendica\Core\Console; /** * Description of CreateDoxygen * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class CreateDoxygen extends \Asika\SimpleConsole\Console { diff --git a/src/Core/Console/DatabaseStructure.php b/src/Core/Console/DatabaseStructure.php index 13ed29b9d..4b607c1e6 100644 --- a/src/Core/Console/DatabaseStructure.php +++ b/src/Core/Console/DatabaseStructure.php @@ -13,7 +13,7 @@ require_once 'include/dba.php'; /** * @brief Performs database updates from the command line * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class DatabaseStructure extends \Asika\SimpleConsole\Console { diff --git a/src/Core/Console/DocBloxErrorChecker.php b/src/Core/Console/DocBloxErrorChecker.php index 50d44d114..b29f8e2ba 100644 --- a/src/Core/Console/DocBloxErrorChecker.php +++ b/src/Core/Console/DocBloxErrorChecker.php @@ -22,7 +22,7 @@ namespace Friendica\Core\Console; * This is done for all files, so, in the end removing one file leads to a working doc build. * * @author Alexander Kampmann - * @author Hypolite Petovan + * @author Hypolite Petovan */ class DocBloxErrorChecker extends \Asika\SimpleConsole\Console { diff --git a/src/Core/Console/Extract.php b/src/Core/Console/Extract.php index 810d5be41..e7c751f94 100644 --- a/src/Core/Console/Extract.php +++ b/src/Core/Console/Extract.php @@ -8,7 +8,7 @@ namespace Friendica\Core\Console; * * Outputs a PHP file with language strings used by Friendica * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class Extract extends \Asika\SimpleConsole\Console { diff --git a/src/Core/Console/GlobalCommunityBlock.php b/src/Core/Console/GlobalCommunityBlock.php index 59a5d9cfd..f51ed95fe 100644 --- a/src/Core/Console/GlobalCommunityBlock.php +++ b/src/Core/Console/GlobalCommunityBlock.php @@ -13,8 +13,8 @@ use Friendica\Model\Contact; * * License: AGPLv3 or later, same as Friendica * - * @author Tobias Diekershoff - * @author Hypolite Petovan + * @author Tobias Diekershoff + * @author Hypolite Petovan */ class GlobalCommunityBlock extends \Asika\SimpleConsole\Console { diff --git a/src/Core/Console/GlobalCommunitySilence.php b/src/Core/Console/GlobalCommunitySilence.php index 2b25d8443..03101cdf0 100644 --- a/src/Core/Console/GlobalCommunitySilence.php +++ b/src/Core/Console/GlobalCommunitySilence.php @@ -19,8 +19,8 @@ require_once 'include/text.php'; * * License: AGPLv3 or later, same as Friendica * - * @author Tobias Diekershoff - * @author Hypolite Petovan + * @author Tobias Diekershoff + * @author Hypolite Petovan */ class GlobalCommunitySilence extends \Asika\SimpleConsole\Console { diff --git a/src/Core/Console/Maintenance.php b/src/Core/Console/Maintenance.php index 90449c478..a3e3b80a7 100644 --- a/src/Core/Console/Maintenance.php +++ b/src/Core/Console/Maintenance.php @@ -10,7 +10,7 @@ require_once 'include/dba.php'; /** * @brief Sets maintenance mode for this node * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class Maintenance extends \Asika\SimpleConsole\Console { diff --git a/src/Core/Console/PhpToPo.php b/src/Core/Console/PhpToPo.php index 76cf16434..fb7ecac43 100644 --- a/src/Core/Console/PhpToPo.php +++ b/src/Core/Console/PhpToPo.php @@ -5,7 +5,7 @@ namespace Friendica\Core\Console; /** * Read a strings.php file and create messages.po in the same directory * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class PhpToPo extends \Asika\SimpleConsole\Console { diff --git a/src/Core/Console/PoToPhp.php b/src/Core/Console/PoToPhp.php index e97e1ff3d..b7c9bfaae 100644 --- a/src/Core/Console/PoToPhp.php +++ b/src/Core/Console/PoToPhp.php @@ -5,7 +5,7 @@ namespace Friendica\Core\Console; /** * Read a messages.po file and create strings.php in the same directory * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class PoToPhp extends \Asika\SimpleConsole\Console { diff --git a/src/Core/Console/PostUpdate.php b/src/Core/Console/PostUpdate.php index 3162a725c..24ed514b5 100644 --- a/src/Core/Console/PostUpdate.php +++ b/src/Core/Console/PostUpdate.php @@ -6,15 +6,12 @@ use Friendica\Core\L10n; use Friendica\Core\Config; /** - * @brief tool to block an account from the node - * - * With this tool, you can block an account in such a way, that no postings - * or comments this account writes are accepted to the node. + * Performs database post updates * * License: AGPLv3 or later, same as Friendica * - * @author Tobias Diekershoff - * @author Hypolite Petovan + * @author Tobias Diekershoff + * @author Hypolite Petovan */ class PostUpdate extends \Asika\SimpleConsole\Console { diff --git a/src/Core/Console/Typo.php b/src/Core/Console/Typo.php index e3ae52263..cdb3f9c81 100644 --- a/src/Core/Console/Typo.php +++ b/src/Core/Console/Typo.php @@ -6,7 +6,7 @@ namespace Friendica\Core\Console; * Tired of chasing typos and finding them after a commit. * Run this and quickly see if we've got any parse errors in our application files. * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class Typo extends \Asika\SimpleConsole\Console { diff --git a/src/Core/Protocol.php b/src/Core/Protocol.php index 9e96b7db2..d41250a68 100644 --- a/src/Core/Protocol.php +++ b/src/Core/Protocol.php @@ -9,7 +9,7 @@ use Friendica\Util\Network; /** * Manage compatibility with federated networks * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class Protocol { diff --git a/src/Core/Session.php b/src/Core/Session.php index 6d059eb4e..d9143c880 100644 --- a/src/Core/Session.php +++ b/src/Core/Session.php @@ -11,7 +11,7 @@ use Friendica\Core\Session\DatabaseSessionHandler; /** * High-level Session service class * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class Session { diff --git a/src/Core/Session/CacheSessionHandler.php b/src/Core/Session/CacheSessionHandler.php index 507735c4f..3ebdb99e1 100644 --- a/src/Core/Session/CacheSessionHandler.php +++ b/src/Core/Session/CacheSessionHandler.php @@ -13,7 +13,7 @@ require_once 'include/text.php'; /** * SessionHandler using Friendica Cache * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class CacheSessionHandler extends BaseObject implements SessionHandlerInterface { diff --git a/src/Core/Session/DatabaseSessionHandler.php b/src/Core/Session/DatabaseSessionHandler.php index d0887d112..f249b37fd 100644 --- a/src/Core/Session/DatabaseSessionHandler.php +++ b/src/Core/Session/DatabaseSessionHandler.php @@ -14,7 +14,7 @@ require_once 'include/text.php'; /** * SessionHandler using database * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class DatabaseSessionHandler extends BaseObject implements SessionHandlerInterface { diff --git a/src/Module/Feed.php b/src/Module/Feed.php index 2be12f13e..5df68f223 100644 --- a/src/Module/Feed.php +++ b/src/Module/Feed.php @@ -20,7 +20,7 @@ use Friendica\Protocol\OStatus; * * @brief Provides public Atom feeds * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class Feed extends BaseModule { diff --git a/src/Module/Login.php b/src/Module/Login.php index b9e51da4c..fadfb2066 100644 --- a/src/Module/Login.php +++ b/src/Module/Login.php @@ -22,7 +22,7 @@ require_once 'include/text.php'; /** * Login module * - * @author Hypolite Petovan mrpetovan@gmail.com + * @author Hypolite Petovan */ class Login extends BaseModule { diff --git a/src/Module/Logout.php b/src/Module/Logout.php index 7c5391a6b..bfa917a39 100644 --- a/src/Module/Logout.php +++ b/src/Module/Logout.php @@ -14,7 +14,7 @@ require_once 'include/security.php'; /** * Logout module * - * @author Hypolite Petovan mrpetovan@gmail.com + * @author Hypolite Petovan */ class Logout extends BaseModule { diff --git a/src/Module/Oembed.php b/src/Module/Oembed.php index 570e28124..452162ff2 100644 --- a/src/Module/Oembed.php +++ b/src/Module/Oembed.php @@ -12,7 +12,7 @@ use Friendica\Content; * * Example: /oembed/aHR0cHM6Ly9... * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class Oembed extends BaseModule { diff --git a/src/Object/OEmbed.php b/src/Object/OEmbed.php index 3eebcc226..20f27ae0b 100644 --- a/src/Object/OEmbed.php +++ b/src/Object/OEmbed.php @@ -7,7 +7,7 @@ namespace Friendica\Object; * * @see https://oembed.com/#section2.3 * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class OEmbed { diff --git a/src/Render/FriendicaSmarty.php b/src/Render/FriendicaSmarty.php index 8c8e63763..f4c6a8ed2 100644 --- a/src/Render/FriendicaSmarty.php +++ b/src/Render/FriendicaSmarty.php @@ -9,7 +9,7 @@ use Smarty; /** * Friendica extension of the Smarty3 template engine * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class FriendicaSmarty extends Smarty { diff --git a/src/Render/FriendicaSmartyEngine.php b/src/Render/FriendicaSmartyEngine.php index c6e95ee06..1053ab08e 100644 --- a/src/Render/FriendicaSmartyEngine.php +++ b/src/Render/FriendicaSmartyEngine.php @@ -9,7 +9,7 @@ use Friendica\Core\Addon; /** * Smarty implementation of the Friendica template engine interface * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class FriendicaSmartyEngine implements ITemplateEngine { diff --git a/view/lang/fr/messages.po b/view/lang/fr/messages.po index ae80151fb..9035bb0b2 100644 --- a/view/lang/fr/messages.po +++ b/view/lang/fr/messages.po @@ -8,7 +8,7 @@ # Damien Goutte-Gattat , 2015-2016 # Damien Goutte-Gattat , 2015 # Domovoy , 2012 -# Hypolite Petovan , 2016 +# Hypolite Petovan , 2016 # Jak , 2014 # Lionel Triay , 2013 # Thecross, 2017