落就是一道风景线……

Archive for the ‘Python’ Category

Python中文(非英文编码)解决方法

06.07.2010 · Posted in Python

Python编译报错:“UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-1: ordinal not in range(128)” 貌似Python3.x以下都存在编码问题,当然了,这个只是貌似,因为我用2.6.5遇到,而3.0已经成功编译。 ...

Django调用JS、CSS、Image等文件

05.31.2010 · Posted in Python

Django的URL访问是默认动态、动态访问的,对静态文件访问需要进行设置: 1.首先在settings.py文件中自定义参数 STATIC_PATH=’./static’ .(意为当前文件目录下的static文件夹) ...

哲思的架构

05.24.2010 · Posted in Python

一直蛮喜欢哲思社区的,今天看到徐大邀请进入哲区官方群组,于是发帖问哲思架构,得到了徐大的回答: ...

apache中django后台admin界面css丢失

05.19.2010 · Posted in Python

<VirtualHost *:80> ......................... <Directory "/usr/local/lib/site-packages/django/contrib/admin/media"> Order Deny,Allow Allow from all </Directory> Alias "/media" "/usr/local/lib/site-packages/django/contrib/admin/media" <Location "/media"> SetHandler None </Location> .............................. </VirtualHost> ...

GUI Programming in Python

05.14.2010 · Posted in Python

Python has a huge number of GUI frameworks (or toolkits) available for it, from Tkinter (traditionally bundled with Python, using Tk) to a number of other cross-platform solutions, as well as bindings to platform-specific (also known as “native”) technologies. GUI Programming in Python is a similar page. It’s not apparent to this reporter how the aims of the two ...