gitweb: Separate input validation and dispatch, add comment about opml action
[gitweb.git] / gitweb / gitweb.perl
index b268b6344d8023572bf632d91237afd54d07b61d..7f4387fde6e55540ba9001b88c0587813ae04d48 100755 (executable)
@@ -71,6 +71,7 @@
        mkdir($git_temp, 0700) || die_error("Couldn't mkdir $git_temp");
 }
 
+# ======================================================================
 # input validation and dispatch
 our $action = $cgi->param('a');
 if (defined $action) {
@@ -78,6 +79,7 @@
                undef $action;
                die_error(undef, "Invalid action parameter.");
        }
+       # action which does not check rest of parameters
        if ($action eq "opml") {
                git_opml();
                exit;