Re: svn commit: r1906494 - in /httpd/httpd/branches/2.4.x: ./ CHANGES STATUS docs/manual/expr.xml docs/manual/mod/mod_authn_core.xml modules/aaa/mod_authn_core.c

2023-01-09 Thread Eric Covener
On Mon, Jan 9, 2023 at 10:11 AM Ruediger Pluem  wrote:
>
>
>
> On 1/9/23 2:16 PM, cove...@apache.org wrote:
> > Author: covener
> > Date: Mon Jan  9 13:16:50 2023
> > New Revision: 1906494
> >
> > URL: http://svn.apache.org/viewvc?rev=1906494=rev
> > Log:
> > Merge r1663123, r1670431 from trunk:
> >
> > mod_authn_core: Add expression support to AuthName and AuthType.
> >
> >
> > Add missing APLOGNOs by running
> > docs/log-message-tags/update-log-msg-tags.
> >
> > bump version in XML to 2.4.55
> >
> > Submitted By: minfrin
> > Reviewed By: minfrin, jim, covener
> >
> >
> > Modified:
> > httpd/httpd/branches/2.4.x/   (props changed)
> > httpd/httpd/branches/2.4.x/CHANGES
> > httpd/httpd/branches/2.4.x/STATUS
> > httpd/httpd/branches/2.4.x/docs/manual/expr.xml
> > httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authn_core.xml
> > httpd/httpd/branches/2.4.x/modules/aaa/mod_authn_core.c
> >
> > Propchange: httpd/httpd/branches/2.4.x/
> > --
> >   Merged /httpd/httpd/trunk:r1663123,1670431
>
> > Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authn_core.xml
> > URL: 
> > http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authn_core.xml?rev=1906494=1906493=1906494=diff
> > ==
> > --- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authn_core.xml (original)
> > +++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authn_core.xml Mon Jan  
> > 9 13:16:50 2023
> > @@ -141,6 +141,16 @@ authentication
> >
> >  The string provided for the AuthName is what will
> >  appear in the password dialog provided by most browsers.
> > +
> > +From 2.4.13, expression syntax can be
>
> I guess this should be 2.4.55.
>
> > +used inside the directive to produce the name dynamically.
> > +
> > +   For example:
> > +
> > +   
> > + AuthName "%{HTTP_HOST}"
> > +   
> > +
> >  
> >   >  href="../howto/auth.html">Authentication, Authorization, and
> > @@ -195,6 +205,9 @@ authentication
> >  /Directory
> >  
> >
> > +From 2.4.13, expression syntax can be
>
> I guess this should be 2.4.55.
>
> > +used inside the directive to specify the type dynamically.> +
> >  When disabling authentication, note that clients which have
> >  already authenticated against another portion of the server's document
> >  tree will typically continue to send authentication HTTP headers
> >
>

Thanks, I was sure I had edited those by hand, not sure how it got lost.


Re: svn commit: r1906494 - in /httpd/httpd/branches/2.4.x: ./ CHANGES STATUS docs/manual/expr.xml docs/manual/mod/mod_authn_core.xml modules/aaa/mod_authn_core.c

2023-01-09 Thread Ruediger Pluem



On 1/9/23 2:16 PM, cove...@apache.org wrote:
> Author: covener
> Date: Mon Jan  9 13:16:50 2023
> New Revision: 1906494
> 
> URL: http://svn.apache.org/viewvc?rev=1906494=rev
> Log:
> Merge r1663123, r1670431 from trunk:
> 
> mod_authn_core: Add expression support to AuthName and AuthType.
> 
> 
> Add missing APLOGNOs by running
> docs/log-message-tags/update-log-msg-tags.
> 
> bump version in XML to 2.4.55
> 
> Submitted By: minfrin
> Reviewed By: minfrin, jim, covener
> 
> 
> Modified:
> httpd/httpd/branches/2.4.x/   (props changed)
> httpd/httpd/branches/2.4.x/CHANGES
> httpd/httpd/branches/2.4.x/STATUS
> httpd/httpd/branches/2.4.x/docs/manual/expr.xml
> httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authn_core.xml
> httpd/httpd/branches/2.4.x/modules/aaa/mod_authn_core.c
> 
> Propchange: httpd/httpd/branches/2.4.x/
> --
>   Merged /httpd/httpd/trunk:r1663123,1670431

> Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authn_core.xml
> URL: 
> http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authn_core.xml?rev=1906494=1906493=1906494=diff
> ==
> --- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authn_core.xml (original)
> +++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authn_core.xml Mon Jan  9 
> 13:16:50 2023
> @@ -141,6 +141,16 @@ authentication
>  
>  The string provided for the AuthName is what will
>  appear in the password dialog provided by most browsers.
> +
> +From 2.4.13, expression syntax can be

I guess this should be 2.4.55.

> +used inside the directive to produce the name dynamically.
> +
> +   For example:
> +
> +   
> + AuthName "%{HTTP_HOST}"
> +   
> +
>  
>href="../howto/auth.html">Authentication, Authorization, and
> @@ -195,6 +205,9 @@ authentication
>  /Directory
>  
>  
> +From 2.4.13, expression syntax can be

I guess this should be 2.4.55.

> +used inside the directive to specify the type dynamically.> +
>  When disabling authentication, note that clients which have
>  already authenticated against another portion of the server's document
>  tree will typically continue to send authentication HTTP headers
> 

Regards

RĂ¼diger