[Checkins] SVN: Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/ Launchpad #420319: Fix misconfigured ``startswith`` match type filter in ``plugins.DomainAuthHelper``.

Tres Seaver tseaver at palladion.com
Fri Aug 28 13:42:28 EDT 2009


Log message for revision 103343:
  Launchpad #420319:  Fix misconfigured ``startswith`` match type filter in ``plugins.DomainAuthHelper``.
  
  

Changed:
  U   Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/doc/CHANGES.txt
  U   Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/plugins/DomainAuthHelper.py

-=-
Modified: Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/doc/CHANGES.txt
===================================================================
--- Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/doc/CHANGES.txt	2009-08-28 17:40:41 UTC (rev 103342)
+++ Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/doc/CHANGES.txt	2009-08-28 17:42:27 UTC (rev 103343)
@@ -4,6 +4,9 @@
 PluggableAuthService 1.6.2 (unreleased)
 ---------------------------------------
 
+- Launchpad #420319:  Fix misconfigured ``startswith`` match type filter
+  in ``plugins.DomainAuthHelper``.
+
 - Fixed test setup for tests using page templates relying on the
   DefaultTraversable adapter.
 

Modified: Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/plugins/DomainAuthHelper.py
===================================================================
--- Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/plugins/DomainAuthHelper.py	2009-08-28 17:40:41 UTC (rev 103342)
+++ Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/plugins/DomainAuthHelper.py	2009-08-28 17:42:27 UTC (rev 103343)
@@ -88,7 +88,7 @@
 
 _MATCH_TYPE_FILTERS = {
     'equals': EqualsFilter,
-    'startswith': EndsWithFilter,
+    'startswith': StartsWithFilter,
     'endswith': EndsWithFilter,
     'regex': RegexFilter,
 }



More information about the checkins mailing list