Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | Today | - | ||||
img/ | H | 03-May-2018 | - | |||
orig/ | H | 03-May-2018 | - | 487 | 442 | |
Makefile | H A D | 05-Nov-2009 | 172 | 8 | 7 | |
README | H A D | 05-Nov-2009 | 1.1 KiB | 39 | 25 | |
jquery.pwi.js | H A D | 05-Nov-2009 | 12.5 KiB | 352 | 329 | |
jquery.slimbox2.css | H A D | 05-Nov-2009 | 1.4 KiB | 84 | 70 | |
jquery.slimbox2.js | H A D | 05-Nov-2009 | 4 KiB | 14 | 1 | |
pwi.css | H A D | 05-Nov-2009 | 1.2 KiB | 91 | 77 | |
script.js | H A D | 05-Nov-2009 | 1.4 KiB | 38 | 30 | |
style.css | H A D | 05-Nov-2009 | 2.6 KiB | 174 | 147 | |
syntax.php | H A D | 05-Nov-2009 | 2.3 KiB | 75 | 55 |
README
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