[EGIT] [website/www] master 06/06: MEDIUM: Update plugin yalist to v2016-08-29

2017-10-14 Thread Bertrand Jacquin
beber pushed a commit to branch master.

http://git.enlightenment.org/website/www.git/commit/?id=b88336b2ee9f26b5230ce1fcee3ff494bab7b5a7

commit b88336b2ee9f26b5230ce1fcee3ff494bab7b5a7
Author: Bertrand Jacquin 
Date:   Sun Oct 15 04:52:26 2017 +0100

MEDIUM: Update plugin yalist to v2016-08-29
---
 public_html/lib/plugins/yalist/.travis.yml   |  30 +
 public_html/lib/plugins/yalist/README.md |   8 +
 public_html/lib/plugins/yalist/conf/default.php  |   7 +
 public_html/lib/plugins/yalist/conf/metadata.php |   8 +
 public_html/lib/plugins/yalist/odt.css   |   7 +
 public_html/lib/plugins/yalist/plugin.info.txt   |   4 +-
 public_html/lib/plugins/yalist/style.css |   6 -
 public_html/lib/plugins/yalist/syntax.php| 672 +--
 8 files changed, 568 insertions(+), 174 deletions(-)

diff --git a/public_html/lib/plugins/yalist/.travis.yml 
b/public_html/lib/plugins/yalist/.travis.yml
new file mode 100644
index ..66b3dff5
--- /dev/null
+++ b/public_html/lib/plugins/yalist/.travis.yml
@@ -0,0 +1,30 @@
+dist: trusty
+language: php
+
+php:
+  - "nightly"
+  - "7.1"
+  - "7.0"
+  - "5.6"
+  - "hhvm"
+
+matrix:
+  allow_failures:
+- php: "hhvm"
+- php: "nightly"
+  env: DOKUWIKI=stable
+- php: "7.1"
+  env: DOKUWIKI=stable
+
+env:
+  - DOKUWIKI=master
+  - DOKUWIKI=stable
+
+before_install:
+  - wget https://raw.github.com/splitbrain/dokuwiki-travis/master/travis.sh
+
+install:
+  - sh travis.sh
+
+script:
+  - cd _test && PRESERVE_TMP=false phpunit --stderr --group plugin_backlinks 
--verbose --debug
diff --git a/public_html/lib/plugins/yalist/README.md 
b/public_html/lib/plugins/yalist/README.md
index 9deb2ce4..02fed24d 100644
--- a/public_html/lib/plugins/yalist/README.md
+++ b/public_html/lib/plugins/yalist/README.md
@@ -17,3 +17,11 @@ and list items with multiple paragraphs. The complete syntax 
is as follows:
 ```
 
 Lists can be nested within lists, just as in the standard DokuWiki syntax.
+
+
+[![Build 
Status](https://travis-ci.org/mprins/dokuwiki-yalist-plugin.svg?branch=master)](https://travis-ci.org/mprins/dokuwiki-yalist-plugin)
+[![Scrutinizer Code 
Quality](https://scrutinizer-ci.com/g/mprins/dokuwiki-yalist-plugin/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/mprins/dokuwiki-yalist-plugin/?branch=master)
+[![GitHub 
issues](https://img.shields.io/github/issues/mprins/dokuwiki-yalist-plugin.svg)](https://github.com/mprins/dokuwiki-yalist-plugin/issues)
+[![GitHub 
forks](https://img.shields.io/github/forks/mprins/dokuwiki-yalist-plugin.svg)](https://github.com/mprins/dokuwiki-yalist-plugin/network)
+[![GitHub 
stars](https://img.shields.io/github/stars/mprins/dokuwiki-yalist-plugin.svg)](https://github.com/mprins/dokuwiki-yalist-plugin/stargazers)
+[![GitHub 
license](https://img.shields.io/badge/license-GPLv2-blue.svg)](https://raw.githubusercontent.com/mprins/dokuwiki-yalist-plugin/master/LICENSE)
diff --git a/public_html/lib/plugins/yalist/conf/default.php 
b/public_html/lib/plugins/yalist/conf/default.php
new file mode 100644
index ..7e9a0861
--- /dev/null
+++ b/public_html/lib/plugins/yalist/conf/default.php
@@ -0,0 +1,7 @@
+ 
array('list', 'listheader', 'table'));
diff --git a/public_html/lib/plugins/yalist/odt.css 
b/public_html/lib/plugins/yalist/odt.css
new file mode 100644
index ..1023b75d
--- /dev/null
+++ b/public_html/lib/plugins/yalist/odt.css
@@ -0,0 +1,7 @@
+div.dokuwiki .dt {
+margin-right: 1em;
+color: __text_alt__;
+font-weight: bold;
+max-width: 30%;
+float: left;
+}
diff --git a/public_html/lib/plugins/yalist/plugin.info.txt 
b/public_html/lib/plugins/yalist/plugin.info.txt
index f6edfd48..81501cc2 100644
--- a/public_html/lib/plugins/yalist/plugin.info.txt
+++ b/public_html/lib/plugins/yalist/plugin.info.txt
@@ -1,7 +1,7 @@
 baseyalist
 author  Mark C. Prins, previously Ben Slusky
 email   mpr...@users.sf.net
-date2014-05-16
+date2016-08-29
 nameSimple universal list plugin
 descExtend DokuWiki list syntax to allow definition list and multiple 
paragraphs in a list entry
-url https://www.dokuwiki.org/plugin:yalist
\ No newline at end of file
+url https://www.dokuwiki.org/plugin:yalist
diff --git a/public_html/lib/plugins/yalist/style.css 
b/public_html/lib/plugins/yalist/style.css
index b4655ee8..c30b734e 100644
--- a/public_html/lib/plugins/yalist/style.css
+++ b/public_html/lib/plugins/yalist/style.css
@@ -14,12 +14,6 @@ div.dokuwiki .dt {
 float: left;
 }
 
-div.dokuwiki .dt,
-div.dokuwiki .dd,
-div.dokuwiki .li {
-margin-bottom: 0.33em;
-}
-
 div.dokuwiki dd {
 margin-left: 3em;
 }
diff --git a/public_html/lib/plugins/yalist/syntax.php 
b/public_html/lib/plugins/yalist/syntax.php
index bc287148..7304e318 100644
--- a/public_html/lib/plugins/yalist/syntax.php
+++ b/public_html/lib/plugins/yalist/syntax.php
@@ -21,11 +21,18 @@
  * @author Ben Slusky 
  

[EGIT] [website/www] master 03/06: MEDIUM: Update plugin discussion to v2017-08-24

2017-10-14 Thread Bertrand Jacquin
beber pushed a commit to branch master.

http://git.enlightenment.org/website/www.git/commit/?id=838b4b3e069e862a246445d7037074bfa1fd119d

commit 838b4b3e069e862a246445d7037074bfa1fd119d
Author: Bertrand Jacquin 
Date:   Sun Oct 15 04:52:26 2017 +0100

MEDIUM: Update plugin discussion to v2017-08-24
---
 public_html/lib/plugins/discussion/action.php  | 184 ++---
 .../lib/plugins/discussion/conf/default.php|   2 +-
 .../lib/plugins/discussion/conf/metadata.php   |   2 +-
 public_html/lib/plugins/discussion/helper.php  |  16 +-
 .../lib/plugins/discussion/images/updated.gif  | Bin 0 -> 118 bytes
 .../lib/plugins/discussion/lang/ar/settings.php|   1 -
 .../discussion/lang/bg/confirmsubscribe.txt|  10 ++
 .../lib/plugins/discussion/lang/bg/lang.php|  40 +
 .../lib/plugins/discussion/lang/bg/settings.php|  27 +++
 .../plugins/discussion/lang/bg/subscribermail.txt  |  19 +++
 .../lib/plugins/discussion/lang/cs/settings.php|   3 +-
 .../lib/plugins/discussion/lang/da/lang.php|   4 +-
 .../lib/plugins/discussion/lang/da/settings.php|   5 +-
 .../discussion/lang/de-informal/settings.php   |   1 -
 .../lib/plugins/discussion/lang/de/lang.php|   8 +-
 .../lib/plugins/discussion/lang/de/settings.php|   6 +-
 .../lib/plugins/discussion/lang/el/settings.php|   1 -
 .../lib/plugins/discussion/lang/en/settings.php|   2 +-
 .../discussion/lang/eo/confirmsubscribe.txt|   5 +-
 .../lib/plugins/discussion/lang/eo/lang.php|   4 +-
 .../lib/plugins/discussion/lang/eo/settings.php|  13 +-
 .../plugins/discussion/lang/eo/subscribermail.txt  |   6 +-
 .../lib/plugins/discussion/lang/es/settings.php|   1 -
 .../discussion/lang/fa/confirmsubscribe.txt|   9 +
 .../lib/plugins/discussion/lang/fa/lang.php|  40 +
 .../lib/plugins/discussion/lang/fa/settings.php|  29 
 .../plugins/discussion/lang/fa/subscribermail.txt  |  18 ++
 .../lib/plugins/discussion/lang/fi/settings.php|   1 -
 .../discussion/lang/fr/confirmsubscribe.txt|   4 +-
 .../lib/plugins/discussion/lang/fr/lang.php|   3 +-
 .../lib/plugins/discussion/lang/fr/settings.php|  11 +-
 .../plugins/discussion/lang/fr/subscribermail.txt  |   4 +-
 .../lib/plugins/discussion/lang/hr/settings.php|   2 +-
 .../lib/plugins/discussion/lang/hu/settings.php|   1 -
 .../discussion/lang/it/confirmsubscribe.txt|  10 ++
 .../lib/plugins/discussion/lang/it/lang.php|  80 +
 .../lib/plugins/discussion/lang/it/settings.php|  50 +++---
 .../plugins/discussion/lang/it/subscribermail.txt  |   4 +-
 .../lib/plugins/discussion/lang/ja/lang.php|   5 +-
 .../lib/plugins/discussion/lang/ja/settings.php|   7 +-
 .../discussion/lang/ko/confirmsubscribe.txt|   2 +-
 .../lib/plugins/discussion/lang/ko/lang.php|  26 +--
 .../lib/plugins/discussion/lang/ko/settings.php|  28 ++--
 .../plugins/discussion/lang/ko/subscribermail.txt  |   4 +-
 .../lib/plugins/discussion/lang/nl/settings.php|   3 +-
 .../discussion/lang/no/confirmsubscribe.txt|   9 +
 .../lib/plugins/discussion/lang/no/lang.php|  41 +
 .../lib/plugins/discussion/lang/no/settings.php|  30 
 .../plugins/discussion/lang/no/subscribermail.txt  |  18 ++
 .../lib/plugins/discussion/lang/pt-br/lang.php |   4 +-
 .../lib/plugins/discussion/lang/pt-br/settings.php |   4 +-
 .../lib/plugins/discussion/lang/ru/settings.php|   3 +-
 .../plugins/discussion/lang/{sl-si => sl}/lang.php |   0
 .../discussion/lang/sv/confirmsubscribe.txt|  10 ++
 .../lib/plugins/discussion/lang/sv/lang.php|  84 +-
 .../lib/plugins/discussion/lang/sv/settings.php|  29 
 .../plugins/discussion/lang/sv/subscribermail.txt  |  19 +++
 .../lib/plugins/discussion/lang/tr/lang.php|  51 ++
 .../lib/plugins/discussion/lang/zh-tw/settings.php |   1 -
 .../lib/plugins/discussion/lang/zh/lang.php|  82 +
 .../lib/plugins/discussion/lang/zh/settings.php|  56 +++
 public_html/lib/plugins/discussion/plugin.info.txt |   4 +-
 public_html/lib/plugins/discussion/script.js   |   3 +-
 public_html/lib/plugins/discussion/style.css   |   6 +
 .../lib/plugins/discussion/syntax/comments.php |   2 +-
 65 files changed, 816 insertions(+), 341 deletions(-)

diff --git a/public_html/lib/plugins/discussion/action.php 
b/public_html/lib/plugins/discussion/action.php
index 0cb892c7..99b64342 100644
--- a/public_html/lib/plugins/discussion/action.php
+++ b/public_html/lib/plugins/discussion/action.php
@@ -51,7 +51,14 @@ class action_plugin_discussion extends 
DokuWiki_Action_Plugin{
 'AFTER',
 $this,
 'idx_add_discussion',
-array()
+array('id' => 'page', 'text' => 'body')
+);
+$contr->register_hook(
+

[EGIT] [website/www] master 01/06: MEDIUM: Update plugin anewssystem to v2016-06-02

2017-10-14 Thread Bertrand Jacquin
beber pushed a commit to branch master.

http://git.enlightenment.org/website/www.git/commit/?id=2a83f951ec3d16f640b3128a2257f0951646d241

commit 2a83f951ec3d16f640b3128a2257f0951646d241
Author: Bertrand Jacquin 
Date:   Sun Oct 15 04:52:26 2017 +0100

MEDIUM: Update plugin anewssystem to v2016-06-02
---
 public_html/lib/plugins/anewssystem/INFO   |   2 +-
 public_html/lib/plugins/anewssystem/VERSION|   2 +-
 public_html/lib/plugins/anewssystem/action.php |  13 +-
 .../lib/plugins/anewssystem/conf/default.php   |   3 +-
 .../lib/plugins/anewssystem/conf/metadata.php  |   1 +
 .../lib/plugins/anewssystem/lang/de/lang.php   |  39 ++
 .../lib/plugins/anewssystem/lang/de/settings.php   |   3 +-
 .../lib/plugins/anewssystem/lang/en/lang.php   |  39 ++
 .../lib/plugins/anewssystem/lang/en/settings.php   |   3 +-
 .../lib/plugins/anewssystem/lang/it/settings.php   |   8 +-
 .../lib/plugins/anewssystem/plugin.info.txt|   2 +-
 public_html/lib/plugins/anewssystem/style.css  |  87 +++-
 public_html/lib/plugins/anewssystem/syntax.php | 487 ++---
 public_html/lib/plugins/anewssystem/tpl/fonts.txt  |  30 ++
 14 files changed, 645 insertions(+), 74 deletions(-)

diff --git a/public_html/lib/plugins/anewssystem/INFO 
b/public_html/lib/plugins/anewssystem/INFO
index 56ee566a..a958054a 100644
--- a/public_html/lib/plugins/anewssystem/INFO
+++ b/public_html/lib/plugins/anewssystem/INFO
@@ -2,7 +2,7 @@
 
 author  Taggic
 email   tag...@t-online.de
-date2015-02-11
+date2016-06-02
 nameanewssystem
 descprovides an easy to handle, page based news system
 url http://www.dokuwiki.org/plugin:anewssystem
diff --git a/public_html/lib/plugins/anewssystem/VERSION 
b/public_html/lib/plugins/anewssystem/VERSION
index 27766603..366c2347 100644
--- a/public_html/lib/plugins/anewssystem/VERSION
+++ b/public_html/lib/plugins/anewssystem/VERSION
@@ -1 +1 @@
-2015-02-11
\ No newline at end of file
+2016-06-02
\ No newline at end of file
diff --git a/public_html/lib/plugins/anewssystem/action.php 
b/public_html/lib/plugins/anewssystem/action.php
index 14a85378..1137e0a1 100644
--- a/public_html/lib/plugins/anewssystem/action.php
+++ b/public_html/lib/plugins/anewssystem/action.php
@@ -24,7 +24,7 @@ class action_plugin_anewssystem extends 
DokuWiki_Action_Plugin {
 return array(
  'author' => 'Taggic',
  'email'  => 'tag...@t-online.de',
- 'date'   => '2013-02-19',
+ 'date'   => '2016-06-02',
  'name'   => 'News archive page (action plugin component)',
  'desc'   => 'to show the News aechive alone on a page.',
  'url'=> 'http://www.dokuwiki.org/plugin:anewssystem',
@@ -33,7 +33,7 @@ class action_plugin_anewssystem extends 
DokuWiki_Action_Plugin {
 /**
 **  Register its handlers with the dokuwiki's event controller
 */
- function register(&$controller) {
+ function register(Doku_Event_Handler &$controller) {
  $controller->register_hook('ACTION_ACT_PREPROCESS', 'BEFORE', $this, 
'_handle_act', array());
  $controller->register_hook('TPL_ACT_UNKNOWN', 'BEFORE', $this, 
'output', array());
  }
@@ -219,14 +219,7 @@ class action_plugin_anewssystem extends 
DokuWiki_Action_Plugin {
 $backlink = ''.$this->getLang('lnk_back').'';
 $backlink .= ' |
   '.$this->getLang('allnews').'
 ';
-$output = ''.NL.
-  '
-  
- 
-  '.$backlink.''.NL.
+$output = ''.$backlink.''.NL.
   '
   
   '.$output.'
diff --git a/public_html/lib/plugins/anewssystem/conf/default.php 
b/public_html/lib/plugins/anewssystem/conf/default.php
index dbd14a18..1ed80ac0 100644
--- a/public_html/lib/plugins/anewssystem/conf/default.php
+++ b/public_html/lib/plugins/anewssystem/conf/default.php
@@ -9,8 +9,9 @@ $conf['news_output']   = 'news:allnewsdata';
 $conf['prev_length']   = '500';
 $conf['newsflash_link']= 1;
 $conf['hide_anchorID'] = 1;
+$conf['wysiwyg']   = 0;
 $conf['soapp'] = 0; // soapp = show one article 
per page (instead of all news)
-$conf['yh_level']  = 2; // headline level for year 
clusetr of All News articles
+$conf['yh_level']  = 2; // headline level for year 
cluster of All News articles
 $conf['mh_level']  = 3; // headline level for month 
clusetr of All News articles
 $conf['h_level']   = 4; // headline level for All News 
articles itself
 $conf['lnk_newsarchive']   = 'News Archive ';// text for archive 

[EGIT] [website/www] master 05/06: MEDIUM: Update plugin vshare to v2017-04-27

2017-10-14 Thread Bertrand Jacquin
beber pushed a commit to branch master.

http://git.enlightenment.org/website/www.git/commit/?id=76176dc21c5437d3bf2ed4ee7a6cd39b144a4b0c

commit 76176dc21c5437d3bf2ed4ee7a6cd39b144a4b0c
Author: Bertrand Jacquin 
Date:   Sun Oct 15 04:52:26 2017 +0100

MEDIUM: Update plugin vshare to v2017-04-27
---
 public_html/lib/plugins/vshare/all.css |   4 +
 public_html/lib/plugins/vshare/lang/ko/lang.php|   2 +-
 public_html/lib/plugins/vshare/plugin.info.txt |   2 +-
 public_html/lib/plugins/vshare/sites.conf  |   9 +-
 public_html/lib/plugins/vshare/sites.js|   9 +-
 .../README |  25 ---
 .../all.css|  20 --
 .../button.png | Bin 710 -> 0 bytes
 .../lang/en/lang.php   |   6 -
 .../lang/fr/lang.php   |  10 -
 .../lang/ja/lang.php   |  10 -
 .../lang/ko/lang.php   |  10 -
 .../lang/nl/lang.php   |  10 -
 .../pdf.css|  16 --
 .../plugin.info.txt|   8 -
 .../redir.php  |  22 ---
 .../script.js  | 116 
 .../sites.conf |  26 ---
 .../sites.js   |  31 ---
 .../syntax.php | 209 -
 .../video.png  | Bin 6682 -> 0 bytes
 public_html/lib/plugins/vshare/syntax.php  |  11 +-
 22 files changed, 26 insertions(+), 530 deletions(-)

diff --git a/public_html/lib/plugins/vshare/all.css 
b/public_html/lib/plugins/vshare/all.css
index 380ac82d..4e296d5e 100644
--- a/public_html/lib/plugins/vshare/all.css
+++ b/public_html/lib/plugins/vshare/all.css
@@ -18,3 +18,7 @@ div.vshare__center {
 display: block;
 }
 
+iframe.vshare__none,
+div.vshare__none {
+margin: 1px 3px 1px 3px;
+}
diff --git a/public_html/lib/plugins/vshare/lang/ko/lang.php 
b/public_html/lib/plugins/vshare/lang/ko/lang.php
index 58bab3b3..d09c017e 100644
--- a/public_html/lib/plugins/vshare/lang/ko/lang.php
+++ b/public_html/lib/plugins/vshare/lang/ko/lang.php
@@ -7,4 +7,4 @@
 
 $lang['js']['button'] = '동영상 공유 사이트에서 동영상 넣기';
 $lang['js']['prompt'] = '여기에 동영상 페이지의 전체 URL을 붙여넣으세요:';
-$lang['js']['notfound'] = "죄송하지만 이 URL을 인식할 수 없습니다.\n수동으로 올바른 문법을 넣는 방법에 대해서는 
설명서를 참고하세요.";
+$lang['js']['notfound'] = "죄송하지만 이 URL을 인식할 수 없습니다.\n수동으로 올바른 문법을 넣는 방법에 대해서는 
설명문서를 참조하세요.";
diff --git a/public_html/lib/plugins/vshare/plugin.info.txt 
b/public_html/lib/plugins/vshare/plugin.info.txt
index 9c448b80..e8fcb310 100644
--- a/public_html/lib/plugins/vshare/plugin.info.txt
+++ b/public_html/lib/plugins/vshare/plugin.info.txt
@@ -1,7 +1,7 @@
 basevshare
 author  Andreas Gohr
 email   a...@splitbrain.org
-date2014-11-25
+date2017-04-27
 nameVideo Sharing Site Plugin
 descEasily embed videos from various Video Sharing sites. Example: 
{{youtube>XX}}
 url https://www.dokuwiki.org/plugin:vshare
diff --git a/public_html/lib/plugins/vshare/sites.conf 
b/public_html/lib/plugins/vshare/sites.conf
index 2e8af065..a28c7d6f 100644
--- a/public_html/lib/plugins/vshare/sites.conf
+++ b/public_html/lib/plugins/vshare/sites.conf
@@ -11,6 +11,8 @@ metacafeiframe  http://www.metacafe.com/embed/@VIDEO@/
 bliptv  iframe  //blip.tv/play/@VIDEO@.x?p=1
 break   iframe  //www.break.com/embed/@VIDEO@?embed=1
 msofficeiframe  http://hub.video.msn.com/embed/@VIDEO@/
+archiveorg  iframe  //archive.org/embed/@VIDEO@
+niconicoiframe  http://embed.nicovideo.jp/watch/@VIDEO@
 
 5minflash   http://www.5min.com/Embeded/@VIDEO@/
 clipfishflash   
//www.clipfish.de/cfng/flash/clipfish_player_3.swf?as=0=@VIDEO@=1=extern&
@@ -20,7 +22,6 @@ rcmovie flash   http://www.rcmovie.de/embed/@VIDEO@
 scivee  flash   //www.scivee.tv/flash/embedPlayer.swf?id=@VIDEO@=3
 twitchtvflash   
http://www.twitch.tv/widgets/live_embed_player.swf?channel=@VIDEO@_play=false_volume=25
 veohflash   
//www.veoh.com/videodetails2.swf?player=videodetailsembedded=v=@VIDEO@=anonymous
-
-
-
-
+youku   flash   http://player.youku.com/player.php/sid/@VIDEO@/v.swf
+tudou   flash   
http://www.tudou.com/v/@VIDEO@/=0_05_05_99=05/v.swf
+bilibiliflash   
http://static.hdslb.com/miniloader.swf?aid=@VIDEO@&=1
diff --git a/public_html/lib/plugins/vshare/sites.js 
b/public_html/lib/plugins/vshare/sites.js
index 83f64edb..50abac61 100644
--- a/public_html/lib/plugins/vshare/sites.js
+++ b/public_html/lib/plugins/vshare/sites.js
@@ -25,7 +25,12 @@ var sites = {
 'bliptv':  

[EGIT] [website/www] master 04/06: MEDIUM: Update plugin pagetitle to v2017-09-08

2017-10-14 Thread Bertrand Jacquin
beber pushed a commit to branch master.

http://git.enlightenment.org/website/www.git/commit/?id=2dc3353e3211e1ba6138be39be3c420e315f7813

commit 2dc3353e3211e1ba6138be39be3c420e315f7813
Author: Bertrand Jacquin 
Date:   Sun Oct 15 04:52:26 2017 +0100

MEDIUM: Update plugin pagetitle to v2017-09-08
---
 public_html/lib/plugins/pagetitle/action.php   | 120 +++-
 public_html/lib/plugins/pagetitle/conf/default.php |   7 +
 .../lib/plugins/pagetitle/conf/metadata.php|   7 +
 public_html/lib/plugins/pagetitle/deleted.files|   5 +-
 public_html/lib/plugins/pagetitle/helper.php   |  46 +++
 .../lib/plugins/pagetitle/helper/counter.php   |  41 ++
 .../lib/plugins/pagetitle/lang/en/settings.php |  10 ++
 public_html/lib/plugins/pagetitle/manager.dat  |   2 -
 public_html/lib/plugins/pagetitle/plugin.info.txt  |   4 +-
 .../lib/plugins/pagetitle/syntax/breadcrumb.php|  55 ++--
 .../lib/plugins/pagetitle/syntax/decorative.php| 151 ++---
 .../lib/plugins/pagetitle/syntax/metaonly.php  |  38 --
 .../lib/plugins/pagetitle/syntax/youarehere.php|  50 +--
 13 files changed, 388 insertions(+), 148 deletions(-)

diff --git a/public_html/lib/plugins/pagetitle/action.php 
b/public_html/lib/plugins/pagetitle/action.php
index dda80b11..9c00b388 100644
--- a/public_html/lib/plugins/pagetitle/action.php
+++ b/public_html/lib/plugins/pagetitle/action.php
@@ -13,16 +13,130 @@ class action_plugin_pagetitle extends 
DokuWiki_Action_Plugin {
 /**
  * register the event handlers
  */
-public function register(Doku_Event_Handler $controller) {
-$controller->register_hook('DOKUWIKI_STARTED', 'BEFORE', $this, 
'deleteObsoletedSingleClass');
+function register(Doku_Event_Handler $controller) {
+  //$controller->register_hook('DOKUWIKI_STARTED', 'BEFORE', $this, 
'deleteObsoletedSingleClass');
+$controller->register_hook('INDEXER_VERSION_GET', 'BEFORE', $this, 
'_indexer_version');
+$controller->register_hook('INDEXER_PAGE_ADD', 'BEFORE', $this, 
'_indexer_pagetitle');
+$controller->register_hook('PARSER_METADATA_RENDER', 'AFTER', $this, 
'_parser_render');
+$controller->register_hook('PARSER_CACHE_USE', 'BEFORE', $this, 
'_prepare_cache');
 }
 
 /**
  * Delete syntax.php which is obsoleted since multi-components syntax 
structure
  */
-public function deleteObsoletedSingleClass(Doku_Event $event) {
+function deleteObsoletedSingleClass(Doku_Event $event) {
 $legacyFile = dirname(__FILE__).'/syntax.php';
 if (file_exists($legacyFile)) { unlink($legacyFile); }
 }
 
+
+/**
+ * INDEXER_VERSION_GET
+ * Set a version string to the metadata index so that
+ * the index will be re-created when the version increased
+ */
+function _indexer_version(Doku_Event $event, $param) {
+$event->data['plgin_pagetitle'] = '1.'.$this->getConf('usePersistent');
+}
+
+/**
+ * INDEXER_PAGE_ADD
+ * Add id of the page to metadata index, relevant pages should be found
+ * in data/index/plugin_pagetitle_w.idx file
+ */
+function _indexer_pagetitle(Doku_Event $event, $param) {
+$id = p_get_metadata($event->data['page'], 'plugin pagetitle');
+if ($id) {
+$event->data['metadata']['plugin_pagetitle'] = $id;
+}
+}
+
+
+/**
+ * PAESER_METADATA_RENDER
+ * Use this event to update/reflesh metadata they may have set elseware.
+ * The page metadata is passed including both the current and persistent 
arrays.
+ */
+function _parser_render(Doku_Event $event, $param) {
+global $ID;
+
+/*
+ * The PageTitle plugin will overwrite "title" metadata of the page
+ * with "pagetitle" specified in page source. The page must be rendered
+ * first in xhtml mode to get pagetitle and to stote it on metadata
+ * storage.
+ 
+ * Each metadata storage (.meta file) may be expired or refleshed by
+ * DokuWiki or any plugins at elsewhere in any stage. For example,
+ * metadata will be expired when main config modified. DokuWiki will 
set
+ * again title metadata through calls p_get_first_heading() depending 
on
+ * $conf['useheading"] setting.
+ *
+ * Since page text is not changed, instruction and xhtml cache files 
are
+ * used to set title metadata, there is no chance to handle/render page
+ * source to get pagetitle and to overwite title metadata.
+ * Therfore, the value of "title" metadata will remain wrong with that
+ * pagetitle plugin intended.
+ *
+ * For the purpose to trigger PageTitle plugin's renderer, we 
tentatively
+ * set $ID as "title" to tell DokuWiki caching mechanism so that old
+ * cache need to be purged and metadata must be rebuild again.
+ */
+
+

[EGIT] [website/www-content] master 01/01: Add bitcoin donation

2017-10-14 Thread Bertrand Jacquin
beber pushed a commit to branch master.

http://git.enlightenment.org/website/www-content.git/commit/?id=5a6458863cb3cc34256a5bf901e5fd9f4257b5d0

commit 5a6458863cb3cc34256a5bf901e5fd9f4257b5d0
Author: Bertrand Jacquin 
Date:   Sun Oct 15 04:24:16 2017 +0100

Add bitcoin donation
---
 pages/contribute.txt   | 12 ++--
 pages/donation-buttons.txt |  3 ++-
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/pages/contribute.txt b/pages/contribute.txt
index 08fa8167..268da94a 100644
--- a/pages/contribute.txt
+++ b/pages/contribute.txt
@@ -7,9 +7,9 @@
 If you have free time, help is welcome in different areas:
 
   * Developers: See the [[docs|documentation]], subscribe to the 
[[contact|mailing lists]], create a [[http://phab.enlightenment.org|phab
-account]], have a look at the opened tasks, join [[contact|IRC channel]] to 
get help on how to start coding 
-  * Writers: to help improve the documentation 
-  * Translators: to translate Enlightenment, Terminology, Edi, ...  
+account]], have a look at the opened tasks, join [[contact|IRC channel]] to 
get help on how to start coding
+  * Writers: to help improve the documentation
+  * Translators: to translate Enlightenment, Terminology, Edi, ..
   * Designers: to help to get edje themes of all applications better
 
 === Donate money ===
@@ -20,8 +20,8 @@ Enlightenment project needs money for different reasons:
   * Promote the project by organising or participating in events (FOSDEM, ELC, 
LinuxTag, ...)
   * Buy hardware for developing and testing purposes
 
-Enlightenment Association is a non-profit organisation, under French law. 
Enlightenment association has its own bank account and is responsible for 
running and maintaining the Enlightenment servers.  
+Enlightenment Association is a non-profit organisation, under French law. 
Enlightenment association has its own bank account and is responsible for 
running and maintaining the Enlightenment servers.
 
-Donate to Enlightenment via PayPal or Flattr. You can donate money to the 
project through Enlightenment's PayPal account. There is no minimal amount for 
your donation.  If you click on one of the buttons below, you will be taken to 
the secure PayPal Web site.  You don't need to have a PayPal account in order 
to make a donation.
+Donate to Enlightenment via Bitcoin, PayPal or Flattr. There is no minimal 
amount for your donation.
 
-{{page>donation-buttons}}
\ No newline at end of file
+{{page>donation-buttons}}
diff --git a/pages/donation-buttons.txt b/pages/donation-buttons.txt
index 0f75cc67..f9cdf906 100644
--- a/pages/donation-buttons.txt
+++ b/pages/donation-buttons.txt
@@ -1,3 +1,4 @@
+{{:donate-bitcoin.png?nolink|Donate bitcoin}}
 [[http://flattr.com/thing/418692/Enlightenment|{{:scut-flattr.svg|Flattr}}]]
 {{:scut-pad-sml.svg?nolink}}
-[[https://www.paypal.com/webscr?cmd=_s-xclick_button_id=A5U75JR3FFWFC|{{:scut-paypal.svg|PayPal}}]]
\ No newline at end of file
+[[https://www.paypal.com/webscr?cmd=_s-xclick_button_id=A5U75JR3FFWFC|{{:scut-paypal.svg|PayPal}}]]

-- 




[EGIT] [website/www] master 06/06: MEDIUM: Update plugin note to v2016-09-14

2017-10-14 Thread Bertrand Jacquin
beber pushed a commit to branch master.

http://git.enlightenment.org/website/www.git/commit/?id=7366bb6fbde5723e1a756734f639154bcb4b2519

commit 7366bb6fbde5723e1a756734f639154bcb4b2519
Author: Bertrand Jacquin 
Date:   Sun Oct 15 04:52:26 2017 +0100

MEDIUM: Update plugin note to v2016-09-14
---
 public_html/lib/plugins/note/.gitignore  |   1 -
 public_html/lib/plugins/note/COPYING | 340 +++
 public_html/lib/plugins/note/README.rdoc |  93 
 public_html/lib/plugins/note/info.txt|   8 -
 public_html/lib/plugins/note/plugin.info.txt |   7 +
 public_html/lib/plugins/note/syntax.php  | 229 --
 6 files changed, 599 insertions(+), 79 deletions(-)

diff --git a/public_html/lib/plugins/note/.gitignore 
b/public_html/lib/plugins/note/.gitignore
deleted file mode 100644
index f3c7a7c5..
--- a/public_html/lib/plugins/note/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-Makefile
diff --git a/public_html/lib/plugins/note/COPYING 
b/public_html/lib/plugins/note/COPYING
new file mode 100644
index ..d60c31a9
--- /dev/null
+++ b/public_html/lib/plugins/note/COPYING
@@ -0,0 +1,340 @@
+   GNU GENERAL PUBLIC LICENSE
+  Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+ 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+   Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+   GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are 

[EGIT] [website/www] master 04/06: MEDIUM: Update plugin groupmanager to v2016-08-14

2017-10-14 Thread Bertrand Jacquin
beber pushed a commit to branch master.

http://git.enlightenment.org/website/www.git/commit/?id=d60216b04e4f608bddfa843a976d5032d2aa4fde

commit d60216b04e4f608bddfa843a976d5032d2aa4fde
Author: Bertrand Jacquin 
Date:   Sun Oct 15 04:52:26 2017 +0100

MEDIUM: Update plugin groupmanager to v2016-08-14
---
 public_html/lib/plugins/groupmanager/plugin.info.txt | 2 +-
 public_html/lib/plugins/groupmanager/syntax.php  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/public_html/lib/plugins/groupmanager/plugin.info.txt 
b/public_html/lib/plugins/groupmanager/plugin.info.txt
index c4c278d0..a9e6180c 100644
--- a/public_html/lib/plugins/groupmanager/plugin.info.txt
+++ b/public_html/lib/plugins/groupmanager/plugin.info.txt
@@ -1,7 +1,7 @@
 base   groupmanager
 author Harald Ronge
 email  har...@turtur.nl
-date   2010-11-28
+date   2013-05-27
 name   groupmanager plugin
 desc   Embeddable group manager
 urlhttp://www.turtur.nl/
diff --git a/public_html/lib/plugins/groupmanager/syntax.php 
b/public_html/lib/plugins/groupmanager/syntax.php
index a7aaa0df..c3cda861 100644
--- a/public_html/lib/plugins/groupmanager/syntax.php
+++ b/public_html/lib/plugins/groupmanager/syntax.php
@@ -138,7 +138,7 @@ class syntax_plugin_groupmanager extends 
DokuWiki_Syntax_Plugin
  * Handle match
  */
 // is called without config, but do not know by whom, possibly with literal 
match
-function handle($match, $state, $pos, &$handler)
+function handle($match, $state, $pos, Doku_Handler $handler)
 {
 // groupmanager only
 $data = array(null, $state, $pos);
@@ -171,7 +171,7 @@ class syntax_plugin_groupmanager extends 
DokuWiki_Syntax_Plugin
 /**
  * Render it
  */
-function render($mode, &$renderer, $data)
+function render($mode, Doku_Renderer $renderer, $data)
 {
 // start usermanager
 global $auth;

-- 




[EGIT] [website/www] master 01/06: MEDIUM: Update plugin exttab3 to v2016-06-19

2017-10-14 Thread Bertrand Jacquin
beber pushed a commit to branch master.

http://git.enlightenment.org/website/www.git/commit/?id=f7a5a38b19a16b07f5d1d22a34718b13ca793a3b

commit f7a5a38b19a16b07f5d1d22a34718b13ca793a3b
Author: Bertrand Jacquin 
Date:   Sun Oct 15 04:49:00 2017 +0100

MEDIUM: Update plugin exttab3 to v2016-06-19
---
 public_html/lib/plugins/exttab3/README.md |  10 +-
 public_html/lib/plugins/exttab3/action.php|  10 +-
 public_html/lib/plugins/exttab3/all.less  |  19 ++
 public_html/lib/plugins/exttab3/example.txt   | 100 
 public_html/lib/plugins/exttab3/helper/odt.php| 119 ++
 public_html/lib/plugins/exttab3/images/sample.png | Bin 15655 -> 17177 bytes
 public_html/lib/plugins/exttab3/odt.css   |  17 ++
 public_html/lib/plugins/exttab3/plugin.info.txt   |   4 +-
 public_html/lib/plugins/exttab3/style.css |  13 --
 public_html/lib/plugins/exttab3/syntax.php| 263 +++---
 10 files changed, 402 insertions(+), 153 deletions(-)

diff --git a/public_html/lib/plugins/exttab3/README.md 
b/public_html/lib/plugins/exttab3/README.md
index 75bb27d6..d10fb84b 100644
--- a/public_html/lib/plugins/exttab3/README.md
+++ b/public_html/lib/plugins/exttab3/README.md
@@ -1,12 +1,12 @@
-DokuWiki plugin ExtTab3
-===
+Extended Table Syntax for DokuWiki
+==
 
 The third trial to implement extended (MediaWiki-style) table syntax in 
DokuWiki
 
 Syntax
 --
 
-http://www.mediawiki.org/wiki/Help:Tables
+https://www.mediawiki.org/wiki/Help:Tables
 
 | markup | description |
 |:-- |:--  |
@@ -21,6 +21,6 @@ http://www.mediawiki.org/wiki/Help:Tables
 Licensed under the GNU Public License (GPL) version 2
 
 More infomation is available:
-  * http://www.dokuwiki.org/plugin:exttab3
+  * https://www.dokuwiki.org/plugin:exttab3
 
-(c) 2014 Satoshi Sahara \
+(c) 2014-2017 Satoshi Sahara \
diff --git a/public_html/lib/plugins/exttab3/action.php 
b/public_html/lib/plugins/exttab3/action.php
index 7f87a0ea..9bf3878a 100644
--- a/public_html/lib/plugins/exttab3/action.php
+++ b/public_html/lib/plugins/exttab3/action.php
@@ -10,8 +10,6 @@
 
 // must be run within Dokuwiki
 if(!defined('DOKU_INC')) die();
-if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
-require_once(DOKU_PLUGIN.'action.php');
 
 class action_plugin_exttab3 extends DokuWiki_Action_Plugin {
 
@@ -22,16 +20,16 @@ class action_plugin_exttab3 extends DokuWiki_Action_Plugin {
 $controller->register_hook('TOOLBAR_DEFINE', 'AFTER', $this, 
'handle_toolbar', array ());
 }
 
-public function handle_toolbar(&$event, $param) {
+public function handle_toolbar(Doku_Event $event, $param) {
 $event->data[] = array (
 'type' => 'picker',
 'title' => 'extended table typical patterns',
-'icon' => DOKU_BASE.'lib/plugins/exttab3/images/table.png',
+'icon' => DOKU_REL.'lib/plugins/exttab3/images/table.png',
 'list' => array(
 array(
 'type'   => 'format',
 'title'  => 'Definition table',
-'icon'   => DOKU_BASE.'lib/plugins/exttab3/images/d.png',
+'icon'   => DOKU_REL.'lib/plugins/exttab3/images/d.png',
 'sample' => 'term',
 'open'   => '\n{|\n|-\n! ',
 'close'  => ' || description\n|}\n',
@@ -40,7 +38,7 @@ class action_plugin_exttab3 extends DokuWiki_Action_Plugin {
 array(
 'type'   => 'format',
 'title'  => 'longer cell content',
-'icon'   => 
DOKU_BASE.'lib/plugins/exttab3/images/table.png',
+'icon'   => 
DOKU_REL.'lib/plugins/exttab3/images/table.png',
 'sample' => 'table caption',
 'open'   => '\n{| style=""\n|+ ',
 'close'  => '\n!\nA1\n!\nB1\n|-\n|\nA2\n|\nB2\n|}\n',
diff --git a/public_html/lib/plugins/exttab3/all.less 
b/public_html/lib/plugins/exttab3/all.less
new file mode 100644
index ..baaffd47
--- /dev/null
+++ b/public_html/lib/plugins/exttab3/all.less
@@ -0,0 +1,19 @@
+/**
+ * DokuWiki Plugin ExtTab3: all.less
+ */
+table.exttable {
+  td > p:last-child {
+// background-color: #00ccff;
+margin-bottom: 0;
+  }
+}
+
+table.exttable.design {
+  ul {
+padding-left: 0em;
+  }
+  ol {
+padding-left: 0em;
+  }
+}
+
diff --git a/public_html/lib/plugins/exttab3/example.txt 
b/public_html/lib/plugins/exttab3/example.txt
new file mode 100644
index ..1add87ee
--- /dev/null
+++ b/public_html/lib/plugins/exttab3/example.txt
@@ -0,0 +1,100 @@
+== Examples for the Extended Table ==
+[[doku>plugin:exttab3]]
+  * http://www.mediawiki.org/wiki/Help:Tables
+  * http://meta.wikimedia.org/wiki/Help:Table
+
+= Quick example =
+

[EGIT] [website/www] master 02/06: MEDIUM: Update plugin folded to v2017-05-30

2017-10-14 Thread Bertrand Jacquin
beber pushed a commit to branch master.

http://git.enlightenment.org/website/www.git/commit/?id=ff7e25de215d795ef618b2ab15cf91775f8a661d

commit ff7e25de215d795ef618b2ab15cf91775f8a661d
Author: Bertrand Jacquin 
Date:   Sun Oct 15 04:52:26 2017 +0100

MEDIUM: Update plugin folded to v2017-05-30
---
 public_html/lib/plugins/folded/action.php  |  27 ++
 public_html/lib/plugins/folded/conf/default.php|   4 +-
 public_html/lib/plugins/folded/conf/metadata.php   |   2 +
 public_html/lib/plugins/folded/lang/cs/lang.php|  19 +++
 .../lib/plugins/folded/lang/cs/settings.php|   9 
 public_html/lib/plugins/folded/lang/de/lang.php|   4 +-
 .../lib/plugins/folded/lang/de/settings.php|   2 +
 public_html/lib/plugins/folded/lang/en/lang.php|   4 +-
 .../lib/plugins/folded/lang/en/settings.php|   2 +
 public_html/lib/plugins/folded/lang/fa/lang.php|  11 
 .../lib/plugins/folded/lang/fa/settings.php|   9 
 public_html/lib/plugins/folded/lang/fr/lang.php|   4 +-
 .../lib/plugins/folded/lang/fr/settings.php|   5 +-
 public_html/lib/plugins/folded/lang/no/lang.php|  19 +++
 .../lib/plugins/folded/lang/no/settings.php|   9 
 public_html/lib/plugins/folded/lang/tr/lang.php|  21 
 .../lib/plugins/folded/lang/tr/settings.php|  10 
 .../plugins/folded/pagetools-close-open-sprite.png | Bin 0 -> 369 bytes
 public_html/lib/plugins/folded/plugin.info.txt |   2 +-
 public_html/lib/plugins/folded/script.js   |  43 ++-
 public_html/lib/plugins/folded/style.css   |  22 
 public_html/lib/plugins/folded/syntax/div.php  |  17 --
 public_html/lib/plugins/folded/syntax/header.php   |  60 +
 public_html/lib/plugins/folded/syntax/span.php |  17 --
 24 files changed, 269 insertions(+), 53 deletions(-)

diff --git a/public_html/lib/plugins/folded/action.php 
b/public_html/lib/plugins/folded/action.php
index 3c3b097a..5333f375 100644
--- a/public_html/lib/plugins/folded/action.php
+++ b/public_html/lib/plugins/folded/action.php
@@ -18,6 +18,7 @@ class action_plugin_folded extends DokuWiki_Action_Plugin {
  */
 function register(Doku_Event_Handler $controller) {
 $controller->register_hook('DOKUWIKI_STARTED', 'AFTER', $this, 
'addhidereveal');
+$controller->register_hook('TEMPLATE_PAGETOOLS_DISPLAY', 'BEFORE', 
$this, 'add_button', array());
 }
 
 /**
@@ -37,4 +38,30 @@ class action_plugin_folded extends DokuWiki_Action_Plugin {
 'reveal' => $reveal
 );
 }
+
+/**
+ * Add 'fold/unfold all'-button to pagetools
+ *
+ * @param Doku_Event $event
+ * @param mixed  $param not defined
+ */
+public function add_button(&$event, $param) {
+global $ID, $REV;
+
+if($this->getConf('show_fold_unfold_all_button') && 
$event->data['view'] == 'main') {
+$params = array('do' => 'fold_unfold_all');
+if($REV) $params['rev'] = $REV;
+
+// insert button at position before last (up to top)
+$event->data['items'] = array_slice($event->data['items'], 0, -1, 
true) +
+array('fold_unfold_all' =>
+  ''
+  .''
+  
.''.$this->getLang('fold_unfold_all_button').''
+  .''
+  .''
+) +
+array_slice($event->data['items'], -1 , 1, 
true);
+}
+}
 }
diff --git a/public_html/lib/plugins/folded/conf/default.php 
b/public_html/lib/plugins/folded/conf/default.php
index d129325f..4dd5801d 100644
--- a/public_html/lib/plugins/folded/conf/default.php
+++ b/public_html/lib/plugins/folded/conf/default.php
@@ -5,4 +5,6 @@
  * @authorChristopher Smith 
  */
 $conf['hide'] = '';// hide tooltip, if empty will use localised 
string
-$conf['reveal'] = '';  // reveal tooltip, if empty will use localised 
string
\ No newline at end of file
+$conf['reveal'] = '';  // reveal tooltip, if empty will use localised 
string
+$conf['unfold_default'] = 0;   // unfold all text per default
+$conf['show_fold_unfold_all_button'] = 1;   // show a button in the 
pagetool-area that folds/unfolds all texts of the current page
diff --git a/public_html/lib/plugins/folded/conf/metadata.php 
b/public_html/lib/plugins/folded/conf/metadata.php
index 797bea31..758ce243 100644
--- a/public_html/lib/plugins/folded/conf/metadata.php
+++ b/public_html/lib/plugins/folded/conf/metadata.php
@@ -6,3 +6,5 @@
  */
 $meta['hide']  = array('string');
 $meta['reveal'] = array('string');
+$meta['unfold_default'] = array('onoff');
+$meta['show_fold_unfold_all_button'] = array('onoff');

[EGIT] [website/www] master 05/06: MEDIUM: Update plugin include to v2017-08-24

2017-10-14 Thread Bertrand Jacquin
beber pushed a commit to branch master.

http://git.enlightenment.org/website/www.git/commit/?id=01dce5c7613a9daffc44175477c1cf862a0e7198

commit 01dce5c7613a9daffc44175477c1cf862a0e7198
Author: Bertrand Jacquin 
Date:   Sun Oct 15 04:52:26 2017 +0100

MEDIUM: Update plugin include to v2017-08-24
---
 public_html/lib/plugins/include/.travis.yml| 13 
 .../include/_test/locallink_conversion.test.php|  3 +
 .../_test/media_linktitle_conversion.test.php  |  5 +-
 .../include/_test/namespace_includes.test.php  | 46 --
 .../plugins/include/_test/nested_include.test.php  | 12 +++-
 .../include/_test/pagemove_support.test.php| 70 +++--
 .../lib/plugins/include/_test/safeindex.test.php   |  5 +-
 public_html/lib/plugins/include/action.php | 19 --
 public_html/lib/plugins/include/conf/default.php   |  2 +-
 public_html/lib/plugins/include/conf/metadata.php  |  2 +-
 public_html/lib/plugins/include/helper.php | 42 +++--
 public_html/lib/plugins/include/lang/ar/lang.php   |  4 +-
 .../lib/plugins/include/lang/ar/settings.php   |  7 +--
 .../lib/plugins/include/lang/cs/settings.php   | 54 +---
 .../lib/plugins/include/lang/da/settings.php   |  1 -
 .../lib/plugins/include/lang/de-informal/lang.php  | 10 ++-
 .../plugins/include/lang/de-informal/settings.php  | 64 ++-
 public_html/lib/plugins/include/lang/de/lang.php   |  4 +-
 .../lib/plugins/include/lang/de/settings.php   | 26 
 .../lib/plugins/include/lang/en/settings.php   | 46 +++---
 .../lib/plugins/include/lang/eo/settings.php   |  3 +-
 .../lib/plugins/include/lang/es/settings.php   |  1 -
 .../lib/plugins/include/lang/fr/settings.php   | 58 +-
 public_html/lib/plugins/include/lang/hu/lang.php   | 13 ++--
 .../lib/plugins/include/lang/hu/settings.php   | 45 +++---
 .../lib/plugins/include/lang/it/settings.php   |  1 -
 public_html/lib/plugins/include/lang/ja/lang.php   | 12 ++--
 .../lib/plugins/include/lang/ja/settings.php   | 71 +++---
 public_html/lib/plugins/include/lang/ko/lang.php   |  2 +-
 .../lib/plugins/include/lang/ko/settings.php   | 10 +--
 public_html/lib/plugins/include/lang/nl/lang.php   |  4 +-
 .../lib/plugins/include/lang/nl/settings.php   |  7 ++-
 public_html/lib/plugins/include/lang/ru/lang.php   |  2 +-
 .../lib/plugins/include/lang/ru/settings.php   | 19 +-
 .../plugins/include/lang/{sl-si => sl}/lang.php|  0
 .../include/lang/{sl-si => sl}/settings.php|  2 -
 public_html/lib/plugins/include/lang/sv/lang.php   | 12 ++--
 .../lib/plugins/include/lang/sv/settings.php   | 47 ++
 .../lib/plugins/include/lang/tr/settings.php   |  1 -
 .../lib/plugins/include/lang/zh/settings.php   |  3 +-
 public_html/lib/plugins/include/plugin.info.txt|  2 +-
 public_html/lib/plugins/include/requirements.txt   |  2 +
 public_html/lib/plugins/include/style.css  |  6 ++
 public_html/lib/plugins/include/syntax/footer.php  | 22 +++
 public_html/lib/plugins/include/syntax/include.php | 11 +++-
 45 files changed, 503 insertions(+), 288 deletions(-)

diff --git a/public_html/lib/plugins/include/.travis.yml 
b/public_html/lib/plugins/include/.travis.yml
new file mode 100644
index ..ad570ad3
--- /dev/null
+++ b/public_html/lib/plugins/include/.travis.yml
@@ -0,0 +1,13 @@
+language: php
+php:
+  - "5.6"
+  - "5.5"
+  - "5.4"
+  - "5.3"
+env:
+  - DOKUWIKI=master
+  - DOKUWIKI=stable
+  - DOKUWIKI=old-stable
+before_install: wget 
https://raw.github.com/splitbrain/dokuwiki-travis/master/travis.sh
+install: sh travis.sh
+script: cd _test && phpunit --stderr --group plugin_include
diff --git 
a/public_html/lib/plugins/include/_test/locallink_conversion.test.php 
b/public_html/lib/plugins/include/_test/locallink_conversion.test.php
index b3442377..aa34ae28 100644
--- a/public_html/lib/plugins/include/_test/locallink_conversion.test.php
+++ b/public_html/lib/plugins/include/_test/locallink_conversion.test.php
@@ -4,6 +4,9 @@ if (!defined('DOKU_INC')) die();
 
 /**
  * Test the conversion of local links to internal links if the page hasn't 
been fully included
+ *
+ * @group plugin_include
+ * @group plugins
  */
 class plugin_include_locallink_conversion_test extends DokuWikiTest {
 /** @var helper_plugin_include $helper */
diff --git 
a/public_html/lib/plugins/include/_test/media_linktitle_conversion.test.php 
b/public_html/lib/plugins/include/_test/media_linktitle_conversion.test.php
index 050f9d7b..1d598679 100644
--- a/public_html/lib/plugins/include/_test/media_linktitle_conversion.test.php
+++ b/public_html/lib/plugins/include/_test/media_linktitle_conversion.test.php
@@ -4,6 +4,9 @@ if (!defined('DOKU_INC')) die();
 
 /**
  * Test the conversion of media references in link titles
+ *
+ * @group plugin_include
+ * @group plugins
  */
 class 

[EGIT] [website/www-content] master 01/01: Wiki page beber changed with summary [] by Bertrand Jacquin

2017-10-14 Thread Bertrand Jacquin
WWW-www.enlightenment.org pushed a commit to branch master.

http://git.enlightenment.org/website/www-content.git/commit/?id=877e7e4e4d51ce2c17d84c7224084bbfdc1fe646

commit 877e7e4e4d51ce2c17d84c7224084bbfdc1fe646
Author: Bertrand Jacquin 
Date:   Sat Oct 14 07:39:06 2017 -0700

Wiki page beber changed with summary [] by Bertrand Jacquin
---
 pages/User/beber.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pages/User/beber.txt b/pages/User/beber.txt
index f5a4c076..feecd794 100644
--- a/pages/User/beber.txt
+++ b/pages/User/beber.txt
@@ -1 +1 @@
-Mon, 09 Oct 2017 22:34:48 +0100
+Sat, 14 Oct 2017 15:39:00 +0100
\ No newline at end of file

-- 




[EGIT] [website/www-content] master 02/02: Add bitcoin donation

2017-10-14 Thread Bertrand Jacquin
beber pushed a commit to branch master.

http://git.enlightenment.org/website/www-content.git/commit/?id=eae4845f1de2240a041add1b2742ac4223b5ffc4

commit eae4845f1de2240a041add1b2742ac4223b5ffc4
Author: Bertrand Jacquin 
Date:   Sun Oct 15 04:24:16 2017 +0100

Add bitcoin donation
---
 media/donate-bitcoin.png | Bin 0 -> 4101 bytes
 media/thanks-flattr.svg  |  92 
 media/thanks-paypal.svg  |  98 ---
 pages/start.txt  |   6 +--
 4 files changed, 3 insertions(+), 193 deletions(-)

diff --git a/media/donate-bitcoin.png b/media/donate-bitcoin.png
new file mode 100644
index ..4c5dc4b1
Binary files /dev/null and b/media/donate-bitcoin.png differ
diff --git a/media/thanks-flattr.svg b/media/thanks-flattr.svg
deleted file mode 100644
index 5c553068..
--- a/media/thanks-flattr.svg
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
-http://purl.org/dc/elements/1.1/;
-   xmlns:cc="http://creativecommons.org/ns#;
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
-   xmlns:svg="http://www.w3.org/2000/svg;
-   xmlns="http://www.w3.org/2000/svg;
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
-   width="64"
-   height="64"
-   viewBox="0 0 64 64"
-   id="svg2"
-   version="1.1"
-   inkscape:version="0.91 r13725"
-   sodipodi:docname="thanks-flattr.svg"
-   inkscape:export-filename="/home/raster/C/wc/media/thanks-osuosl.png"
-   inkscape:export-xdpi="45"
-   inkscape:export-ydpi="45">
-  
-  
-
-  
-  
-
-  
-image/svg+xml
-http://purl.org/dc/dcmitype/StillImage; />
-
-  
-
-  
-  
-
-  
-  
-
-  
-
diff --git a/media/thanks-paypal.svg b/media/thanks-paypal.svg
deleted file mode 100644
index a36140c4..
--- a/media/thanks-paypal.svg
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-http://purl.org/dc/elements/1.1/;
-   xmlns:cc="http://creativecommons.org/ns#;
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
-   xmlns:svg="http://www.w3.org/2000/svg;
-   xmlns="http://www.w3.org/2000/svg;
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
-   width="64"
-   height="64"
-   viewBox="0 0 64 64"
-   id="svg2"
-   version="1.1"
-   inkscape:version="0.91 r13725"
-   sodipodi:docname="thanks-paypal.svg"
-   inkscape:export-filename="/home/raster/C/wc/media/thanks-osuosl.png"
-   inkscape:export-xdpi="45"
-   inkscape:export-ydpi="45">
-  
-  
-
-  
-  
-
-  
-image/svg+xml
-http://purl.org/dc/dcmitype/StillImage; />
-
-  
-
-  
-  
-
-  
-  
-  
-
-  
-
diff --git a/pages/start.txt b/pages/start.txt
index 1663a8aa..908b3657 100644
--- a/pages/start.txt
+++ b/pages/start.txt
@@ -56,7 +56,9 @@ We run as an open source project, and have people to 
contribute because they lik
 
 We also have contributions in other ways. A community filing bug reports, as 
well as simple giving feedback, and also entities that help support us.
 
-This entire website runs on a machine bought by donations from developers and 
community. Take a look at 
[[https://flattr.com/thing/418692/Enlightenment|Flattr]] and 
[[https://www.paypal.com/fr/cgi-bin/webscr?cmd=_flow=xq0En08Jejvis-FobL7gIcurPwSau2mb0NIiEt17thKeUiVXD8pnYQAeTXG=5885d80a13c0db1f8e263663d3faee8d4fe1dd75ca3bd4f11d72275b28239088|PayPal]]
 for example. We have a non-profit Enlightenment foundation based in France 
that acts as custodian of such funds until neede [...]
+This entire website runs on a machine bought by donations from developers and 
community. Donations can be made using Bitcoin, 
[[https://flattr.com/thing/418692/Enlightenment|Flattr]] or 
[[https://www.paypal.com/fr/cgi-bin/webscr?cmd=_flow=xq0En08Jejvis-FobL7gIcurPwSau2mb0NIiEt17thKeUiVXD8pnYQAeTXG=5885d80a13c0db1f8e263663d3faee8d4fe1dd75ca3bd4f11d72275b28239088|PayPal]].
 We have a non-profit Enlightenment foundation based in France that acts as 
custodian of such funds un [...]
+
+{{:donate-bitcoin.png?nolink|Donate bitcoin}}
 
 This server is hosted at [[https://osuosl.org/|OSUOSL]] who help many open 
source projects with infrastructure to help them keep running.
 
@@ -66,8 +68,6 @@ Our SSL certificates are provided by 
[[https://www.gandi.net|Gandi.net]].
 
 Many of our **Enlightenment Developer Days** events have been sponsored and 
paid for by [[https://www.samsung.com|Samsung]], and recently hosted by 
[[https://openwide.fr|Openwide]].
 
-[[https://flattr.com/thing/418692/Enlightenment|{{:thanks-flattr.svg|Flattr}}]]
-[[https://www.paypal.com/webscr?cmd=_s-xclick_button_id=A5U75JR3FFWFC|{{:thanks-paypal.svg|PayPal}}]]
 [[https://osuosl.org|{{:thanks-osuosl.svg|OSUOSL}}]]
 [[https://www.easydns.com|{{:thanks-easydns.svg|EasyDNS}}]]
 [[https://www.gandi.net|{{:thanks-gandi.svg|Gandi}}]]


[EGIT] [website/www-content] master 01/02: MINOR: Whitespace cleanup

2017-10-14 Thread Bertrand Jacquin
beber pushed a commit to branch master.

http://git.enlightenment.org/website/www-content.git/commit/?id=96f3d8392cd5d58c0ad54cf4f80b474df3bf6293

commit 96f3d8392cd5d58c0ad54cf4f80b474df3bf6293
Author: Bertrand Jacquin 
Date:   Sun Oct 15 03:48:12 2017 +0100

MINOR: Whitespace cleanup
---
 pages/start.txt | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/pages/start.txt b/pages/start.txt
index 9949d1f7..1663a8aa 100644
--- a/pages/start.txt
+++ b/pages/start.txt
@@ -4,11 +4,11 @@
 {{page>start-event}}
 {{page>start-release}}
 
-{{ :e-logo-title.svg?nolink |}}
+{{:e-logo-title.svg?nolink |}}
 
  Window Manager 
 
-{{  :shot-enlightenment.png?nolink&320}}
+{{:shot-enlightenment.png?nolink&320}}
 
 [[:about-enlightenment|Enlightenment]] started as a project to build a Window 
Manager for X11. That was way back in 1996. It has grown much since. It still 
produces this Window Manager, but it has evolved to also cover Mobile, Wearable 
and TV UI needs for projects such as [[http://www.tizen.org|Tizen]] as well as 
the traditional "desktop" UI. We still push out releases, so see our 
[[:download|download]] page for more details on the latest releases, or see our 
[[:contribute|contribute]] p [...]
 
@@ -20,7 +20,7 @@ We still primarily support Linux for Enlightenment, but there 
is some effort (ba
 
  Libraries 
 
-{{  :diagram-block-efl.svg?nolink&320}}
+{{:diagram-block-efl.svg?nolink&320}}
 
 In the process of developing a Window Manager, A set of libraries were 
developed in order to achieve that goal. These libraries are known collectively 
as [[:about-efl|EFL]]. They cover a range of functionality from main-loop, to 
graphics, scene graphs, networking, widgets, data storage, IPC and much more.
 
@@ -32,21 +32,21 @@ For our libraries, our primary development environment is 
Linux, but we make an
 
  Applications 
 
-{{:shot-terminology.png?nolink&240  }}
+{{:shot-terminology.png?nolink&240}}
 
 We eat our own dog food. We use our libraries not just to make 
[[:about-enlightenment|Enlightenment]] but to also make other applications for 
regular every-day use. We make these applications available for free.
 
-{{  :shot-rage.png?nolink&240}}
+{{:shot-rage.png?nolink&240}}
 
 We have some of the usual suspects like a [[:about-terminology|terminal 
emulator]], a [[:about-rage|video player]], an [[:about-ephoto|image viewer]], 
and even the start of [[:about-edi|an IDE]].
 
 Even [[http://www.tizen.org|native Tizen applications]] use EFL for their 
development because we have focused on remaining lean and still featureful. 
Unlike many traditional toolkits, we have based ourselves around a scene graph 
from the ground up, making EFL very different in nature, yet allowing us to 
seamlessly switch from software rendering to OpenGL or any other mechanism that 
can be put in a render engine for the canvas scene graph engine we call Evas, 
as well as layer widgets and  [...]
 
-{{:shot-edi.png?nolink&240  }}
+{{:shot-edi.png?nolink&240}}
 
 This is by no means a complete list of applications, and we are not done 
making more. We may not have started the traditional way, but are building our 
library over time, and Tizen has another library brewing over there as well.
 
-{{  :shot-2017-08-22_07-54-31.jpg?nolink&240|}}
+{{:shot-2017-08-22_07-54-31.jpg?nolink&240|}}
 
 
 

-- 




[EGIT] [core/efl] master 01/01: update author(hermet) email.

2017-10-14 Thread ChunEon Park
hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=1104ff378943ae4334930369a092a13152062249

commit 1104ff378943ae4334930369a092a13152062249
Author: Hermet Park 
Date:   Sat Oct 14 23:03:51 2017 +0800

update author(hermet) email.
---
 AUTHORS  | 14 +++---
 doc/main.dox |  2 +-
 src/lib/elementary/elm_authors.h |  2 +-
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/AUTHORS b/AUTHORS
index 2a705de5b3..8633377ce8 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -49,7 +49,7 @@ Mike Blumenkrantz 
 Patryk Kaczmarek 
 Igor Murzov 
 Vladislav Brovko 
-Hermet Park 
+Hermet Park 
 Rajeev Ranjan (Rajeev)  
 Subodh Kumar 
 Michelle Legrand 
@@ -120,7 +120,7 @@ Jiyoun Park 
 Myoungwoon Roy Kim(roy_kim)  
 Thierry el Borgi 
 Shilpa Singh  
-Hermet Park 
+Hermet Park 
 Christopher 'devilhorns' Michael 
 Seungsoo Woo 
 Youness Alaoui 
@@ -215,7 +215,7 @@ Jihoon Kim  
 PnB 
 Daniel Juyung Seo  
 Christopher 'devilhorns' Michael 
-Hermet Park 
+Hermet Park 
 xlo...@igalia.com
 Rafael Antognolli 
 Kim Yunhan 
@@ -330,7 +330,7 @@ David Seikel 
 Mikael Sans 
 Jérôme Pinot 
 Rajeev Ranjan (Rajeev)  
-Hermet Park 
+Hermet Park 
 Kim Shinwoo 
 Michael Bouchaud (yoz) 
 WooHyun Jung (woohyun) 
@@ -377,7 +377,7 @@ Davide Andreoli 
 Gustavo Sverzut Barbieri 
 Stefan Schmidt 
 Bruno Dilly 
-Hermet Park 
+Hermet Park 
 Daniel Juyung Seo 
 Doug Newgard 
 Jerome Pinot 
@@ -420,7 +420,7 @@ Samsung SAIT 
 Brett Nash 
 Bruno Dilly 
 Rafael Fonseca 
-Hermet Park 
+Hermet Park 
 Woohyun Jung 
 Jaehwan Kim 
 Wonguk Jeong 
@@ -678,7 +678,7 @@ rustyBSD 
 Haifeng Deng 
 Al Poole 
 Marcel Hollerbach 
-Hermet Park 
+Hermet Park 
 Jeeyong Um 
 SooHye Shin 
 Hosang Kim 
diff --git a/doc/main.dox b/doc/main.dox
index f4731ade7e..a65ef1a580 100644
--- a/doc/main.dox
+++ b/doc/main.dox
@@ -53,7 +53,7 @@
  * @author Chris Ross 
  * @author Christophe Dumez 
  * @author Christopher 'devilhorns' Michael 
- * @author Hermet Park 
+ * @author Hermet Park 
  * @author Corey "atmos" Donohoe 
  * @author dan sinclair 
  * @author Daniel Juyung Seo  
diff --git a/src/lib/elementary/elm_authors.h b/src/lib/elementary/elm_authors.h
index dd9cbd50d5..70265c8daf 100644
--- a/src/lib/elementary/elm_authors.h
+++ b/src/lib/elementary/elm_authors.h
@@ -18,7 +18,7 @@
  * @author Brett Nash 
  * @author Bruno Dilly 
  * @author Rafael Fonseca 
- * @author Hermet (Chuneon Park) 
+ * @author Hermet Park 
  * @author Woohyun Jung 
  * @author Jaehwan Kim 
  * @author Wonguk Jeong 

-- 




[EGIT] [admin/devs] master 01/01: hermet: update email info.

2017-10-14 Thread Hermet Park
hermet pushed a commit to branch master.

http://git.enlightenment.org/admin/devs.git/commit/?id=1909850cc036383b6a9271d4e1fd63b7551f907b

commit 1909850cc036383b6a9271d4e1fd63b7551f907b
Author: Hermet Park 
Date:   Sat Oct 14 22:59:08 2017 +0800

hermet: update email info.
---
 developers/hermet/info.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/developers/hermet/info.txt b/developers/hermet/info.txt
index 7251b0d..17703f1 100644
--- a/developers/hermet/info.txt
+++ b/developers/hermet/info.txt
@@ -2,7 +2,7 @@ Login:hermet
 IRC Nick: Hermet
 Name: Hermet Park
 Location: Seongnam, Korea
-E-Mail:   her...@hermet.pe.kr
+E-Mail:   hermetp...@gmail.com
 WWW:  http://www.hermet.pe.kr
 Managing: evas, elementary, enventor
 Contributing: eina, ecore, edje, expedite

-- 




[EGIT] [tools/expedite] master 01/01: update AUTHORS

2017-10-14 Thread Hermet Park
hermet pushed a commit to branch master.

http://git.enlightenment.org/tools/expedite.git/commit/?id=1587f3e5eaad79c209f3698b10842ae42b3257bb

commit 1587f3e5eaad79c209f3698b10842ae42b3257bb
Author: Hermet Park 
Date:   Sat Oct 14 22:57:00 2017 +0800

update AUTHORS
---
 AUTHORS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/AUTHORS b/AUTHORS
index 2c4215f..bafd467 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -3,6 +3,6 @@ Tim Horton 
 Saumsung Electronics 
 Samsung SAIT 
 Bruno Tarquini 
-ChunEon Park (Hermet) 
+Hermet Park 
 Eduardo Lima (Etrunko) 
 JaEun Choi 

-- 




[EGIT] [tools/enventor] master 01/01: update authors email.

2017-10-14 Thread Hermet Park
hermet pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=3c1bb2c3afe797136dd43ccf335b942a33431033

commit 3c1bb2c3afe797136dd43ccf335b942a33431033
Author: Hermet Park 
Date:   Sat Oct 14 22:54:27 2017 +0800

update authors email.
---
 AUTHORS  | 2 +-
 configure.ac | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/AUTHORS b/AUTHORS
index 98731f0..f88bd41 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,4 +1,4 @@
-Hermet Park 
+Hermet Park 
 Cedric Bail 
 Raoul Hecky 
 Daniel Juyung Seo 
diff --git a/configure.ac b/configure.ac
index 39da4f5..85fd62a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,7 +17,7 @@ m4_define([lt_age], v_min)
 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
 
-AC_INIT(enventor, [v_ver], her...@hermet.pe.kr)
+AC_INIT(enventor, [v_ver], hermetp...@gmail.com)
 AC_PREREQ(2.52)
 AC_CONFIG_SRCDIR(configure.ac)
 AC_CONFIG_MACRO_DIR([m4])

-- 




[EGIT] [tools/edi] master 01/01: welcome: add visual notifcation when fields are empty.

2017-10-14 Thread Al Poole
netstar pushed a commit to branch master.

http://git.enlightenment.org/tools/edi.git/commit/?id=6ad43c27158497d880a2e5b663b545b4b22be539

commit 6ad43c27158497d880a2e5b663b545b4b22be539
Author: Al Poole 
Date:   Sat Oct 14 13:26:29 2017 +0100

welcome: add visual notifcation when fields are empty.

This is quite subtle but I like it.
---
 src/bin/screens/edi_welcome.c | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/src/bin/screens/edi_welcome.c b/src/bin/screens/edi_welcome.c
index 5c26377..ce8ac91 100644
--- a/src/bin/screens/edi_welcome.c
+++ b/src/bin/screens/edi_welcome.c
@@ -305,6 +305,13 @@ _edi_welcome_project_new_create_cb(void *data EINA_UNUSED, 
Evas_Object *obj EINA
 edi_create_efl_project(template->skeleton_path, path, name, url, user, 
email,
_edi_welcome_project_new_create_done_cb);
  }
+   else
+ {
+if (path && !path[0])
+  elm_object_focus_set(_create_inputs[0], EINA_TRUE);
+else if (name && !name[0])
+  elm_object_focus_set(_create_inputs[1], EINA_TRUE);
+ }
 }
 
 static int

--