Changeset 2007

Show
Ignore:
Timestamp:
02/09/2008 12:37:51 AM (10 months ago)
Author:
PugFish
Message:

Fixed some driver comments

Location:
trunk/system/libraries/drivers
Files:
11 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/libraries/drivers/Archive/Zip.php

    r1924 r2007  
    55 * $Id$ 
    66 * 
    7  * @package    Cache 
     7 * @package    Archive 
    88 * @author     Kohana Team 
    99 * @copyright  (c) 2007-2008 Kohana Team 
  • trunk/system/libraries/drivers/Cache.php

    r1695 r2007  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    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 
    411 */ 
    512interface Cache_Driver 
  • trunk/system/libraries/drivers/Cache/Apc.php

    r1841 r2007  
    33 * APC-based Cache driver. 
    44 * 
    5  * @package    Cache:APC 
     5 * $Id$ 
     6 * 
     7 * @package    Cache 
    68 * @author     Kohana Team 
    79 * @copyright  (c) 2007-2008 Kohana Team 
  • trunk/system/libraries/drivers/Cache/Eaccelerator.php

    r1841 r2007  
    22/** 
    33 * Eaccelerator-based Cache driver. 
     4 * 
     5 * $Id$ 
    46 * 
    57 * @package    Cache 
     
    1214        public function __construct() 
    1315        { 
    14                 if ( ! extension_loaded('eaccelerator'))  
     16                if ( ! extension_loaded('eaccelerator')) 
    1517                        throw new Kohana_Exception('cache.extension_not_loaded', 'eaccelerator'); 
    1618        } 
  • trunk/system/libraries/drivers/Cache/File.php

    r1918 r2007  
    33 * File-based Cache driver. 
    44 * 
     5 * $Id$ 
     6 * 
    57 * @package    Cache 
    68 * @author     Kohana Team 
    7  * @copyright  (c) 2007 Kohana Team 
     9 * @copyright  (c) 2007-2008 Kohana Team 
    810 * @license    http://kohanaphp.com/license.html 
    911 */ 
  • trunk/system/libraries/drivers/Cache/Memcache.php

    r1841 r2007  
    33 * Memcache-based Cache driver. 
    44 * 
    5  * @package        Cache 
    6  * @author         Kohana Team 
     5 * $Id$ 
     6 * 
     7 * @package    Cache 
     8 * @author     Kohana Team 
    79 * @copyright  (c) 2007-2008 Kohana Team 
    8  * @license        http://kohanaphp.com/license.html 
     10 * @license    http://kohanaphp.com/license.html 
    911 */ 
    1012class Cache_Memcache_Driver implements Cache_Driver { 
  • trunk/system/libraries/drivers/Cache/Sqlite.php

    r1841 r2007  
    33 * SQLite-based Cache driver. 
    44 * 
     5 * $Id$ 
     6 * 
    57 * @package    Cache 
    68 * @author     Kohana Team 
    7  * @copyright  (c) 2007 Kohana Team 
     9 * @copyright  (c) 2007-2008 Kohana Team 
    810 * @license    http://kohanaphp.com/license.html 
    911 */ 
  • trunk/system/libraries/drivers/Cache/Xcache.php

    r1856 r2007  
    33 * Xcache Cache driver. 
    44 * 
    5  * @package    Cache:Xcache 
     5 * $Id$ 
     6 * 
     7 * @package    Cache 
    68 * @author     Kohana Team 
    79 * @copyright  (c) 2007-2008 Kohana Team 
  • trunk/system/libraries/drivers/Image.php

    r1863 r2007  
    11<?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 */ 
    312abstract class Image_Driver { 
    413 
  • trunk/system/libraries/drivers/Image/GD.php

    r1989 r2007  
    11<?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 */ 
    312class Image_GD_Driver extends Image_Driver { 
    413 
     
    240249                // Create the temporary image to copy to 
    241250                $img = $this->imagecreatetransparent($properties['width'], $properties['height']); 
    242          
     251 
    243252                // Execute the resize 
    244253                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  
    11<?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 */ 
    312class Image_ImageMagick_Driver extends Image_Driver { 
    413