2005年11月07日 星期一 11:11
嗯,我正在学习python的web framework。 CGI程序是以前写的,现在要修改,重新写时间又来不及,恼人呐 -----原始邮件----- 发件人: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn]代表 Zoom Quiet 发送时间: 2005年11月7日 10:10 收件人: python-chinese at lists.python.cn 主题: Re: [python-chinese] 转发: 如何调试CGI程序 Py 的 web 开发并不仅仅有 CGI 一种方式! http://wiki.woodpecker.org.cn/moin/PyWebAppFrameworks 建议先使用一种快速开发平台来实现,然后象 MoinMoin 一样转换为CGI 方式来与Apache 结合! 推荐:Karrigell http://wiki.woodpecker.org.cn/moin/KarrigellQuickIn 因为一切都非常简单,实用,调试尤其简单!! 在 05-11-7,刘宇波<liuyubo001 at paic.com.cn> 写道: > > 各位好: > 我正在用Python写CGI程序,出错信息只在apache的error日志中输出,而且信息十分的简单。 > 我的问题: > 1. 我如何才能得到更加丰富的调试信息? > 2. 有没有高效的调试方法 > 先谢谢各位大牛了! > > **************************************** > 刘宇波 Michael Lau > 中国平安保险(集团)股份有限公司 > 信息管理中心 系统运营部 > TEL:+86-755-82262888-3335 > ADDRESS:广东深圳八卦三路平安大厦 518029 > **************************************** > > > > ******************************************************************************************************************************************** > The information in this email is confidential and may be legally privileged. If you have received this email in error or are not the intended recipient, please immediately notify the sender and delete this message from your computer. Any use, distribution, or copying of this email other than by the intended recipient is strictly prohibited. All messages sent to and from us may be monitored to ensure compliance with internal policies and to protect our business. > Emails are not secure and cannot be guaranteed to be error free as they can be intercepted, amended, lost or destroyed, or contain viruses. Anyone who communicates with us by email is taken to accept these risks. > > 收发邮件者请注意: > 本邮件含保密信息,若误收本邮件,请务必通知发送人并直接删去,不得使用、传播或复制本邮件。 > 进出邮件均受到本公司合规监控。邮件可能发生被截留、被修改、丢失、被破坏或包含计算机病毒等不安全情况。 > ******************************************************************************************************************************************** > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > -- # Time is unimportant, only life important! ## 面朝开源,我心自由!
2005年11月07日 星期一 12:22
在 05-11-7,刘宇波<liuyubo001 at paic.com.cn> 写道: > 嗯,我正在学习python的web framework。 > CGI程序是以前写的,现在要修改,重新写时间又来不及,恼人呐 把这个加上去看一看有没有用? import cgitb; cgitb.enable() 可以看一下cgitb的文档。 -- I like python! My Blog: http://www.donews.net/limodou NewEdit Maillist: http://groups.google.com/group/NewEdit
2005年11月07日 星期一 12:44
如果用mod_python基本不用改,需要改的是将读取form提交的值,以及页面输出, 页面输出将print改为 req.write,取消原来CGI的HTTP头即可,改动量不大。 ----- Original Message ----- From: "刘宇波" <liuyubo001 at PAIC.com.cn> To: <python-chinese at lists.python.cn> Sent: Monday, November 07, 2005 11:11 AM Subject: 答复: [python-chinese] 转发: 如何调试CGI程序 嗯,我正在学习python的web framework。 CGI程序是以前写的,现在要修改,重新写时间又来不及,恼人呐 -----原始邮件----- 发件人: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn]代表 Zoom Quiet 发送时间: 2005年11月7日 10:10 收件人: python-chinese at lists.python.cn 主题: Re: [python-chinese] 转发: 如何调试CGI程序 Py 的 web 开发并不仅仅有 CGI 一种方式! http://wiki.woodpecker.org.cn/moin/PyWebAppFrameworks 建议先使用一种快速开发平台来实现,然后象 MoinMoin 一样转换为CGI 方式来与Apache 结合! 推荐:Karrigell http://wiki.woodpecker.org.cn/moin/KarrigellQuickIn 因为一切都非常简单,实用,调试尤其简单!! 在 05-11-7,刘宇波<liuyubo001 at paic.com.cn> 写道: > > 各位好: > 我正在用Python写CGI程序,出错信息只在apache的error日志中输出,而且信息十分的简单。 > 我的问题: > 1. 我如何才能得到更加丰富的调试信息? > 2. 有没有高效的调试方法 > 先谢谢各位大牛了! > > **************************************** > 刘宇波 Michael Lau > 中国平安保险(集团)股份有限公司 > 信息管理中心 系统运营部 > TEL:+86-755-82262888-3335 > ADDRESS:广东深圳八卦三路平安大厦 518029 > **************************************** > > > > ******************************************************************************************************************************************** > The information in this email is confidential and may be legally privileged. If you have received this email in error or are not the intended recipient, please immediately notify the sender and delete this message from your computer. Any use, distribution, or copying of this email other than by the intended recipient is strictly prohibited. All messages sent to and from us may be monitored to ensure compliance with internal policies and to protect our business. > Emails are not secure and cannot be guaranteed to be error free as they can be intercepted, amended, lost or destroyed, or contain viruses. Anyone who communicates with us by email is taken to accept these risks. > > 收发邮件者请注意: > 本邮件含保密信息,若误收本邮件,请务必通知发送人并直接删去,不得使用、传播或复制本邮件。 > 进出邮件均受到本公司合规监控。邮件可能发生被截留、被修改、丢失、被破坏或包含计算机病毒等不安全情况。 > ******************************************************************************************************************************************** > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > -- # Time is unimportant, only life important! ## 面朝开源,我心自由! _______________________________________________ python-chinese list python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese
Zeuux © 2025
京ICP备05028076号