Chinaunix首页 | 论坛 | 博客
  • 博客访问: 457384
  • 博文数量: 64
  • 博客积分: 3271
  • 博客等级: 中校
  • 技术积分: 727
  • 用 户 组: 普通用户
  • 注册时间: 2009-07-30 18:42
文章分类

全部博文(64)

文章存档

2013年(1)

2011年(19)

2010年(42)

2009年(2)

分类: 系统运维

2011-01-12 20:58:07

web中有css,images,js文件时候,就要显示的告诉cherrypy,不然会出错

假设文件存放如下:
  1. web\
  2. ----view\
  3.     ----css
  4.     ----images
  5.     ----scripts
则配置文件web.conf如下:

  1. [/]
  2. tools.staticdir.root = '/path/to/web/view'
  3. [/css]
  4. tools.staticdir.on = True
  5. tools.staticdir.dir = 'css'

  6. [/scripts]
  7. tools.staticdir.on = True
  8. tools.staticdir.dir = 'scripts'
  9. [/images]
  10. tools.staticdir.dir = 'images'

源文件相应改变:
  1. cherrypy.quickstart(Root(),'/','web.conf')


顺便一提,在使用mako的
     
  1. tmpl = lookup.get_template('detail.tpl')
  2.         return tmpl.render_unicode()
时,detail.tpl文件中必须有# -*-encoding:utf-8 -*- 标记,以标示文档为utf-8编码,不然会出现
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe5 in position 712: ordinal not in range(128)
而且get_template函数中的参数即文件名不能有特殊字符如de_tail.tpl就不行。

阅读(3520) | 评论(0) | 转发(0) |
0

上一篇:sqlalchemy使用

下一篇:fedora 软件安装

给主人留下些什么吧!~~