这里,我在系统上安装了python3.4.2,再看一下它与python2.6的区别。
在Python2.6版本里,/usr/bin/lib/python2.6/ 目录下会有 BaseHTTPServer.py, SimpleHTTPServer.py, CGIHTTPServer.py 但是在Python3.4里,就没有上面的3个文件,而是合闭到了 /usr/bin/python3.4/http/server.py文件里了。
在python2.6里启动CGI服务命令是: - $ python -m CGIHTTPServer 8080
复制代码
在python3.4里则是: - $ python3.4 -m http/server --cgi 8080
复制代码端口号是可选参数。
看一下在3.4是怎么解决的。
打开 http/server.py 分析 CGIHTTPRequestHandler。
(1)修改了_url_collapse_path_split(path)
最后返回的不再是 ('/' + '/'.join(head_parts), tail_part),而是整个整理好的完整路径,是个string。 如果传入的path为"/dir/../cgi-bin/sub/./hello.py?aa=12",那么返回的collapsed_path应该是:"/cgi-bin/sub/hello.py?aa=12"
(2)在调用_url_collapse_path()的 is_cgi() 也做了修改
值得注意的是L960在给_url_collapse_path()传path里,用了urllib.parse.unquote()。
L916,找到第2个"/"的位置。L962,以"/"的位置将collasped_path拆成head, tail两部分。 如上,返回的collapsed_path="/cgi-bin/sub/hello.py?aa=12",那么head="/cgi-bin",tail="sub/hello.py?aa=12" 而self.cgi_info中保存的就是("/cgi-bin", "sub/hello.py?aa=12")
(3)修改了run_cgi()
由于前面在 is_cgi() 中得到 self.cgi_info=("/cgi-bin", "sub/hello.py?aa=12"),那么在L981~982,dir="/cgi-bin",rest="sub/hello.py?aa=12",path="/cgi-bin/sub/hello.py?aa=12" L983~L993的功能是将rest中的目录移到dir中去。执行后的结果是:dir="/cgi-bin/sub",rest="hello.py?aa=12"
后面的就没什么可讲述的了,与python2.6一致。
|