-$Id: HISTORY,v 1.18 2003/07/15 10:34:22 maxcooper Exp $
-$Revision: 1.18 $
-$Date: 2003/07/15 10:34:22 $
+$Id: HISTORY,v 1.19 2003/10/25 08:12:20 maxcooper Exp $
+$Revision: 1.19 $
+$Date: 2003/10/25 08:12:20 $
Security Filter v@PROJECT.VERSION@
changes made for each release.
+Changes since last release:
+===========================
+* SecurityFilter no longer looks for the DTD if validation of the config file is disabled.
+
+
Release 1.1-b1, 2003-Jul-15
===========================
* Added support for BASIC authentication scheme.
/*
- * $Header: /cvsroot/securityfilter/securityfilter/src/share/org/securityfilter/config/SecurityConfig.java,v 1.10 2003/07/14 18:53:46 maxcooper Exp $
- * $Revision: 1.10 $
- * $Date: 2003/07/14 18:53:46 $
+ * $Header: /cvsroot/securityfilter/securityfilter/src/share/org/securityfilter/config/SecurityConfig.java,v 1.11 2003/10/25 08:09:39 maxcooper Exp $
+ * $Revision: 1.11 $
+ * $Date: 2003/10/25 08:09:39 $
*
* ====================================================================
* The SecurityFilter Software License, Version 1.1
* @author Torgeir Veimo (torgeir@pobox.com)
* @author Max Cooper (max@maxcooper.com)
* @author Daya Sharma (iamdaya@yahoo.com, billydaya@sbcglobal.net)
- * @version $Revision: 1.10 $ $Date: 2003/07/14 18:53:46 $
+ * @version $Revision: 1.11 $ $Date: 2003/10/25 08:09:39 $
*/
public class SecurityConfig {
Digester digester = new Digester();
- registerLocalDTDs(digester);
+ // only register the DTDs if we will be validating
+ if (validating) {
+ registerLocalDTDs(digester);
+ }
digester.push(this);
digester.setValidating(validating);