diff --git a/src/BaseModule.php b/src/BaseModule.php index d0019ccd1c..3ad4a4f055 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 dd6ac7caa2..116120ab55 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 71d1a7b849..c50319e4ca 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 164333aae4..ffe11363f5 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 53f4623e15..ca4842a468 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 e83b921c6a..9ddcf5ad1f 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 5fe9225e78..4ca5aa38db 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 4397892a9e..9e9c00f0b8 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 fff079e782..2c2a3e5d7c 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 4bd8eac264..f9af253c0b 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 9c70a1dff8..b985d91c21 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 9c0999c397..512004b508 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 26df41cce9..67cf30845c 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 6bf193907f..ebccb018bc 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 63af50ee22..29ccd795b8 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 daa0ba60a8..da2d20fd13 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 b60116db3c..1de2cee040 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 13ed29b9df..4b607c1e6a 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 50d44d114d..b29f8e2baa 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 810d5be41b..e7c751f942 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 59a5d9cfdc..f51ed95fe2 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 2b25d84433..03101cdf0f 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 90449c4787..a3e3b80a7e 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 76cf164344..fb7ecac43e 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 e97e1ff3d9..b7c9bfaaec 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 3162a725c0..24ed514b5e 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 e3ae52263b..cdb3f9c81f 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 9e96b7db2f..d41250a686 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 6d059eb4ef..d9143c8809 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 507735c4fc..3ebdb99e16 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 d0887d1123..f249b37fd7 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 2be12f13e4..5df68f223e 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 b9e51da4ca..fadfb20661 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 7c5391a6ba..bfa917a393 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 570e281241..452162ff20 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 3eebcc2265..20f27ae0bf 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 8c8e637630..f4c6a8ed27 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 c6e95ee068..1053ab08e0 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 ae80151fb0..9035bb0b2a 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