Skip to content

Commit 74e25ff

Browse files
committed
0.5.1
1 parent d6f1a69 commit 74e25ff

File tree

283 files changed

+981
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

283 files changed

+981
-2
lines changed

CHANGELOG

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
postInfoWidget 0.5.1 - 2015-04-23 - Pierre Van Glabeke
2+
* modif url support
3+
4+
postInfoWidget 0.5 - 2015-01-29 - Pierre Van Glabeke
5+
* ajout case hors ligne
6+
* modif localisation
7+
* fin de ligne unix (LF)
8+
9+
postInfoWidget 0.4 - 2013-11-12
10+
* Switch to Dotclear 2.6
11+
* Clean up code
12+
* Add widget options
13+
14+
postInfoWidget 0.3 - 2010-06-21
15+
* Fixed tags list
16+
* Fixed nav links
17+
18+
postInfoWidget 0.2 - 2010-06-05
19+
* Switched to DC 2.2
20+
21+
postInfoWidget 0.1 - 2010-05-24
22+
* First lab release

ICONS

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Flags icons
2+
3+
“Flags” are 247 icons — in GIF and PNG formats — representing most countries in
4+
the world as small pixel icons. These flag icons are available for free use for any
5+
purpose with no requirement for attribution.
6+
Come from http://www.famfamfam.com/lab/icons/flags/
7+
8+
Fugue Icons
9+
10+
Copyright (C) 2010 Yusuke Kamiyamane. All rights reserved.
11+
The icons are licensed under a Creative Commons Attribution
12+
3.0 license. <http://creativecommons.org/licenses/by/3.0/>
13+
14+
If you can't or don't want to provide a link back, please
15+
purchase a royalty-free license. <http://pinvoke.com/>
16+
17+
I'm unavailable for custom icon design work. But your
18+
suggestions are always welcome!
19+
<mailto:yusuke.kamiyamane@gmail.com>

README.md

+22-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,22 @@
1-
# postInfoWidget
2-
Afficher les informations d'un billet dans un widget
1+
# README
2+
3+
## WHAT IS POSTINFOWIDGET ?
4+
5+
postInfoWidget "Entry information list" is a plugin for the open-source
6+
web publishing software called Dotclear.
7+
8+
Show entry details in a widget.
9+
10+
## REQUIREMENTS
11+
12+
postInfoWidget requires:
13+
14+
* permissions to manage widgets
15+
* Dotclear 2.6
16+
17+
## USAGE
18+
19+
First install postInfoWidget, manualy from a zip package or from
20+
Dotaddict repository. (See Dotclear's documentation to know how do this)
21+
22+
Add and configure "Entry information list" from widgets manager.

_admin.php

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
# -- BEGIN LICENSE BLOCK ----------------------------------
3+
#
4+
# This file is part of postInfoWidget, a plugin for Dotclear 2.
5+
#
6+
# Copyright (c) 2009-2015 Jean-Christian Denis and contributors
7+
#
8+
# Licensed under the GPL version 2.0 license.
9+
# A copy of this license is available in LICENSE file or at
10+
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
11+
#
12+
# -- END LICENSE BLOCK ------------------------------------
13+
14+
if (!defined('DC_CONTEXT_ADMIN')) {
15+
16+
return null;
17+
}
18+
19+
require dirname(__FILE__).'/_widgets.php';

_define.php

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
# -- BEGIN LICENSE BLOCK ----------------------------------
3+
#
4+
# This file is part of postInfoWidget, a plugin for Dotclear 2.
5+
#
6+
# Copyright (c) 2009-2015 Jean-Christian Denis and contributors
7+
#
8+
# Licensed under the GPL version 2.0 license.
9+
# A copy of this license is available in LICENSE file or at
10+
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
11+
#
12+
# -- END LICENSE BLOCK ------------------------------------
13+
14+
if (!defined('DC_RC_PATH')) {
15+
16+
return null;
17+
}
18+
19+
$this->registerModule(
20+
/* Name */
21+
"postInfoWidget",
22+
/* Description*/
23+
"Show Entry informations on a widget",
24+
/* Author */
25+
"Jean-Christian Denis, Pierre Van Glabeke",
26+
/* Version */
27+
'0.5.1',
28+
array(
29+
'permissions' => 'usage,contentadmin',
30+
'type' => 'plugin',
31+
'dc_min' => '2.7',
32+
'support' => 'http://forum.dotclear.org/viewtopic.php?pid=332974#p332974',
33+
'details' => 'http://plugins.dotaddict.org/dc2/details/postInfoWidget'
34+
)
35+
);

_public.php

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
# -- BEGIN LICENSE BLOCK ----------------------------------
3+
#
4+
# This file is part of postInfoWidget, a plugin for Dotclear 2.
5+
#
6+
# Copyright (c) 2009-2015 Jean-Christian Denis and contributors
7+
#
8+
# Licensed under the GPL version 2.0 license.
9+
# A copy of this license is available in LICENSE file or at
10+
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
11+
#
12+
# -- END LICENSE BLOCK ------------------------------------
13+
14+
if (!defined('DC_RC_PATH')) {
15+
16+
return null;
17+
}
18+
19+
require dirname(__FILE__).'/_widgets.php';

0 commit comments

Comments
 (0)