Changeset 2385
- Timestamp:
- 06/22/10 11:50:17 (3 years ago)
- Location:
- plugins/memCache
- Files:
-
- 4 edited
-
_define.php (modified) (2 diffs)
-
_post_config.php (modified) (1 diff)
-
_prepend.php (modified) (4 diffs)
-
class.cache.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
plugins/memCache/_define.php
r1402 r2385 4 4 # This file is part of MemCache, a plugin for Dotclear 2. 5 5 # 6 # Copyright (c) 2008-20 09 Alain Vagner, Pepand contributors6 # Copyright (c) 2008-2010 Pep, Alain Vagner and contributors 7 7 # Licensed under the GPL version 2.0 license. 8 8 # See LICENSE file or … … 10 10 # 11 11 # -- END LICENSE BLOCK ------------------------------------ 12 if (!defined('DC_RC_PATH')) { return; }12 if (!defined('DC_RC_PATH')) return; 13 13 14 14 $this->registerModule( 15 15 /* Name */ "MemCache", 16 16 /* Description*/ "Blog pages cache using memcached", 17 /* Author */ " Alain Vagner, Pepand contributors",18 /* Version */ '1.0- beta4',17 /* Author */ "Pep, Alain Vagner and contributors", 18 /* Version */ '1.0-RC1', 19 19 /* Permissions */ null 20 20 ); -
plugins/memCache/_post_config.php
r1390 r2385 4 4 # This file is part of MemCache, a plugin for Dotclear 2. 5 5 # 6 # Copyright (c) 2008-20 09 Alain Vagner, Pepand contributors6 # Copyright (c) 2008-2010 Pep, Alain Vagner and contributors 7 7 # Licensed under the GPL version 2.0 license. 8 8 # See LICENSE file or -
plugins/memCache/_prepend.php
r982 r2385 4 4 # This file is part of MemCache, a plugin for Dotclear 2. 5 5 # 6 # Copyright (c) 2008-20 09 Alain Vagner, Pepand contributors6 # Copyright (c) 2008-2010 Pep, Alain Vagner and contributors 7 7 # Licensed under the GPL version 2.0 license. 8 8 # See LICENSE file or … … 10 10 # 11 11 # -- END LICENSE BLOCK ------------------------------------ 12 if (!defined('DC_RC_PATH')) { return; }12 if (!defined('DC_RC_PATH')) return; 13 13 14 14 if (!defined('DC_MC_CACHE_ENABLE')) { … … 42 42 class dcMemCacheBehaviors 43 43 { 44 public static function urlHandlerServeDocument( &$result)44 public static function urlHandlerServeDocument($result) 45 45 { 46 46 try … … 70 70 } 71 71 72 public static function publicBeforeDocument( &$core)72 public static function publicBeforeDocument($core) 73 73 { 74 74 if (!empty($_POST)) return; -
plugins/memCache/class.cache.php
r1404 r2385 4 4 # This file is part of MemCache, a plugin for Dotclear 2. 5 5 # 6 # Copyright (c) 2008-20 09 Alain Vagner, Pepand contributors6 # Copyright (c) 2008-2010 Pep, Alain Vagner and contributors 7 7 # Licensed under the GPL version 2.0 license. 8 8 # See LICENSE file or
Note: See TracChangeset
for help on using the changeset viewer.