? aa
Index: Cache.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cacherouter/Cache.php,v
retrieving revision 1.1.2.15
diff -u -p -r1.1.2.15 Cache.php
--- Cache.php	29 Jan 2010 15:17:29 -0000	1.1.2.15
+++ Cache.php	1 Feb 2010 22:08:37 -0000
@@ -6,7 +6,7 @@
  *   Defines the base class for cache engines
  */
 
-class DrupalRouterCache {
+class CacheRouterEngine {
   var $settings = array();
   var $content = array();
   var $prefix;
Index: CacheRouter.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cacherouter/CacheRouter.php,v
retrieving revision 1.1.2.8
diff -u -p -r1.1.2.8 CacheRouter.php
--- CacheRouter.php	29 Jan 2010 15:17:29 -0000	1.1.2.8
+++ CacheRouter.php	1 Feb 2010 22:08:37 -0000
@@ -30,12 +30,12 @@ class CacheRouter {
 
     $this->type[$bin] = $type;
 
-    if (!class_exists($type . 'CacheEngine')) {
+    if (!class_exists($type . 'CacheRouterEngine')) {
       if (!require(dirname(__FILE__) . '/engines/' . $type . '.php')) {
         return FALSE;
       }
     }
-    $cache_engine = $type . 'CacheEngine';
+    $cache_engine = $type . 'CacheRouterEngine';
 
     $options = array();
     if (isset($conf['cacherouter'][$bin])) {
Index: engines/apc.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cacherouter/engines/apc.php,v
retrieving revision 1.1.2.18
diff -u -p -r1.1.2.18 apc.php
--- engines/apc.php	29 Jan 2010 15:17:30 -0000	1.1.2.18
+++ engines/apc.php	1 Feb 2010 22:08:37 -0000
@@ -6,7 +6,7 @@
  *   APC engine class.
  */
 
-class apcCacheEngine extends DrupalRouterCache {
+class apcCacheRouterEngine extends CacheRouterEngine {
   /**
    * page_fast_cache
    *   This tells CacheRouter to use page_fast_cache.
Index: engines/db.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cacherouter/engines/db.php,v
retrieving revision 1.1.2.11
diff -u -p -r1.1.2.11 db.php
--- engines/db.php	29 Jan 2010 15:17:30 -0000	1.1.2.11
+++ engines/db.php	1 Feb 2010 22:08:37 -0000
@@ -6,7 +6,7 @@
  *   Database engine file.
  */
 
-class dbCacheEngine extends DrupalRouterCache {
+class dbCacheRouterEngine extends CacheRouterEngine {
   function page_fast_cache() {
     if ($this->fast_cache === TRUE) {
       require_once './includes/database.inc';
Index: engines/eacc.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cacherouter/engines/eacc.php,v
retrieving revision 1.1.2.15
diff -u -p -r1.1.2.15 eacc.php
--- engines/eacc.php	29 Jan 2010 15:17:30 -0000	1.1.2.15
+++ engines/eacc.php	1 Feb 2010 22:08:37 -0000
@@ -6,7 +6,7 @@
  *   Engine file for eAccelerator.
  */
 
-class eaccCacheEngine extends DrupalRouterCache {
+class eaccCacheRouterEngine extends CacheRouterEngine {
   /**
    * page_fast_cache
    *   This tells CacheRouter to use page_fast_cache.
Index: engines/file.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cacherouter/engines/file.php,v
retrieving revision 1.1.2.20
diff -u -p -r1.1.2.20 file.php
--- engines/file.php	29 Jan 2010 15:17:30 -0000	1.1.2.20
+++ engines/file.php	1 Feb 2010 22:08:38 -0000
@@ -6,7 +6,7 @@
  *   Engine file for file based.
  */
 
-class fileCacheEngine extends DrupalRouterCache {
+class fileCacheRouterEngine extends CacheRouterEngine {
   var $content = array();
   var $fspath = '/tmp/filecache';
 
Index: engines/memcache.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cacherouter/engines/memcache.php,v
retrieving revision 1.1.2.16
diff -u -p -r1.1.2.16 memcache.php
--- engines/memcache.php	29 Jan 2010 19:32:22 -0000	1.1.2.16
+++ engines/memcache.php	1 Feb 2010 22:08:38 -0000
@@ -6,7 +6,7 @@
  *   Engine file for memcache.
  */
 
-class memcacheCacheEngine extends DrupalRouterCache {
+class memcacheCacheRouterEngine extends CacheRouterEngine {
   var $settings = array();
   var $memcache;
 
Index: engines/memcached.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cacherouter/engines/Attic/memcached.php,v
retrieving revision 1.1.4.5
diff -u -p -r1.1.4.5 memcached.php
--- engines/memcached.php	29 Jan 2010 19:32:22 -0000	1.1.4.5
+++ engines/memcached.php	1 Feb 2010 22:08:38 -0000
@@ -12,7 +12,7 @@
  *   ---
  */
 
-class memcachedCacheEngine extends DrupalRouterCache {
+class memcachedCacheRouterEngine extends CacheRouterEngine {
   var $settings = array();
   var $memcached;
 
Index: engines/none.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cacherouter/engines/Attic/none.php,v
retrieving revision 1.1.4.3
diff -u -p -r1.1.4.3 none.php
--- engines/none.php	29 Jan 2010 15:17:30 -0000	1.1.4.3
+++ engines/none.php	1 Feb 2010 22:08:38 -0000
@@ -7,7 +7,7 @@
  *   where caching is undesired.  Please be very careful in using this engine.
  */
 
-class noneCacheEngine extends DrupalRouterCache {
+class noneCacheRouterEngine extends CacheRouterEngine {
   var $content = array();
 
   function page_fast_cache() {
Index: engines/xcache.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cacherouter/engines/xcache.php,v
retrieving revision 1.1.2.15
diff -u -p -r1.1.2.15 xcache.php
--- engines/xcache.php	29 Jan 2010 15:17:30 -0000	1.1.2.15
+++ engines/xcache.php	1 Feb 2010 22:08:38 -0000
@@ -6,7 +6,7 @@
  *   Engine file for XCache.
  */
 
-class xcacheCacheEngine extends DrupalRouterCache {
+class xcacheCacheRouterEngine extends CacheRouterEngine {
   /**
    * page_fast_cache
    *   This tells CacheRouter to use page_fast_cache.
