updated for 1.1-b1 release
authormaxcooper <maxcooper>
Tue, 15 Jul 2003 10:34:21 +0000 (10:34 +0000)
committermaxcooper <maxcooper>
Tue, 15 Jul 2003 10:34:21 +0000 (10:34 +0000)
HISTORY
README
properties.xml

diff --git a/HISTORY b/HISTORY
index 742d176..7ed45d3 100644 (file)
--- a/HISTORY
+++ b/HISTORY
@@ -1,6 +1,6 @@
-$Id: HISTORY,v 1.17 2003/05/05 11:39:03 maxcooper Exp $
-$Revision: 1.17 $
-$Date: 2003/05/05 11:39:03 $
+$Id: HISTORY,v 1.18 2003/07/15 10:34:22 maxcooper Exp $
+$Revision: 1.18 $
+$Date: 2003/07/15 10:34:22 $
 
 
 Security Filter v@PROJECT.VERSION@
@@ -12,7 +12,7 @@ This document describes the history of the Security Filter project by lising the
 changes made for each release.
 
 
-Changes since last release:
+Release 1.1-b1, 2003-Jul-15
 ===========================
 * Added support for BASIC authentication scheme.
 
diff --git a/README b/README
index eedfa5a..7c6a4b2 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
-$Id: README,v 1.17 2003/05/05 11:39:03 maxcooper Exp $
-$Revision: 1.17 $
-$Date: 2003/05/05 11:39:03 $
+$Id: README,v 1.18 2003/07/15 10:34:21 maxcooper Exp $
+$Revision: 1.18 $
+$Date: 2003/07/15 10:34:21 $
 
 
 Security Filter v@PROJECT.VERSION@
@@ -33,17 +33,16 @@ This product includes software developed by the Apache Software Foundation
 
 What's in this package?
 -----------------------
-Two example apps demonstrate securityfilter in action:
+Three example apps demonstrate securityfilter in action:
 
-1. securityfilter-example.war - Basic securityfilter app using native
-securityfilter realm implementation.
+1. securityfilter-example.war - Simple securityfilter app using native
+securityfilter realm implementation and FORM authentication.
 
 2. securityfilter-catalina-example.war - Same as securityfilter-example app with
 Tomcat (Catalina) realm implementation and realm adapter class.
 
-3. Both securityfilter-catalina-example.war and securityfilter-example.war can be run
-in BASIC Authentication mode i.e. is the user will be challenged for credential using
-a basic window pop-up.
+3. securityfilter-basic.war - Simple securityfilter app using native
+securityfilter realm implementation and BASIC authentication.
 
 A securityfilter-blank.war example app is also provided as a skeleton to use to
 start a new securityfilter application, or integrate into an existing
@@ -78,8 +77,8 @@ are using a realm adapter or decorator class). Realm properties can be set with
 the realm-param tag.
 
 4. Specify either BASIC or FORM authentication scheme in auth-method tag of
-securityfilter-config.xml. If you specify BASIC authentication scheme you can still
-specify an application-specific login form page for logging the user in.
+securityfilter-config.xml. If you specify the FORM authentication scheme you will
+need to specify your form-login-page, form-error-page, and form-default-page.
 
 The example apps include web.xml and securityfilter-config.xml file examples.
 
@@ -94,6 +93,21 @@ supported that may be important to you:
 1. user-data-constraint tags can be included in the config file, but they are
 not yet supported (and thus are ignored)
 
+The following extended features are planned for a future release, but are not
+yet available in current releases:
+
+1. "Remember me" functionality -- a persistent cookie will be used to provide
+persistent login functionality. Currently, a user will be logged out when their
+session expires or if they close their current browser session. By using a
+persistent cookie, a user will be automatically authenticated when they return
+to a site, even if their session expired or if they close their browser in between
+accesses.
+
+2. Application-specific processing at authentication time -- this will allow
+application developers to write code that will be executed when a user is
+authenticated. This is useful for populating the session with user profile
+informtaiton, etc.
+
 
 Contributors
 ------------
@@ -125,5 +139,3 @@ and make feature requests: http://sourceforge.net/projects/securityfilter/
 
 Thank you,
 The SecurityFilter Team
-
-
index 7994ff7..c194be3 100644 (file)
@@ -1,7 +1,7 @@
 <!--
-$Id: properties.xml,v 1.9 2003/07/07 13:40:40 maxcooper Exp $
-$Revision: 1.9 $
-$Date: 2003/07/07 13:40:40 $
+$Id: properties.xml,v 1.10 2003/07/15 10:34:21 maxcooper Exp $
+$Revision: 1.10 $
+$Date: 2003/07/15 10:34:21 $
 -->
 
 <!--
@@ -52,7 +52,7 @@ $Date: 2003/07/07 13:40:40 $
 <property name="project.name" value="securityfilter"/>
 
 <!-- default version of this project (override with command line version when building releases) -->
-<property name="project.version" value="1.1-dev"/>
+<property name="project.version" value="1.1-b1"/>
 
 <!-- Should Java compilations set the debug compiler option? -->
 <property name="compile.debug" value="true"/>