<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in mod_authz_groupfile.xml</title>
    <link>http://src.iws.cs.ovgu.de/source/rss/httpd/docs/manual/mod/mod_authz_groupfile.xml</link>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2005</copyright>
    <generator>Java</generator>
    <item>
        <title>Add &lt;compatibility&gt; notes for changes made in version 2.4.8 + synch formating with 2.4.x</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 9a2b3982c53d51e2d2df29b6f94cc25e2ed134bc</description>
        <pubDate></pubDate>
        <dc:creator>jailletc36</dc:creator>
    </item>

    <item>
        <title>mod_authnz_groupfile: Support the expression parser within the require directives.</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 4816cd796cb9da2fb18a2d382586a926e0e9ae54</description>
        <pubDate></pubDate>
        <dc:creator>minfrin</dc:creator>
    </item>

    <item>
        <title>Drop pre-2.3 compatibility notes from trunk docs.</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 158222078a98fb13cddf2793b42f7eb8eafe51ae</description>
        <pubDate></pubDate>
        <dc:creator>rjung</dc:creator>
    </item>

    <item>
        <title>Cleanup effort in prep for GA push:
    Trim trailing whitespace... no func change</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 860b4efe27e7c1c9a2bf5c872b29c90f76849b51</description>
        <pubDate></pubDate>
        <dc:creator>jim</dc:creator>
    </item>

    <item>
        <title>PR #43358 - Fix links to moved auth directives (Takashi Sato)</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 9cd3b05d7b70f07a742bbaf548fa4fa2bdbe5ce6</description>
        <pubDate></pubDate>
        <dc:creator>noodl</dc:creator>
    </item>

    <item>
        <title>update license header text</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - db479b48bd4d75423ed4a45e15b75089d1a8ad72</description>
        <pubDate></pubDate>
        <dc:creator>fielding</dc:creator>
    </item>

    <item>
        <title>Update the copyright year in all .c, .h and .xml files</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 3d81f57512275ca06a60a9bcbd23c1f8b429fdf2</description>
        <pubDate></pubDate>
        <dc:creator>colm</dc:creator>
    </item>

    <item>
        <title>Authz refactoring
    Merge from branches/authz-dev
    
    Basically here is a list of what has been done:
    - Convert all of the authz modules from hook based to provider based
    - Remove the ap_requires field from the core_dir_config structure
    - Remove the function ap_requires() since its functionality is no
    longer supported or necessary in the refactoring
    - Remove the calls to ap_some_auth_required() in the core request
    handling to allow the  hooks to be called in all cases.
    - Add the new module mod_authz_core which will act as the authorization
    provider vector and contain common authz directives such as 'Require',
    'Reject' and  '&lt;RequireAlias&gt;'
    - Add the new module mod_authn_core which will contain common
    authentication directives such as 'AuthType', 'AuthName' and
    '&lt;AuthnProviderAlias&gt;'
    - Move the check for METHOD_MASK out of the authz providers and into
    the authz_core provider vector
    - Define the status codes that can be returned by the authz providers
    as AUTHZ_DENIED,  AUTHZ_GRANTED and AUTHZ_GENERAL_ERROR
    - Remove the 'Satisfy' directive
    - Implement the '&lt;RequireAll&gt;', '&lt;RequireOne&gt;' block directives  to
    handle the 'and' and 'or' logic for authorization.
    - Remove the 'AuthzXXXAuthoritative' directives from all of the authz
    providers
    - Implement the 'Reject' directive that will deny authorization if the
    argument is true
    - Fold the 'Reject' directive into the '&lt;RequireAll&gt;', '&lt;RequireOne&gt;'
    logic
    - Reimplement the host based authorization functionality provided by
    'allow', 'deny' and 'order' as authz providers
    - Remove the 'allow', 'deny' and 'order' directives
    - Merge mod_authn_alias into mod_authn_core
    - Add '&lt;RequireAlias&gt;' functionality which is similar to
    '&lt;AuthnProviderAlias&gt;' but specific to authorization aliasing
    - Remove all of the references to the 'authzxxxAuthoritative'
    directives from the documentation
    - Remove the 'Satisfy' directive from the documentation
    - Remove 'Allow', 'Deny', 'Order' directives from the documentation
    - Document '&lt;RequireAll&gt;', '&lt;RequireOne&gt;', 'Reject' directives
    - Reimplement the APIs ap_auth_type(), ap_auth_name() as optional
    functions and move the  actual implementation into mod_authn_core
    - Reimplement the API ap_some_auth_required() as an optional function
    and move the  actual implementation into mod_authz_core
    
    Major Changes:
    - Added the directives &lt;RequireAll&gt;, &lt;RequireOne&gt;, &lt;RequireAlias&gt;,
    Reject
    - Expanded the functionality of the directive 'Require' to handle all
    authorization and access control
    - Added the new authz providers 'env', 'ip', 'host', 'all' to handle
    host-based access control
    - Removed the directives 'Allow', 'Deny', 'Order', 'Satisfy',
    'AuthzXXXAuthoritative'
    - Removed the ap_require() API
    - Moved the directives 'AuthType', 'AuthName' out of mod_core and into
    mod_authn_core
    - Moved the directive 'Require' out of mod_core and into
    mod_authz_core
    - Merged mod_authn_alias into mod_authn_core
    - Renamed mod_authz_dbm authz providers from 'group' and 'file-group'
    to 'dbm-group' and 'dbm-file-group'
    
    Benefits:
    - All authorization and access control is now handle through two
    directives, 'Require' and 'Reject'
    - Authorization has been expanded to allow for complex 'AND/OR' control
    logic through the directives '&lt;RequireAll&gt;' and '&lt;RequireOne&gt;'
    - Configuration is now much simpler and consistent across the board
    - Other modules like mod_ssl and mod_proxy should be able to plug into
    and take advantage of  the same provider based authorization mechanism
    by implementing their own providers
    
    Issues:
    - Backwards compatibility between 2.2 and 2.3 configurations will be
    broken in the area  of authorization and access control due to the fact
    that the directives 'allow', 'deny',  'order' and 'satisfy' have been
    removed.  When moving from 2.2 to 2.3 these directives  will have to be
    changed to 'Require all granted', 'Require all denied' or some variation
     of the authz host-based providers.
    - Existing third party authorization modules will have to adapt to the
    new structure.</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 367d146f245f3b1c9f77c18e6ec591b52e0b344c</description>
        <pubDate></pubDate>
        <dc:creator>bnicholes</dc:creator>
    </item>

    <item>
        <title>Update copyright year to 2005 and standardize on current copyright owner line.</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 08cb74ca432a8c24e39f17dedce527e6a47b8001</description>
        <pubDate></pubDate>
        <dc:creator>jerenkrantz</dc:creator>
    </item>

    <item>
        <title>fix copyright notice</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - fe9dca85c9e1544931fb420615372c10c0181ea7</description>
        <pubDate></pubDate>
        <dc:creator>nd</dc:creator>
    </item>

    <item>
        <title>These modules are for authorization, not authentication.</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 43d99bfb458baee0a702c56a4ef4200e75c4dbb8</description>
        <pubDate></pubDate>
        <dc:creator>yoshiki</dc:creator>
    </item>

    <item>
        <title>$Revision$ is slightly misdocumented (only available since svn 1.1)
    use LastChangedRevision instead</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 5f5d1b4cc970b7f06ff8ef6526128e9a27303d88</description>
        <pubDate></pubDate>
        <dc:creator>nd</dc:creator>
    </item>

    <item>
        <title>adjust properties and  revision expansion of the English docs</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 70ce08850895485160d91d333b5a487ee2f80fbc</description>
        <pubDate></pubDate>
        <dc:creator>nd</dc:creator>
    </item>

    <item>
        <title>add $Revision$ keyword</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 68cd30d6fb171881925dff9669d04affea29d2b7</description>
        <pubDate></pubDate>
        <dc:creator>nd</dc:creator>
    </item>

    <item>
        <title>fix name of The Apache Software Foundation</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 6fbd2e53c97ea6976d93e0ac521adabc55e0fb73</description>
        <pubDate></pubDate>
        <dc:creator>nd</dc:creator>
    </item>

    <item>
        <title>apply Apache License, Version 2.0</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - d5d794fc2f4cc9ca6d6da17cfa2cdcd8d244bacd</description>
        <pubDate></pubDate>
        <dc:creator>nd</dc:creator>
    </item>

    <item>
        <title>add the metafile attribute to all xml files.</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 7db9f691a00ead175b03335457ca296a33ddf31b</description>
        <pubDate></pubDate>
        <dc:creator>nd</dc:creator>
    </item>

    <item>
        <title>full clean-up of the auth-docs; feel free to shake out any
    nits, if there are (probably there *are* :)
    
    main changes:
    
    - introduce docs for mod_authn_default, mod_authz_default and
      mod_authz_user
    - fix argument lists of the provider directives
    - fix the examples (intended to be better :)
    - introduce the AuthDigestShmemSize directive
    - remove AuthDigestUser/GroupFile
    - mention htdigest in AuthUserFile docs
    - mod_authn_anon is now an authn provider
    - markup
    
    Reviewed by: Astrid Ke�ler &lt;kess@kess-net.de&gt;</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 35ffb30f57f777dbf3f17c5a5ddf706559942c16</description>
        <pubDate></pubDate>
        <dc:creator>nd</dc:creator>
    </item>

    <item>
        <title>fix compatibility notes (2.0.44 -&gt; 2.1)
    did no update of the japanese transformations, because it creates
    somewhat weird on my system...</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 169280c7e65362d4ed444ec262c3f22a6a280166</description>
        <pubDate></pubDate>
        <dc:creator>nd</dc:creator>
    </item>

    <item>
        <title>Update the docs to fully reflect the aaa changes by linking in the new
    modules and removing the deleted ones; renaming mod_auth_anon-&gt;mod_authn_anon,
    and mod_access-&gt;mod_authz_host.
    
    All docs to the old modules are now deleted.
    
    Translations were kept with their old modules.  (Can't read Japanese.)</title>
        <description>/httpd/docs/manual/mod/mod_authz_groupfile.xml - 1f53e295ebd19aed1767d12da7abfab9936c148c</description>
        <pubDate></pubDate>
        <dc:creator>jerenkrantz</dc:creator>
    </item>

</channel>
</rss>

