clean up again

This commit is contained in:
Jean-Christian Paul Denis 2021-09-02 22:46:59 +02:00
parent a3c12823a1
commit ec5da9fa29
8 changed files with 61 additions and 64 deletions

View File

@ -1,26 +1,26 @@
postInfoWidget 0.6 - 2021.08.27 0.6 - 2021.08.27
- cleanup (PSR2, short array, ...) - cleanup (PSR2, short array, ...)
- update license - update license
postInfoWidget 0.5.1 - 2015.04.23 - Pierre Van Glabeke 0.5.1 - 2015.04.23 - Pierre Van Glabeke
- modif url support - modif url support
postInfoWidget 0.5 - 2015-01-29 - Pierre Van Glabeke 0.5 - 2015-01-29 - Pierre Van Glabeke
- ajout case hors ligne - ajout case hors ligne
- modif localisation - modif localisation
- fin de ligne unix (LF) - fin de ligne unix (LF)
postInfoWidget 0.4 - 2013.11.12 0.4 - 2013.11.12
- Switch to Dotclear 2.6 - Switch to Dotclear 2.6
- Clean up code - Clean up code
- Add widget options - Add widget options
postInfoWidget 0.3 - 2010.06.21 0.3 - 2010.06.21
- Fixed tags list - Fixed tags list
- Fixed nav links - Fixed nav links
postInfoWidget 0.2 - 2010.06.05 0.2 - 2010.06.05
- Switched to DC 2.2 - Switched to DC 2.2
postInfoWidget 0.1 - 2010.05.24 0.1 - 2010.05.24
- First lab release - First lab release

View File

@ -2,21 +2,21 @@
## WHAT IS POSTINFOWIDGET ? ## WHAT IS POSTINFOWIDGET ?
postInfoWidget "Entry information list" is a plugin for the open-source _postInfoWidget_ "Entry information list" is a plugin for the open-source
web publishing software called Dotclear. web publishing software called Dotclear.
Show entry details in a widget. Show entry details in a widget.
## REQUIREMENTS ## REQUIREMENTS
postInfoWidget requires: _postInfoWidget_ requires:
* permissions to manage widgets * permissions to manage widgets
* Dotclear 2.6 * Dotclear 2.19
## USAGE ## USAGE
First install postInfoWidget, manualy from a zip package or from First install _postInfoWidget_, manualy from a zip package or from
Dotaddict repository. (See Dotclear's documentation to know how do this) Dotaddict repository. (See Dotclear's documentation to know how do this)
Add and configure "Entry information list" from widgets manager. Add and configure "Entry information list" from widgets manager.

View File

