You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ig...@apache.org on 2010/12/29 17:25:12 UTC

svn commit: r1053668 - in /httpd/httpd/trunk/modules: generators/mod_cgi.c generators/mod_cgid.c http/http_filters.c mappers/mod_alias.c

Author: igalic
Date: Wed Dec 29 16:25:12 2010
New Revision: 1053668

URL: http://svn.apache.org/viewvc?rev=1053668&view=rev
Log:
In comments: s@ XX @ XXX: @ so they can actually be found seen.

Modified:
    httpd/httpd/trunk/modules/generators/mod_cgi.c
    httpd/httpd/trunk/modules/generators/mod_cgid.c
    httpd/httpd/trunk/modules/http/http_filters.c
    httpd/httpd/trunk/modules/mappers/mod_alias.c

Modified: httpd/httpd/trunk/modules/generators/mod_cgi.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/generators/mod_cgi.c?rev=1053668&r1=1053667&r2=1053668&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/generators/mod_cgi.c (original)
+++ httpd/httpd/trunk/modules/generators/mod_cgi.c Wed Dec 29 16:25:12 2010
@@ -1001,7 +1001,7 @@ static int cgi_handler(request_rec *r)
             return OK;
         }
         else if (location && r->status == 200) {
-            /* XX Note that if a script wants to produce its own Redirect
+            /* XXX: Note that if a script wants to produce its own Redirect
              * body, it now has to explicitly *say* "Status: 302"
              */
             return HTTP_MOVED_TEMPORARILY;

Modified: httpd/httpd/trunk/modules/generators/mod_cgid.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/generators/mod_cgid.c?rev=1053668&r1=1053667&r2=1053668&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/generators/mod_cgid.c (original)
+++ httpd/httpd/trunk/modules/generators/mod_cgid.c Wed Dec 29 16:25:12 2010
@@ -1609,7 +1609,7 @@ static int cgid_handler(request_rec *r)
             return OK;
         }
         else if (location && r->status == 200) {
-            /* XX Note that if a script wants to produce its own Redirect
+            /* XXX: Note that if a script wants to produce its own Redirect
              * body, it now has to explicitly *say* "Status: 302"
              */
             discard_script_output(bb);

Modified: httpd/httpd/trunk/modules/http/http_filters.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_filters.c?rev=1053668&r1=1053667&r2=1053668&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_filters.c (original)
+++ httpd/httpd/trunk/modules/http/http_filters.c Wed Dec 29 16:25:12 2010
@@ -1037,7 +1037,7 @@ AP_DECLARE_NONSTD(int) ap_send_http_trac
     }
 
     if (conf->trace_enable == AP_TRACE_EXTENDED)
-        /* XX should be = REQUEST_CHUNKED_PASS */
+        /* XXX: should be = REQUEST_CHUNKED_PASS */
         body = REQUEST_CHUNKED_DECHUNK;
     else
         body = REQUEST_NO_BODY;

Modified: httpd/httpd/trunk/modules/mappers/mod_alias.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/mappers/mod_alias.c?rev=1053668&r1=1053667&r2=1053668&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/mappers/mod_alias.c (original)
+++ httpd/httpd/trunk/modules/mappers/mod_alias.c Wed Dec 29 16:25:12 2010
@@ -109,7 +109,7 @@ static const char *add_alias_internal(cm
     alias_entry *entries = (alias_entry *)conf->aliases->elts;
     int i;
 
-    /* XX real can NOT be relative to DocumentRoot here... compat bug. */
+    /* XXX: real can NOT be relative to DocumentRoot here... compat bug. */
 
     if (use_regex) {
         new->regexp = ap_pregcomp(cmd->pool, fake, AP_REG_EXTENDED);