Changeset 1453
- Timestamp:
- 09/13/09 15:36:33 (14 years ago)
- Location:
- plugins/apercite
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/apercite/ChangeLog
r1339 r1453 1 1 apercite : Apercite is a module to include a thumbnail of your links in your post. 2 3 version 1.0.5 (09/13/2009): 4 * Add new values to choice size a thumbnail (16:10) 2 5 3 6 version 1.0.4 (07/15/2009): -
plugins/apercite/_define.php
r1339 r1453 17 17 /* Description*/ "Apercite is a module to include a thumbnail of your links in your post.", 18 18 /* Author */ "Francis Besset", 19 /* Version */ '1.0. 4',19 /* Version */ '1.0.5', 20 20 /* Permissions */ 'admin' 21 21 ); -
plugins/apercite/inc/lib.apercite.php
r1339 r1453 28 28 29 29 $o = new netHttp(self::apercite_uri,self::apercite_port); 30 $o->setUserAgent('Clearbricks HTTP Client - DotClear 2 - Apercite 1.0. 4');30 $o->setUserAgent('Clearbricks HTTP Client - DotClear 2 - Apercite 1.0.5'); 31 31 return $o->get($path); 32 32 } -
plugins/apercite/index.php
r1339 r1453 114 114 __('Apercite size').' :<br />'. 115 115 form::combo('apercite_size',array( 116 "80x60" => "80x60", 117 "100x75" => "100x75", 118 "120x90" => "120x90", 119 "160x120" => "160x120", 120 "180x135" => "180x135", 121 "240x180" => "240x180", 122 "320x240" => "320x240", 123 "560x420" => "560x420", 124 "640x480" => "640x480", 125 "800x600" => "800x600" 116 '4:3' => array( 117 '80x60' => '80x60', 118 '100x75' => '100x75', 119 '120x90' => '120x90', 120 '160x120' => '160x120', 121 '180x135' => '180x135', 122 '240x180' => '240x180', 123 '320x240' => '320x240', 124 '560x420' => '560x420', 125 '640x480' => '640x480', 126 '800x600' => '800x600' 127 ), 128 '16:10' => array( 129 '80x50' => '80x50', 130 '120x75' => '120x75', 131 '160x100' => '160x100', 132 '200x125' => '200x125', 133 '240x150' => '240x250', 134 '320x200' => '320x200', 135 '560x350' => '560x350', 136 '640x400' => '640x400', 137 '800x500' => '800x500' 138 ) 126 139 ),$core->blog->settings->apercite_size). 127 140 '</label></p>'. -
plugins/apercite/js/apercite-original.js
r1339 r1453 13 13 this.workers = this.options.workers || Array(".post-excerpt", ".post-content"); 14 14 this.baseURL = this.options.baseURL || ""; 15 this.localLink = this.options.localLink || "oui";16 15 this.localLink = this.options.localLink || "oui"; 17 16 this.javascript = this.options.javascript || "oui";
Note: See TracChangeset
for help on using the changeset viewer.