release 2021.11.06
This commit is contained in:
parent
92521cdbf9
commit
9823608ba5
@ -2,6 +2,8 @@
|
||||
- [ ] fix disallow self blog feeds
|
||||
- [ ] add plugin muppet support (request Mathieu M.)
|
||||
- [ ] add log for errors
|
||||
|
||||
2021.11.06
|
||||
- add generic filters (dc 2.20)
|
||||
- add user pref for columns and filters options (dc 2.20)
|
||||
- fix redirections, page title, posts feed form
|
||||
|
@ -3,7 +3,7 @@
|
||||
[![Release](https://img.shields.io/github/v/release/JcDenis/zoneclearFeedServer)](https://github.com/JcDenis/zoneclearFeedServer/releases)
|
||||
[![Date](https://img.shields.io/github/release-date/JcDenis/zoneclearFeedServer)](https://github.com/JcDenis/zoneclearFeedServer/releases)
|
||||
[![Issues](https://img.shields.io/github/issues/JcDenis/zoneclearFeedServer)](https://github.com/JcDenis/zoneclearFeedServer/issues)
|
||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.19-blue.svg)](https://fr.dotclear.org/download)
|
||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.20-blue.svg)](https://fr.dotclear.org/download)
|
||||
[![Dotaddict](https://img.shields.io/badge/dotaddict-official-green.svg)](https://plugins.dotaddict.org/dc2/details/zoneclearFeedServer)
|
||||
[![License](https://img.shields.io/github/license/JcDenis/zoneclearFeedServer)](https://github.com/JcDenis/zoneclearFeedServer/blob/master/LICENSE)
|
||||
|
||||
@ -20,7 +20,7 @@ It mix your blog with a feeds planet.
|
||||
|
||||
* super admin permission for plugin and services configuration
|
||||
* admin permission to manage feeds
|
||||
* Dotclear 2.19
|
||||
* Dotclear 2.20
|
||||
|
||||
## USAGE
|
||||
|
||||
|
@ -18,9 +18,9 @@ $this->registerModule(
|
||||
'Feeds server',
|
||||
'Mix your blog with a feeds planet',
|
||||
'Jean-Christian Denis, BG, Pierre Van Glabeke',
|
||||
'2021.09.16',
|
||||
'2021.11.06',
|
||||
[
|
||||
'requires' => [['core', '2.19']],
|
||||
'requires' => [['core', '2.20']],
|
||||
'permissions' => 'admin',
|
||||
'type' => 'plugin',
|
||||
'support' => 'https://github.com/JcDenis/zoneclearFeedServer',
|
||||
|
@ -17,90 +17,90 @@ if (!defined('DC_CONTEXT_ADMIN')) {
|
||||
$mod_id = 'zoneclearFeedServer';
|
||||
|
||||
$this->addUserAction(
|
||||
/* type */
|
||||
/* type */
|
||||
'settings',
|
||||
/* action */
|
||||
/* action */
|
||||
'delete_all',
|
||||
/* ns */
|
||||
/* ns */
|
||||
$mod_id,
|
||||
/* desc */
|
||||
/* desc */
|
||||
__('delete all settings')
|
||||
);
|
||||
$this->addUserAction(
|
||||
/* type */
|
||||
/* type */
|
||||
'tables',
|
||||
/* action */
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
/* ns */
|
||||
'zc_feed',
|
||||
/* desc */
|
||||
/* desc */
|
||||
__('delete table')
|
||||
);
|
||||
$this->addUserAction(
|
||||
/* type */
|
||||
/* type */
|
||||
'plugins',
|
||||
/* action */
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
/* ns */
|
||||
$mod_id,
|
||||
/* desc */
|
||||
/* desc */
|
||||
__('delete plugin files')
|
||||
);
|
||||
$this->addUserAction(
|
||||
/* type */
|
||||
/* type */
|
||||
'versions',
|
||||
/* action */
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
/* ns */
|
||||
$mod_id,
|
||||
/* desc */
|
||||
/* desc */
|
||||
__('delete the version number')
|
||||
);
|
||||
|
||||
$this->addDirectAction(
|
||||
/* type */
|
||||
/* type */
|
||||
'settings',
|
||||
/* action */
|
||||
/* action */
|
||||
'delete_all',
|
||||
/* ns */
|
||||
/* ns */
|
||||
$mod_id,
|
||||
/* desc */
|
||||
/* desc */
|
||||
sprintf(__('delete all %s settings'), $mod_id)
|
||||
);
|
||||
$this->addDirectAction(
|
||||
/* type */
|
||||
/* type */
|
||||
'tables',
|
||||
/* action */
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
/* ns */
|
||||
'zc_feed',
|
||||
/* desc */
|
||||
/* desc */
|
||||
sprintf(__('delete %s table'), $mod_id)
|
||||
);
|
||||
$this->addDirectAction(
|
||||
/* type */
|
||||
/* type */
|
||||
'plugins',
|
||||
/* action */
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
/* ns */
|
||||
$mod_id,
|
||||
/* desc */
|
||||
/* desc */
|
||||
sprintf(__('delete %s plugin files'), $mod_id)
|
||||
);
|
||||
$this->addDirectAction(
|
||||
/* type */
|
||||
/* type */
|
||||
'versions',
|
||||
/* action */
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
/* ns */
|
||||
$mod_id,
|
||||
/* desc */
|
||||
/* desc */
|
||||
sprintf(__('delete %s version number'), $mod_id)
|
||||
);
|
||||
$this->addDirectCallback(
|
||||
/* function */
|
||||
/* function */
|
||||
'zoneclearfeedServerUninstall',
|
||||
/* desc */
|
||||
/* desc */
|
||||
'delete feeds relations'
|
||||
);
|
||||
|
||||
|
23
dcstore.xml
23
dcstore.xml
@ -1,12 +1,13 @@
|
||||
<?xml version="1.0"?>
|
||||
<modules xmlns:da="http://dotaddict.org/da/">
|
||||
<module id="zoneclearFeedServer">
|
||||
<name>Feeds server</name>
|
||||
<version>2021.09.16</version>
|
||||
<author>Jean-Christian Denis, BG, Pierre Van Glabeke</author>
|
||||
<desc>Mix your blog with a feeds planet</desc>
|
||||
<file>https://github.com/JcDenis/zoneclearFeedServer/releases/download/v2021.09.16/plugin-zoneclearFeedServer.zip</file>
|
||||
<da:dcmin>2.19</da:dcmin>
|
||||
<da:details>https://plugins.dotaddict.org/dc2/details/pacKman</da:details>
|
||||
<da:support>https://github.com/JcDenis/zoneclearFeedServer</da:support>
|
||||
</module>
|
||||
</modules>
|
||||
<module id="zoneclearFeedServer">
|
||||
<name>Feeds server</name>
|
||||
<version>2021.11.06</version>
|
||||
<author>Jean-Christian Denis, BG, Pierre Van Glabeke</author>
|
||||
<desc>Mix your blog with a feeds planet</desc>
|
||||
<file>https://github.com/JcDenis/zoneclearFeedServer/releases/download/v2021.11.06/plugin-zoneclearFeedServer.zip</file>
|
||||
<da:dcmin>2.20</da:dcmin>
|
||||
<da:details>https://plugins.dotaddict.org/dc2/details/pacKman</da:details>
|
||||
<da:support>https://github.com/JcDenis/zoneclearFeedServer</da:support>
|
||||
</module>
|
||||
</modules>
|
||||
|
Loading…
Reference in New Issue
Block a user