You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_dtcl-cvs@tcl.apache.org by da...@apache.org on 2001/03/13 13:00:49 UTC

cvs commit: mod_dtcl Makefile apache_request.c apache_request.h mod_dtcl.c tcl_commands.c

davidw      01/03/13 04:00:48

  Modified:    .        Makefile apache_request.c apache_request.h
                        mod_dtcl.c tcl_commands.c
  Log:
  Switched all comments to C comments.
  
  Small change to Makefile.
  
  Thanks to Simon Greaves for pointing these out.
  
  Revision  Changes    Path
  1.12      +2 -2      mod_dtcl/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/mod_dtcl/Makefile,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- Makefile	2001/03/08 16:49:31	1.11
  +++ Makefile	2001/03/13 12:00:42	1.12
  @@ -1,4 +1,4 @@
  -# $Id: Makefile,v 1.11 2001/03/08 16:49:31 davidw Exp $
  +# $Id: Makefile,v 1.12 2001/03/13 12:00:42 davidw Exp $
   
   # Changed to use the Tcl variables from tclConfig.sh
   
  @@ -8,7 +8,7 @@
   # You must change the following line unless you have the Debian
   # apache-dev package
   
  -INC=$(INCLUDES) -idirafter $(TCL_PREFIX)/include
  +INC=$(INCLUDES) -I$(TCL_PREFIX)/include
   
   STATICLIB=mod_dtcl.a
   SHLIB=mod_dtcl$(TCL_SHLIB_SUFFIX)
  
  
  
  1.3       +2 -2      mod_dtcl/apache_request.c
  
  Index: apache_request.c
  ===================================================================
  RCS file: /home/cvs/mod_dtcl/apache_request.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- apache_request.c	2001/03/09 18:32:28	1.2
  +++ apache_request.c	2001/03/13 12:00:44	1.3
  @@ -203,8 +203,8 @@
       req->upload = NULL;
       req->post_max = -1;
       req->disable_uploads = 0;
  -//    req->ApacheUploadHook = NULL;
  -//    req->hookptr = NULL;
  +    req->ApacheUploadHook = NULL;
  +    req->hookptr = NULL;
       req->parsed = 0;
       req->r = r;
   
  
  
  
  1.3       +1 -1      mod_dtcl/apache_request.h
  
  Index: apache_request.h
  ===================================================================
  RCS file: /home/cvs/mod_dtcl/apache_request.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- apache_request.h	2001/03/09 18:32:28	1.2
  +++ apache_request.h	2001/03/13 12:00:44	1.3
  @@ -105,4 +105,4 @@
   #define REQ_DEBUG(a)
   #endif
   
  -#endif // _APACHE_REQUEST_H
  +#endif /* _APACHE_REQUEST_H */
  
  
  
  1.23      +3 -3      mod_dtcl/mod_dtcl.c
  
  Index: mod_dtcl.c
  ===================================================================
  RCS file: /home/cvs/mod_dtcl/mod_dtcl.c,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- mod_dtcl.c	2001/03/10 18:24:04	1.22
  +++ mod_dtcl.c	2001/03/13 12:00:45	1.23
  @@ -58,7 +58,7 @@
    * University of Illinois, Urbana-Champaign.
    */
   
  -/* $Id: mod_dtcl.c,v 1.22 2001/03/10 18:24:04 davidw Exp $  */
  +/* $Id: mod_dtcl.c,v 1.23 2001/03/13 12:00:45 davidw Exp $  */
   
   /* mod_dtcl.c by David Welton <da...@apache.org> - originally mod_include.  */
   /* See http://tcl.apache.org/mod_dtcl/credits.ttml for additional credits. */
  @@ -732,7 +732,7 @@
       }
      upload = req->upload;
   
  -//    while (upload)
  +/* while (upload)  */
       if (upload)
       {
   	char *type = NULL;
  @@ -778,7 +778,7 @@
   			   0);
   	}
   	
  -//	upload = upload->next;
  +	/* upload = upload->next;  */
       }
   
       if(!strcmp(r->content_type, "application/x-httpd-tcl"))
  
  
  
  1.5       +1 -1      mod_dtcl/tcl_commands.c
  
  Index: tcl_commands.c
  ===================================================================
  RCS file: /home/cvs/mod_dtcl/tcl_commands.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- tcl_commands.c	2001/02/05 17:44:29	1.4
  +++ tcl_commands.c	2001/03/13 12:00:45	1.5
  @@ -255,7 +255,7 @@
   	else
   	    return TCL_ERROR;
       } else {
  -	// XXX	Tcl_WrongNumArgs(interp, 1, objv, "headers option arg ?arg ...?");
  +	/* XXX	Tcl_WrongNumArgs(interp, 1, objv, "headers option arg ?arg ...?");  */
   	return TCL_ERROR;
       }
       return TCL_OK;