配置: WSGIScriptAlias /var/www/wsgi-scripts/simple.wsgi def application(environ, start_response): output = ‘hello world’ status = ‘200 OK’ headers = [(‘...
分类:
其他好文 时间:
2015-03-09 14:24:01
阅读次数:
150
将Trac与Apache配合使用,需要用到mod_wsgi模块,首先Apache要安装负责wsgi的模块。def application(environ, start_request): #... from trac.web.main import dispatch_request return d...
分类:
Web程序 时间:
2015-03-09 14:14:20
阅读次数:
117
研究了一下openstack中的本地化;主要使用gettext模块;其中本地化包括对一般字符串的本地化和log的本地化;(1)_localedir = os.environ.get('essential'.upper() + '_LOCALEDIR')_t = gettext.translation...
分类:
其他好文 时间:
2015-03-04 20:41:10
阅读次数:
143
#!/usr/bin/python#pythonstartupfileimportsysimportreadlineimportrlcompleterimportatexitimportos#tabcompletionreadline.parse_and_bind(‘tab:complete‘)#historyfilehistfile=os.path.join(os.environ[‘HOME‘],‘.pythonhistory‘)try:readline.read_history_file(histfile..
分类:
编程语言 时间:
2015-03-03 10:03:31
阅读次数:
187
# -*- coding: utf-8 -*-import osimport syssys.path = ['/var/www/firstweb'] + sys.pathos.environ['DJANGO_SETTINGS_MODULE'] = 'firstweb.settings'#import...
分类:
Web程序 时间:
2015-02-09 17:51:32
阅读次数:
209
1)程序简单,引用几个关键处理即可:
#coding=utf-8
#!/usr/bin/python
# CGI处理模块
from os import environ
import cgi, cgitb
# 创建 FieldStorage 的实例化
form = cgi.FieldStorage()
# 获取数据
user_id ="a";
password="b";...
分类:
编程语言 时间:
2015-02-03 15:08:29
阅读次数:
220
1.os.environ["HOME"] 为什么这句话在我的STS中打印不出东西,还报错MethodDescriptionclose()Close filefileno()Returns integer file descriptorflush()Used to flush or clear the...
分类:
其他好文 时间:
2015-01-20 15:24:04
阅读次数:
304
一、描述
今天我先安装了jdk8,后来由于其他软件不兼容,又重新安装了jdk7并修改了环境变量为jdk7的,结果在cmd中输入Java -version发现还是用的jdk8的,于是我就将jdk8卸载后重启了机器。
重启后机器再次输入jdk -version命令时出现以下错误提示:
二、解决方案
将C:\Windows\System32目录下的java.exe删...
分类:
编程语言 时间:
2015-01-15 23:51:36
阅读次数:
268
#!/usr/bin/envpython#_*_coding:utf-8_*_importsysimportosimportreadlineimportrlcompleterimportatexitreadline.parse_and_bind(‘tab:complete‘)histfile=os.path.join(os.environ[‘HOME‘],‘.pythonhistory‘)try:readline.read_history_file(histfile)exceptIOError:passate..
分类:
编程语言 时间:
2015-01-13 17:55:32
阅读次数:
160
WSGI就是一个标准,WSGI server就是实现了这个标准的一个容器。这个标准类似于如下的东东:1234567891011from wsgiref.simple_server import make_serverdef simple_app(environ, start_response):st...
分类:
其他好文 时间:
2015-01-07 18:21:52
阅读次数:
166