网页留言本,比一般的留言簿管用
源代码在线查看: data.pm
# # $Id: data.pm,v 1.2 1998/11/19 21:45:01 aas Exp $ # # Implements access to data:-URLs as specified in RFC 2397 package LWP::Protocol::data; use strict; use vars qw(@ISA); require HTTP::Response; require HTTP::Status; require LWP::Protocol; @ISA = qw(LWP::Protocol); use HTTP::Date qw(time2str); require LWP; # needs version number sub request { my($self, $request, $proxy, $arg, $size) = @_; # check proxy if (defined $proxy) { return new HTTP::Response &HTTP::Status::RC_BAD_REQUEST, 'You can not proxy with data'; } # check method my $method = $request->method; unless ($method eq 'GET' || $method eq 'HEAD') { return new HTTP::Response &HTTP::Status::RC_BAD_REQUEST, 'Library does not allow method ' . "$method for 'data:' URLs"; } my $url = $request->url; my $response = new HTTP::Response &HTTP::Status::RC_OK, "Document follows"; my $media_type = $url->media_type; my $data = $url->data; $response->header('Content-Type' => $media_type, 'Content-Length' => length($data), 'Date' => time2str(time), 'Server' => "libwww-perl-internal/$LWP::VERSION" ); $response->content($data) if $method ne "HEAD"; return $response; } 1;
|
相关资源 |
|
-
网页留言本,比一般的留言簿管用
-
该程序用格雷码来生成组合数序列,它比一般的方法要快,这是由格雷码的分布特性所决定的.
-
这是一个分治法应用的又一个例子,利用分治技术,做大整数乘法,尤其是几百位数以上的乘法,比一般的方法快很多,仅次于快速傅立叶变换.
-
KMP算法是一个查找两个字符串公共串的算法,比一般的算法效率要高很多.
-
为samsung Hamming code 的源码,该源码采用移位的方法,比一般的查表占用更少资源,是一种比较贴近硬件的c语言实现
-
快速排序算发,2分法查找,比一般的算发快,编译通过
-
大整数乘法
poj 2980
比一般的算法快一点点哦
-
超级留言簿(dxxo) 本留言参考了网上很多留言簿改进而来
|