Changeset 2007
- Timestamp:
- 02/09/2008 12:37:51 AM (10 months ago)
- Location:
- trunk/system/libraries/drivers
- Files:
-
- 11 modified
-
Archive/Zip.php (modified) (1 diff)
-
Cache.php (modified) (1 diff)
-
Cache/Apc.php (modified) (1 diff)
-
Cache/Eaccelerator.php (modified) (2 diffs)
-
Cache/File.php (modified) (1 diff)
-
Cache/Memcache.php (modified) (1 diff)
-
Cache/Sqlite.php (modified) (1 diff)
-
Cache/Xcache.php (modified) (1 diff)
-
Image.php (modified) (1 diff)
-
Image/GD.php (modified) (2 diffs)
-
Image/ImageMagick.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/drivers/Archive/Zip.php
r1924 r2007 5 5 * $Id$ 6 6 * 7 * @package Cache7 * @package Archive 8 8 * @author Kohana Team 9 9 * @copyright (c) 2007-2008 Kohana Team -
trunk/system/libraries/drivers/Cache.php
r1695 r2007 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * Cache driver interface 3 * Cache driver interface. 4 * 5 * $Id$ 6 * 7 * @package Cache 8 * @author Kohana Team 9 * @copyright (c) 2007-2008 Kohana Team 10 * @license http://kohanaphp.com/license.html 4 11 */ 5 12 interface Cache_Driver -
trunk/system/libraries/drivers/Cache/Apc.php
r1841 r2007 3 3 * APC-based Cache driver. 4 4 * 5 * @package Cache:APC 5 * $Id$ 6 * 7 * @package Cache 6 8 * @author Kohana Team 7 9 * @copyright (c) 2007-2008 Kohana Team -
trunk/system/libraries/drivers/Cache/Eaccelerator.php
r1841 r2007 2 2 /** 3 3 * Eaccelerator-based Cache driver. 4 * 5 * $Id$ 4 6 * 5 7 * @package Cache … … 12 14 public function __construct() 13 15 { 14 if ( ! extension_loaded('eaccelerator')) 16 if ( ! extension_loaded('eaccelerator')) 15 17 throw new Kohana_Exception('cache.extension_not_loaded', 'eaccelerator'); 16 18 } -
trunk/system/libraries/drivers/Cache/File.php
r1918 r2007 3 3 * File-based Cache driver. 4 4 * 5 * $Id$ 6 * 5 7 * @package Cache 6 8 * @author Kohana Team 7 * @copyright (c) 2007 Kohana Team9 * @copyright (c) 2007-2008 Kohana Team 8 10 * @license http://kohanaphp.com/license.html 9 11 */ -
trunk/system/libraries/drivers/Cache/Memcache.php
r1841 r2007 3 3 * Memcache-based Cache driver. 4 4 * 5 * @package Cache 6 * @author Kohana Team 5 * $Id$ 6 * 7 * @package Cache 8 * @author Kohana Team 7 9 * @copyright (c) 2007-2008 Kohana Team 8 * @license http://kohanaphp.com/license.html10 * @license http://kohanaphp.com/license.html 9 11 */ 10 12 class Cache_Memcache_Driver implements Cache_Driver { -
trunk/system/libraries/drivers/Cache/Sqlite.php
r1841 r2007 3 3 * SQLite-based Cache driver. 4 4 * 5 * $Id$ 6 * 5 7 * @package Cache 6 8 * @author Kohana Team 7 * @copyright (c) 2007 Kohana Team9 * @copyright (c) 2007-2008 Kohana Team 8 10 * @license http://kohanaphp.com/license.html 9 11 */ -
trunk/system/libraries/drivers/Cache/Xcache.php
r1856 r2007 3 3 * Xcache Cache driver. 4 4 * 5 * @package Cache:Xcache 5 * $Id$ 6 * 7 * @package Cache 6 8 * @author Kohana Team 7 9 * @copyright (c) 2007-2008 Kohana Team -
trunk/system/libraries/drivers/Image.php
r1863 r2007 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * Image API driver. 4 * 5 * $Id$ 6 * 7 * @package Image 8 * @author Kohana Team 9 * @copyright (c) 2007-2008 Kohana Team 10 * @license http://kohanaphp.com/license.html 11 */ 3 12 abstract class Image_Driver { 4 13 -
trunk/system/libraries/drivers/Image/GD.php
r1989 r2007 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * GD Image Driver. 4 * 5 * $Id$ 6 * 7 * @package Image 8 * @author Kohana Team 9 * @copyright (c) 2007-2008 Kohana Team 10 * @license http://kohanaphp.com/license.html 11 */ 3 12 class Image_GD_Driver extends Image_Driver { 4 13 … … 240 249 // Create the temporary image to copy to 241 250 $img = $this->imagecreatetransparent($properties['width'], $properties['height']); 242 251 243 252 // Execute the resize 244 253 if ($status = imagecopyresampled($img, $this->tmp_image, 0, 0, 0, 0, $properties['width'], $properties['height'], $width, $height)) -
trunk/system/libraries/drivers/Image/ImageMagick.php
r1889 r2007 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * ImageMagick Image Driver. 4 * 5 * $Id$ 6 * 7 * @package Image 8 * @author Kohana Team 9 * @copyright (c) 2007-2008 Kohana Team 10 * @license http://kohanaphp.com/license.html 11 */ 3 12 class Image_ImageMagick_Driver extends Image_Driver { 4 13
