Update of /cvsroot/securityfilter/securityfilter
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2696
Modified Files:
HISTORY build-webapps.xml build.xml deploy.xml properties.xml
Log Message:
use Ant import task instead of XML entity inclusion for shared properties in build files
Index: properties.xml
===================================================================
RCS file: /cvsroot/securityfilter/securityfilter/properties.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** properties.xml 22 Feb 2005 10:55:44 -0000 1.15
--- properties.xml 15 Feb 2006 08:23:52 -0000 1.16
***************
*** 11,14 ****
--- 11,15 ----
-->
+ <project name="Properties file for securityfilter" default="">
<!-- ========== Local/User Properties ============================================================================== -->
***************
*** 135,136 ****
--- 136,138 ----
</filterset>
+ </project>
\ No newline at end of file
Index: build.xml
===================================================================
RCS file: /cvsroot/securityfilter/securityfilter/build.xml,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** build.xml 22 Feb 2005 11:02:07 -0000 1.22
--- build.xml 15 Feb 2006 08:23:52 -0000 1.23
***************
*** 7,18 ****
-->
- <!DOCTYPE project [
- <!ENTITY properties SYSTEM "file:./properties.xml">
- ]>
- <project name="securityfilter" default="default">
! <!-- import common properties -->
! &properties;
<!-- ========== Default Target ================================================================================== -->
--- 7,14 ----
-->
! <project name="securityfilter" default="default">
! <import file="properties.xml"/>
<!-- ========== Default Target ================================================================================== -->
Index: build-webapps.xml
===================================================================
RCS file: /cvsroot/securityfilter/securityfilter/build-webapps.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** build-webapps.xml 22 Feb 2005 11:02:04 -0000 1.10
--- build-webapps.xml 15 Feb 2006 08:23:52 -0000 1.11
***************
*** 7,18 ****
-->
- <!DOCTYPE project [
- <!ENTITY properties SYSTEM "file:./properties.xml">
- ]>
-
<project name="securityfilter-webapps" default="build">
!
! <!-- import common properties -->
! &properties;
<!-- import ant-contrib tasks -->
--- 7,12 ----
-->
<project name="securityfilter-webapps" default="build">
! <import file="properties.xml"/>
<!-- import ant-contrib tasks -->
Index: deploy.xml
===================================================================
RCS file: /cvsroot/securityfilter/securityfilter/deploy.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** deploy.xml 8 Jun 2003 12:40:07 -0000 1.5
--- deploy.xml 15 Feb 2006 08:23:52 -0000 1.6
***************
*** 7,17 ****
-->
- <!DOCTYPE project [
- <!ENTITY properties SYSTEM "file:./properties.xml">
- ]>
-
<project name="Generic Tomcat Webapp Deployment" default="deploy">
! &properties;
<target name="deploy">
--- 7,13 ----
-->
<project name="Generic Tomcat Webapp Deployment" default="deploy">
! <import file="./properties.xml" />
<target name="deploy">
Index: HISTORY
===================================================================
RCS file: /cvsroot/securityfilter/securityfilter/HISTORY,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** HISTORY 14 Feb 2006 09:28:28 -0000 1.30
--- HISTORY 15 Feb 2006 08:23:52 -0000 1.31
***************
*** 14,17 ****
--- 14,24 ----
Changes since the last release:
===============================
+
+ * Fixed issue where SecurityFilter was creating a uneccessarily session for unsecured pages,
+ including the addition of an automated test:
+ http://sourceforge.net/tracker/index.php?func=detail&aid=1056920&group_id=59484&atid=491164
+
+ * Used ant import task in build files instead of entity inclusion
+
* Fixed form-based login HTTP response code (was 401, now 200), including an automated test:
http://sourceforge.net/tracker/index.php?func=detail&aid=935921&group_id=59484&atid=491164
***************
*** 24,31 ****
methods to put the expected value first.
- * Fixed issue where SecurityFilter was creating a uneccessarily session for unsecured pages,
- including the addition of an automated test:
- http://sourceforge.net/tracker/index.php?func=detail&aid=1056920&group_id=59484&atid=491164
-
Release 2.0, 2004-Dec-13
--- 31,34 ----
|