cosmetics

This commit is contained in:
Jean-Christian Paul Denis 2021-09-16 21:50:26 +02:00
parent 6ca59f2efc
commit 35466c2dd1
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
3 changed files with 14 additions and 13 deletions

View File

@ -18,9 +18,9 @@ It mix your blog with a feeds planet.
zoneclearFeedServer requires: zoneclearFeedServer requires:
* admin perms for configuration * super admin permission for plugin and services configuration
* admin perms to manager feeds * admin permission to manage feeds
* Dotclear 2.7 * Dotclear 2.19
## USAGE ## USAGE
@ -33,10 +33,10 @@ go to ''configure plugin'', fill in form.
Once it's done you can manage your feeds from menu Once it's done you can manage your feeds from menu
''Feeds server'' on sidebar or you can add dashboard icon. ''Feeds server'' on sidebar or you can add dashboard icon.
## MORE ## LINKS
* License : GNU GPL v2 * License : [GNU GPL v2](https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html)
* Source & contribution : [GitHub Page](https://github.com/JcDenis/zoneclearFeedServer) * Source & contributions : [GitHub Page](https://github.com/JcDenis/zoneclearFeedServer)
* Packages & details: [Dotaddict Page](https://plugins.dotaddict.org/dc2/details/zoneclearFeedServer) * Packages & details: [Dotaddict Page](https://plugins.dotaddict.org/dc2/details/zoneclearFeedServer)
* Discussion & Help: [Dotclear Forum](http://forum.dotclear.org/viewtopic.php?pid=331158) * Discussion & Help: [Dotclear Forum](http://forum.dotclear.org/viewtopic.php?pid=331158)

View File

@ -21,11 +21,11 @@ $this->registerModule(
'Jean-Christian Denis, BG, Pierre Van Glabeke', 'Jean-Christian Denis, BG, Pierre Van Glabeke',
'2015.07.19', '2015.07.19',
[ [
'requires' => [['core', '2.19']], 'requires' => [['core', '2.19']],
'permissions' => 'admin', 'permissions' => 'admin',
'type' => 'plugin', 'type' => 'plugin',
'support' => 'https://github.com/JcDenis/zoneclearFeedServer', 'support' => 'https://github.com/JcDenis/zoneclearFeedServer',
'details' => 'https://plugins.dotaddict.org/dc2/details/pacKman', 'details' => 'https://plugins.dotaddict.org/dc2/details/pacKman',
'repository' => 'https://raw.githubusercontent.com/JcDenis/zoneclearFeedServer/master/dcstore.xml' 'repository' => 'https://raw.githubusercontent.com/JcDenis/zoneclearFeedServer/master/dcstore.xml'
] ]
); );

View File

@ -30,7 +30,8 @@ try {
# Check Dotclear version # Check Dotclear version
if (!method_exists('dcUtils', 'versionsCompare') if (!method_exists('dcUtils', 'versionsCompare')
|| dcUtils::versionsCompare(DC_VERSION, $dc_min, '<', false)) { || dcUtils::versionsCompare(DC_VERSION, $dc_min, '<', false)
) {
throw new Exception(sprintf( throw new Exception(sprintf(
'%s requires Dotclear %s', $mod_id, $dc_min '%s requires Dotclear %s', $mod_id, $dc_min
)); ));