@ -1,15 +1,15 @@
<?php <?php
# -- BEGIN LICENSE BLOCK ---------------------------------- /**
# * @brief postInfoWidget, a plugin for Dotclear 2
# This file is part of postInfoWidget, a plugin for Dotclear 2. *
# * @package Dotclear
# Copyright (c) 2009-2021 Jean-Christian Denis and contributors * @subpackage Plugin
# *
# Licensed under the GPL version 2.0 license. * @author Jean-Christian Denis, Pierre Van Glabeke
# A copy of this license is available in LICENSE file or at *
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * @copyright Jean-Christian Denis
# * @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
# -- END LICENSE BLOCK ------------------------------------ */
if (!defined('DC_CONTEXT_ADMIN')) { if (!defined('DC_CONTEXT_ADMIN')) {
return null; return null;

View File

@ -1,15 +1,15 @@
<?php <?php
# -- BEGIN LICENSE BLOCK ---------------------------------- /**
# * @brief postInfoWidget, a plugin for Dotclear 2
# This file is part of postInfoWidget, a plugin for Dotclear 2. *
# * @package Dotclear
# Copyright (c) 2009-2021 Jean-Christian Denis and contributors * @subpackage Plugin
# *
# Licensed under the GPL version 2.0 license. * @author Jean-Christian Denis, Pierre Van Glabeke
# A copy of this license is available in LICENSE file or at *
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * @copyright Jean-Christian Denis
# * @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
# -- END LICENSE BLOCK ------------------------------------ */
if (!defined('DC_RC_PATH')) { if (!defined('DC_RC_PATH')) {
return null; return null;
@ -21,9 +21,9 @@ $this->registerModule(
'Jean-Christian Denis, Pierre Van Glabeke', 'Jean-Christian Denis, Pierre Van Glabeke',
'0.6.1', '0.6.1',
[ [
'requires' => [['core', '2.19']],
'permissions' => 'usage,contentadmin', 'permissions' => 'usage,contentadmin',
'type' => 'plugin', 'type' => 'plugin',
'dc_min' => '2.19',
'support' => 'http://forum.dotclear.org/viewtopic.php?pid=332974#p332974', 'support' => 'http://forum.dotclear.org/viewtopic.php?pid=332974#p332974',
'details' => 'http://plugins.dotaddict.org/dc2/details/postInfoWidget', 'details' => 'http://plugins.dotaddict.org/dc2/details/postInfoWidget',
'repository' => 'https://raw.githubusercontent.com/JcDenis/postInfoWidget/master/dcstore.xml' 'repository' => 'https://raw.githubusercontent.com/JcDenis/postInfoWidget/master/dcstore.xml'

View File

@ -1,15 +1,15 @@
<?php <?php
# -- BEGIN LICENSE BLOCK ---------------------------------- /**
# * @brief postInfoWidget, a plugin for Dotclear 2
# This file is part of postInfoWidget, a plugin for Dotclear 2. *
# * @package Dotclear
# Copyright (c) 2009-2021 Jean-Christian Denis and contributors * @subpackage Plugin
# *
# Licensed under the GPL version 2.0 license. * @author Jean-Christian Denis, Pierre Van Glabeke
# A copy of this license is available in LICENSE file or at *
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * @copyright Jean-Christian Denis
# * @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
# -- END LICENSE BLOCK ------------------------------------ */
if (!defined('DC_RC_PATH')) { if (!defined('DC_RC_PATH')) {
return null; return null;

View File

@ -1,15 +1,15 @@
<?php <?php
# -- BEGIN LICENSE BLOCK ---------------------------------- /**
# * @brief postInfoWidget, a plugin for Dotclear 2
# This file is part of postInfoWidget, a plugin for Dotclear 2. *
# * @package Dotclear
# Copyright (c) 2009-2021 Jean-Christian Denis and contributors * @subpackage Plugin
# *
# Licensed under the GPL version 2.0 license. * @author Jean-Christian Denis, Pierre Van Glabeke
# A copy of this license is available in LICENSE file or at *
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * @copyright Jean-Christian Denis
# * @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
# -- END LICENSE BLOCK ------------------------------------ */
if (!defined('DC_RC_PATH')) { if (!defined('DC_RC_PATH')) {
return null; return null;

View File

@ -1,13 +1,11 @@
<modules xmlns:da="http://dotaddict.org/da/"> <modules xmlns:da="http://dotaddict.org/da/">
<module id="postInfoWidget"> <module id="postInfoWidget">
<name>postInfoWidget</name> <name>postInfoWidget</name>
<version>0.6</version> <version>0.6.1</version>
<author>Jean-Christian Denis, Pierre Van Glabeke</author> <author>Jean-Christian Denis, Pierre Van Glabeke</author>
<desc>Show Entry informations on a widget</desc> <desc>Show Entry informations on a widget</desc>
<file>https://github.com/JcDenis/postInfoWidget/releases/download/v0.6/plugin-postInfoWidget.zip</file> <file>https://github.com/JcDenis/postInfoWidget/releases/download/v0.6.1/plugin-postInfoWidget.zip</file>
<da:dcmin>2.19</da:dcmin>
<da:details>http://plugins.dotaddict.org/dc2/details/postInfoWidget</da:details> <da:details>http://plugins.dotaddict.org/dc2/details/postInfoWidget</da:details>
<da:section></da:section>
<da:support>http://forum.dotclear.org/viewtopic.php?pid=332974#p332974</da:support> <da:support>http://forum.dotclear.org/viewtopic.php?pid=332974#p332974</da:support>
</module> </module>
</modules> </modules>

View File

@ -138,4 +138,3 @@ $GLOBALS['__l10n']['Previous entry of this category'] = 'Billet précédent de c
$GLOBALS['__l10n']['Next entry of this category'] = 'Billet suivant de cette catégorie'; $GLOBALS['__l10n']['Next entry of this category'] = 'Billet suivant de cette catégorie';
$GLOBALS['__l10n']['Try to adapt style:'] = 'Essayer d\'adapter le style :'; $GLOBALS['__l10n']['Try to adapt style:'] = 'Essayer d\'adapter le style :';