|
From: Julien V. <ju...@jb...> - 2006-07-08 00:33:08
|
User: julien
Date: 06/07/07 20:33:06
Modified: server build.xml
Log:
- improve request decoding of the media type from the content type
- added test case to ensure this is done correctly by the portal servlet
Revision Changes Path
1.37 +13 -1 jboss-portal/server/build.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jboss-portal/server/build.xml,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -b -r1.36 -r1.37
--- build.xml 30 Jun 2006 23:51:01 -0000 1.36
+++ build.xml 8 Jul 2006 00:33:06 -0000 1.37
@@ -8,7 +8,7 @@
<!ENTITY targets SYSTEM "../tools/etc/buildfragments/targets.ent">
]>
-<!-- $Id: build.xml,v 1.36 2006/06/30 23:51:01 julien Exp $ -->
+<!-- $Id: build.xml,v 1.37 2006/07/08 00:33:06 julien Exp $ -->
<!--+======================================================================+-->
<!--| JBoss Portal (The OpenSource Portal) Build File |-->
@@ -212,6 +212,17 @@
<fileset dir="${build.resources}/test/test-session-sar"/>
<fileset dir="${build.lib}" includes="test-session.war"/>
</jar>
+
+ <!-- -->
+ <jar jarfile="${build.lib}/test-charset.sar">
+
+ <fileset dir="${jboss.portal-common.root}/lib" includes="portal-common-lib.jar"/>
+ <fileset dir="${build.lib}" includes="test-agent.war"/>
+ <fileset dir="${build.lib}" includes="portal-server-lib.jar"/>
+ <fileset dir="${build.lib}" includes="portal-server-test-lib.jar"/>
+
+ <fileset dir="${build.resources}/test/test-charset-sar"/>
+ </jar>
</target>
<!-- ================================================================== -->
@@ -310,6 +321,7 @@
<test name="org.jboss.portal.test.server.parameters.ParametersTestSuite"/>
<test name="org.jboss.portal.test.server.servlet.ServletTestSuite"/>
<test name="org.jboss.portal.test.server.session.SessionTestSuite"/>
+ <test name="org.jboss.portal.test.server.charset.CharsetTestSuite"/>
<!-- Standalone tests -->
<test name="org.jboss.portal.test.portal.util.PropertiesTestCase"/>
|