1Picasa web album plugin
2=======================
3
4Author: Christophe Benz <christophe.benz@gmail.com>
5
6Based on PWI: <http://code.google.com/p/pwi/>
7
8Required dokuwiki plugin:
9 * jquery <http://www.dokuwiki.org/plugin:jquery>
10   (maxb.net version <http://maxb.net/blog/2009/02/24/dokuwiki-jquery>)
11
12Installation
13------------
14
15Needs to patch Dokuwiki! Edit inc/plugincontroller.class.php:
16
17        function Doku_Plugin_Controller() {
18            $this->_populateMasterList();
19       +    sort($this->list_enabled);
20        }
21
22Now plugins are sorted alphabetically.
23
24$ mkdir lib/plugins/jquery_picasawebalbum
25
26The picasawebalbum plugin must be loaded after the jquery plugin.
27
28Include all albums of Picasa account
29------------------------------------
30
31Put this tag on a Dokuwiki page : {{picasawebalbum>user_id}}
32For example: {{picasawebalbum>tester}} => http://picasaweb.google.fr/tester
33
34Include a specific album
35------------------------
36
37Put this tag on a Dokuwiki page : {{picasawebalbum>user_id:album_id}}
38For example: {{picasawebalbum>tester:Maui}} => http://picasaweb.google.fr/tester/Maui
39