You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Ruediger Pluem <rp...@apache.org> on 2023/01/09 15:11:20 UTC

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


On 1/9/23 2:16 PM, covener@apache.org wrote:
> Author: covener
> Date: Mon Jan  9 13:16:50 2023
> New Revision: 1906494
> 
> URL: http://svn.apache.org/viewvc?rev=1906494&view=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&r1=1906493&r2=1906494&view=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</description>
>  
>      <p>The string provided for the <code>AuthName</code> is what will
>      appear in the password dialog provided by most browsers.</p>
> +
> +    <p>From 2.4.13, <a href="../expr.html">expression syntax</a> can be

I guess this should be 2.4.55.

> +    used inside the directive to produce the name dynamically.</p>
> +
> +   <p>For example:</p>
> +
> +   <highlight language="config">
> +     AuthName "%{HTTP_HOST}"
> +   </highlight>
> +
>  </usage>
>  <seealso><a
>      href="../howto/auth.html">Authentication, Authorization, and
> @@ -195,6 +205,9 @@ authentication</description>
>  &lt;/Directory&gt;
>      </highlight>
>  
> +    <p>From 2.4.13, <a href="../expr.html">expression syntax</a> can be

I guess this should be 2.4.55.

> +    used inside the directive to specify the type dynamically.</p>> +
>      <note>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


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

Posted by Eric Covener <co...@gmail.com>.
On Mon, Jan 9, 2023 at 10:11 AM Ruediger Pluem <rp...@apache.org> wrote:
>
>
>
> On 1/9/23 2:16 PM, covener@apache.org wrote:
> > Author: covener
> > Date: Mon Jan  9 13:16:50 2023
> > New Revision: 1906494
> >
> > URL: http://svn.apache.org/viewvc?rev=1906494&view=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&r1=1906493&r2=1906494&view=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</description>
> >
> >      <p>The string provided for the <code>AuthName</code> is what will
> >      appear in the password dialog provided by most browsers.</p>
> > +
> > +    <p>From 2.4.13, <a href="../expr.html">expression syntax</a> can be
>
> I guess this should be 2.4.55.
>
> > +    used inside the directive to produce the name dynamically.</p>
> > +
> > +   <p>For example:</p>
> > +
> > +   <highlight language="config">
> > +     AuthName "%{HTTP_HOST}"
> > +   </highlight>
> > +
> >  </usage>
> >  <seealso><a
> >      href="../howto/auth.html">Authentication, Authorization, and
> > @@ -195,6 +205,9 @@ authentication</description>
> >  &lt;/Directory&gt;
> >      </highlight>
> >
> > +    <p>From 2.4.13, <a href="../expr.html">expression syntax</a> can be
>
> I guess this should be 2.4.55.
>
> > +    used inside the directive to specify the type dynamically.</p>> +
> >      <note>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.