DokuWiki

It's better when it's simple

User Tools

Site Tools


plugin:doodle2

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
plugin:doodle2 [2013-04-02 17:09] 178.12.210.160plugin:doodle2 [2022-07-29 23:57] (current) Klap-in
Line 1: Line 1:
-====== doodle2 plugin ======+====== doodle2 Plugin ======
  
 ---- plugin ---- ---- plugin ----
Line 7: Line 7:
 type       : syntax type       : syntax
 lastupdate : 2011-01-20 lastupdate : 2011-01-20
-compatible : latest version of dokuwikirincewindangua, adora belle+compatible : RincewindAnguaAdora belle, Binky
 depends    :  depends    : 
 conflicts  : doodle conflicts  : doodle
Line 29: Line 29:
    * well documented code    * well documented code
  
-There is a DEMO online on my [[http://wiki.doogie.de/playground/playground|private homepage]]. +There is a DEMO online on my [[http://wiki.doogie.de/playground/playground|private homepage]]. FIXME
  
 It's unbelievable how active this plugin got. I get feedback posts nearly daily. I am only developing this plugin in my spare time. So please understand that I will not be able to implement all requested features. Of course you are free to upload an improved version to github. This is open source after all. It's unbelievable how active this plugin got. I get feedback posts nearly daily. I am only developing this plugin in my spare time. So please understand that I will not be able to implement all requested features. Of course you are free to upload an improved version to github. This is open source after all.
  
 ===== Download and Installation ===== ===== Download and Installation =====
- +Search and install the plugin using the [[plugin:extension|Extension Manager]]. Refer to [[:Plugins]] on how to install plugins manually.
-You can install the plugin with the [[plugin:plugin|Plugin Manager]] and this URL: +
-   * http://public.doogie.de/projects/dokuwiki/doodle-latest.tar.gz +
-Refer to [[:Plugins]] on how to install plugins manually. The content of the archive install into a **lib/plugins/doodle** directory. +
  
 ===== Syntax and Usage ===== ===== Syntax and Usage =====
Line 67: Line 63:
 ===== Authentication ===== ===== Authentication =====
  
-By default anyone can vote, even multiple times under different name. In this mode users cannot change their vote, once they submitted it. \\ +By default anyone can vote, even multiple times under different name. In this mode users cannot change their vote, once they submitted it. 
-You can prevent multiple votes, by setting ''auth="IP"''. Then users will be authenticated by their IP address((which is **not** a very good way of authenticating users. But at least it requires no registration.)) \\ + 
-If you set ''auth="user"'' then only registered and logged in users are allowed to vote. This has the advantage, that users later on can edit their vote, i.e. change their mind. In this mode, the users fullname and login name are automatically set for the vote. ((You have no idea how complicated this can get. But don't worry, the plugin takes care of all that. For example, let's assume someone starts an open vote, and after some votes changes this to ''auth="user"''. Now user "Peter" logs in. But someone (maybe anyone) may already have voted with the name "Peter". In this case, this becomes Peters vote, and he might change it.))+You can prevent multiple votes, by setting ''%%auth="IP"%%''. Then users will be authenticated by their IP address((which is **not** a very good way of authenticating users. But at least it requires no registration.))
 + 
 +If you set ''%%auth="user"%%'' then only registered and logged in users are allowed to vote. This has the advantage, that users later on can edit their vote, i.e. change their mind. In this mode, the users fullname and login name are automatically set for the vote.((You have no idea how complicated this can get. But don't worry, the plugin takes care of all that. For example, let's assume someone starts an open vote, and after some votes changes this to ''%%auth="user"%%''. Now user "Peter" logs in. But someone (maybe anyone) may already have voted with the name "Peter". In this case, this becomes Peters vote, and he might change it.))
  
 ===== GitHub ===== ===== GitHub =====
Line 129: Line 127:
 Some a11y would be nice. All options are empty cells (no label, id or title). If you have multiple options it is very difficult or even impossible for a blind person to use this. //2013-01-27 kvr// Some a11y would be nice. All options are empty cells (no label, id or title). If you have multiple options it is very difficult or even impossible for a blind person to use this. //2013-01-27 kvr//
  
 +----
 +==== Icons missing in "Binky" ====
 +Installing the PlugIn works ok, but on reviewing a doodle, the icons for 'edit' and 'delete' are missing.
 +> It appears that these were supposed to be in the dokuwiki image folder but aren't anymore:
 +> src="/dokuwiki/lib/images/pencil.png" and src="/dokuwiki/lib/images/del.png"
 +>> Solution: Have a look at the WRAP-PlugIn, which uses the famfamfam icon set from: http://www.famfamfam.com/lab/icons/silk/, I downloaded the set and put the pencil.png and the cancel.png into /dokuwiki/lib/images/, renamed //cancel// to //del//.
 +>> A proper fix would be to relocate the icons into the doodle internal folder. 
 +>>  --- [[user>Arthor|Arthor]] //2014/03/16 17:43//
 +
 +----
 +==== Feature: Prefer auth=none ====
 +//Problem:// In my DokuWiki-installation, all users are logged in with a general 'guest' login. Every guest should be able to vote - but isn't allowed to because the login-information takes precedence over the doodle-auth='none' configuration.
 +> //Solution:// This can be improved without affecting any other functionality, (Using //Binky// and Version 4.0 of the PlugIn) by changing two locations inside '//syntax.php//':  --- [[user>Arthor|Arthor]] //2014/03/16 18:20//
 +<code>
 +@lines 373ff:
 +-        //do not vote twice, unless change__vote is set
 +-        if (isset($this->doodle["$fullname"]) && !isset($_REQUEST['change__vote']) ) {
 +-            $this->template['msg'] = $this->getLang('you_voted_already');
 +-            return;
 +-        }
 ++        //do not vote twice, unless change__vote is set or no authentication required
 ++        if (isset($this->doodle["$fullname"]) && ($this->params['auth'] > self::AUTH_NONE) && (!isset($_REQUEST['change__vote']))) {
 ++            $this->template['msg'] = $this->getLang('you_voted_already');
 ++            return;
 ++        }
 +@lines 488ff:
 +-            if (isset($this->template['editEntry'])) {
 +-                $fullname = $this->template['editEntry']['fullname'];
 +-                $editMode = true;
 +-            } else {
 +-                if (isset($this->doodle["$fullname"]) ) return '';
 +-            }
 ++            if (isset($this->template['editEntry'])) {
 ++                $fullname = $this->template['editEntry']['fullname'];
 ++                $editMode = true;
 ++            } else {
 ++                if ($this->params['auth'] == self::AUTH_NONE) {
 ++                    $fullname = '';
 ++                } else {
 ++                    if (isset($this->doodle["$fullname"]) ) return '';
 ++                }
 ++            }
 +</code>
 +
 +==== Icons in Ponder Stibbons ====
 +
 +If you want to show the icons you have to get it from an old version of dokuwiki: \\
 +the files ''delete.png'' and ''pencil.png'' have to be contained in the folder ''lib>>images''
plugin/doodle2.1364915387.txt.gz · Last modified: 2013-04-02 17:09 by 178.12.210.160

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki