]> sjero.net Git - wget/commitdiff
[svn] HTTPServer.pm: Serve index.html if no filename is given.
authormtortonesi <devnull@localhost>
Thu, 27 Apr 2006 09:33:36 +0000 (02:33 -0700)
committermtortonesi <devnull@localhost>
Thu, 27 Apr 2006 09:33:36 +0000 (02:33 -0700)
tests/ChangeLog
tests/HTTPServer.pm

index 02d6401033ed4459090aa476615e2d5e621b4308..7f55d7c94543c636ea9ff8bd28c4e249ed60efd4 100644 (file)
@@ -1,3 +1,7 @@
+2006-04-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
+       
+       * HTTPServer.pm: Serve index.html if no filename is given.
+       
 2006-01-24  Mauro Tortonesi  <mauro@ferrara.linux.it>
 
        * HTTPServer.pm: Enhanced logging support.
index 19375eff1a2fd389a48142d2459c8650c3038fa2..c66ef85307fa6249b2add5083b9cc54a80da9b14 100755 (executable)
@@ -20,19 +20,25 @@ sub run {
                                 
     while (my $con = $self->accept) {
         while (my $req = $con->get_request) {
-            print STDERR "Method: ", $req->method, "\n" if $log;
-            print STDERR "Path: ", $req->url->path, "\n" if $log;
-            foreach my $key (keys %{HTTPServer::urls}) {
-                print STDERR $key, '\n';
+            my $url_path = $req->url->path;
+            if ($url_path =~ m{/$}) {
+                $url_path .= 'index.html';
             }
-            if (exists($urls->{$req->url->path})) {
-                print STDERR "Serving requested URL: ", $req->url->path, "\n" if $log;
+            if ($log) {
+                print STDERR "Method: ", $req->method, "\n";
+                print STDERR "Path: ", $url_path, "\n";
+                print STDERR "Available URLs: ", "\n";
+                foreach my $key (keys %$urls) {
+                    print STDERR $key, "\n";
+                }
+            }
+            if (exists($urls->{$url_path})) {
+                print STDERR "Serving requested URL: ", $url_path, "\n" if $log;
                 next unless ($req->method eq "HEAD" || $req->method eq "GET");
                 
                 # create response
-                my $tmp = $urls->{$req->url->path};
-                my $resp = HTTP::Response->new ($tmp->{code},
-                                                $tmp->{msg});
+                my $tmp = $urls->{$url_path};
+                my $resp = HTTP::Response->new ($tmp->{code}, $tmp->{msg});
                 print STDERR "HTTP::Response: \n", $resp->as_string if $log;
                 
                 #if (is_dynamic_url) { # dynamic resource
@@ -63,7 +69,7 @@ sub run {
                 $con->send_response($resp);
                 print STDERR "HTTP::Response sent: \n", $resp->as_string if $log;
             } else {
-                print STDERR "Requested wrong URL: ", $req->url->path, "\n" if $log;
+                print STDERR "Requested wrong URL: ", $url_path, "\n" if $log;
                 $con->send_error($HTTP::Status::RC_FORBIDDEN);
             }
         }