You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bn...@apache.org on 2002/04/05 23:39:11 UTC

cvs commit: httpd-2.0/build mkconfNW.awk

bnicholes    02/04/05 13:39:11

  Modified:    build    mkconfNW.awk
  Log:
  Added replacement values for the new tags in the httpd.conf file template
  
  Revision  Changes    Path
  1.3       +13 -0     httpd-2.0/build/mkconfNW.awk
  
  Index: mkconfNW.awk
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/build/mkconfNW.awk,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- mkconfNW.awk	12 Mar 2002 21:01:46 -0000	1.2
  +++ mkconfNW.awk	5 Apr 2002 21:39:11 -0000	1.3
  @@ -4,6 +4,15 @@
       
       A["ServerRoot"] = "SYS:/APACHE2"
       A["Port"] = "80"
  +    A["cgidir"] = "cgi-bin"
  +    A["logfiledir"] = "logs"
  +    A["htdocsdir"] = "htdocs"
  +    A["sysconfdir"] = "conf"
  +    A["iconsdir"] = "icons"
  +    A["manualdir"] = "manual"
  +    A["runtimedir"] = "logs"
  +    A["errordir"] = "error"
  +    A["proxycachedir"] = "proxy"
       
   }
   
  @@ -38,6 +47,10 @@
       sub(/@@.*@@/,A[s],$0)
   }
   
  +match ($0,/@rel_.*@/) {
  +    s=substr($0,RSTART+5,RLENGTH-6)
  +    sub(/@rel_.*@/,A[s],$0)
  +}
   
   {
       print
  
  
  

RE: cvs commit: httpd-2.0/build mkconfNW.awk

Posted by Ryan Bloom <rb...@covalent.net>.
Do these changes need to be tagged for 2.0.35??????

Ryan

----------------------------------------------
Ryan Bloom                  rbb@covalent.net
645 Howard St.              rbb@apache.org
San Francisco, CA 

> -----Original Message-----
> From: bnicholes@apache.org [mailto:bnicholes@apache.org]
> Sent: Friday, April 05, 2002 1:39 PM
> To: httpd-2.0-cvs@apache.org
> Subject: cvs commit: httpd-2.0/build mkconfNW.awk
> 
> bnicholes    02/04/05 13:39:11
> 
>   Modified:    build    mkconfNW.awk
>   Log:
>   Added replacement values for the new tags in the httpd.conf file
> template
> 
>   Revision  Changes    Path
>   1.3       +13 -0     httpd-2.0/build/mkconfNW.awk
> 
>   Index: mkconfNW.awk
>   ===================================================================
>   RCS file: /home/cvs/httpd-2.0/build/mkconfNW.awk,v
>   retrieving revision 1.2
>   retrieving revision 1.3
>   diff -u -r1.2 -r1.3
>   --- mkconfNW.awk	12 Mar 2002 21:01:46 -0000	1.2
>   +++ mkconfNW.awk	5 Apr 2002 21:39:11 -0000	1.3
>   @@ -4,6 +4,15 @@
> 
>        A["ServerRoot"] = "SYS:/APACHE2"
>        A["Port"] = "80"
>   +    A["cgidir"] = "cgi-bin"
>   +    A["logfiledir"] = "logs"
>   +    A["htdocsdir"] = "htdocs"
>   +    A["sysconfdir"] = "conf"
>   +    A["iconsdir"] = "icons"
>   +    A["manualdir"] = "manual"
>   +    A["runtimedir"] = "logs"
>   +    A["errordir"] = "error"
>   +    A["proxycachedir"] = "proxy"
> 
>    }
> 
>   @@ -38,6 +47,10 @@
>        sub(/@@.*@@/,A[s],$0)
>    }
> 
>   +match ($0,/@rel_.*@/) {
>   +    s=substr($0,RSTART+5,RLENGTH-6)
>   +    sub(/@rel_.*@/,A[s],$0)
>   +}
> 
>    {
>        print
> 
> 
> 


RE: cvs commit: httpd-2.0/build mkconfNW.awk

Posted by Ryan Bloom <rb...@covalent.net>.
Do these changes need to be tagged for 2.0.35??????

Ryan

----------------------------------------------
Ryan Bloom                  rbb@covalent.net
645 Howard St.              rbb@apache.org
San Francisco, CA 

> -----Original Message-----
> From: bnicholes@apache.org [mailto:bnicholes@apache.org]
> Sent: Friday, April 05, 2002 1:39 PM
> To: httpd-2.0-cvs@apache.org
> Subject: cvs commit: httpd-2.0/build mkconfNW.awk
> 
> bnicholes    02/04/05 13:39:11
> 
>   Modified:    build    mkconfNW.awk
>   Log:
>   Added replacement values for the new tags in the httpd.conf file
> template
> 
>   Revision  Changes    Path
>   1.3       +13 -0     httpd-2.0/build/mkconfNW.awk
> 
>   Index: mkconfNW.awk
>   ===================================================================
>   RCS file: /home/cvs/httpd-2.0/build/mkconfNW.awk,v
>   retrieving revision 1.2
>   retrieving revision 1.3
>   diff -u -r1.2 -r1.3
>   --- mkconfNW.awk	12 Mar 2002 21:01:46 -0000	1.2
>   +++ mkconfNW.awk	5 Apr 2002 21:39:11 -0000	1.3
>   @@ -4,6 +4,15 @@
> 
>        A["ServerRoot"] = "SYS:/APACHE2"
>        A["Port"] = "80"
>   +    A["cgidir"] = "cgi-bin"
>   +    A["logfiledir"] = "logs"
>   +    A["htdocsdir"] = "htdocs"
>   +    A["sysconfdir"] = "conf"
>   +    A["iconsdir"] = "icons"
>   +    A["manualdir"] = "manual"
>   +    A["runtimedir"] = "logs"
>   +    A["errordir"] = "error"
>   +    A["proxycachedir"] = "proxy"
> 
>    }
> 
>   @@ -38,6 +47,10 @@
>        sub(/@@.*@@/,A[s],$0)
>    }
> 
>   +match ($0,/@rel_.*@/) {
>   +    s=substr($0,RSTART+5,RLENGTH-6)
>   +    sub(/@rel_.*@/,A[s],$0)
>   +}
> 
>    {
>        print
> 
> 
>