• 大小: 383KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-05
  • 语言: Python
  • 标签: Cheetah  

资源简介

Python27-Cheetah,用于编译Cocos2dx3.0以上版本。

资源截图

代码片段和文件信息

# $Id: CacheRegion.pyv 1.3 2006/01/28 04:19:30 tavis_rudd Exp $
‘‘‘
Cache holder classes for Cheetah:

Cache regions are defined using the #cache Cheetah directive. Each
cache region can be viewed as a dictionary (keyed by cacheRegionID)
handling at least one cache item (the default one). It‘s possible to add
cacheItems in a region by using the ‘varyBy‘ #cache directive parameter as
in the following example::
   #def getArticle
      this is the article content.
   #end def

   #cache varyBy=$getArticleID()
      $getArticle($getArticleID())
   #end cache

The code above will generate a CacheRegion and add new cacheItem for each value
of $getArticleID().
‘‘‘

try:
    from hashlib import md5
except ImportError:
    from md5 import md5

import time
import Cheetah.CacheStore

class CacheIte

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-03-10 16:16  Cheetah\
     文件        4421  2010-07-02 11:17  Cheetah\CacheRegion.py
     文件        6519  2012-07-10 11:11  Cheetah\CacheRegion.pyc
     文件        3027  2010-07-02 11:17  Cheetah\CacheStore.py
     文件        5724  2012-07-10 11:11  Cheetah\CacheStore.pyc
     文件       23973  2010-12-13 11:43  Cheetah\CheetahWrapper.py
     文件       22632  2012-07-10 11:11  Cheetah\CheetahWrapper.pyc
     文件       80397  2010-07-02 11:17  Cheetah\Compiler.py
     文件       75420  2012-07-10 11:11  Cheetah\Compiler.pyc
     文件         528  2010-07-02 11:17  Cheetah\convertTmplPathToModuleName.py
     文件         779  2012-07-10 11:11  Cheetah\convertTmplPathToModuleName.pyc
     文件        2467  2010-07-02 11:17  Cheetah\DirectiveAnalyzer.py
     文件        3959  2012-07-10 11:11  Cheetah\DirectiveAnalyzer.pyc
     文件         592  2010-07-02 11:17  Cheetah\Django.py
     文件         935  2012-07-10 11:11  Cheetah\Django.pyc
     文件        3277  2010-07-02 11:17  Cheetah\DummyTransaction.py
     文件        5529  2012-07-10 11:11  Cheetah\DummyTransaction.pyc
     文件        1755  2010-07-02 11:17  Cheetah\ErrorCatchers.py
     文件        3540  2012-07-10 11:11  Cheetah\ErrorCatchers.pyc
     文件       10664  2010-07-02 11:17  Cheetah\FileUtils.py
     文件       13178  2012-07-10 11:11  Cheetah\FileUtils.pyc
     文件        7639  2010-07-02 11:17  Cheetah\Filters.py
     文件        8561  2012-07-10 11:11  Cheetah\Filters.pyc
     文件        3983  2010-07-02 11:17  Cheetah\ImportHooks.py
     文件        3816  2012-07-10 11:11  Cheetah\ImportHooks.pyc
     文件       17547  2010-07-02 11:17  Cheetah\ImportManager.py
     文件       16881  2012-07-10 11:11  Cheetah\ImportManager.pyc
     目录           0  2014-03-10 16:16  Cheetah\Macros\
     文件        2230  2010-07-02 11:17  Cheetah\Macros\I18n.py
     文件        1707  2012-07-10 11:11  Cheetah\Macros\I18n.pyc
     文件           2  2010-07-02 11:17  Cheetah\Macros\__init__.py
............此处省略88个文件信息

评论

共有 条评论

相关资源