This is the mail archive of the kawa@sourceware.org mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: kawa with servlet3.0?


On 09/22/2013 10:04 PM, Christopher Meng wrote:
Hi all,

I took the ownership of this package in Fedora months ago.

Great - thanks.

But one of them is critical:

https://bugzilla.redhat.com/show_bug.cgi?id=819551

This doesn't seem to have anything to do with servlet.
At least if the problem is the one from your report (http://ur1.ca/fo3gf)

I believe the attached fix from the Kawa Subversion
repository might fix the problem.

This will be in Kawa 1.14, which I'm working on getting out.

Fedora now only has servlet3.0(package name "tomcat-servlet-3.0-api")
provided by tomcat 7, seems kawa doesn't support 7, right?

Indeed, I get some complication errors when using servlet-api.jar
from 7.0.42.  I'll look into it.

--
	--Per Bothner
per@bothner.com   http://per.bothner.com/
Index: gnu/kawa/ant/ChangeLog
===================================================================
--- gnu/kawa/ant/ChangeLog	(revision 7390)
+++ gnu/kawa/ant/ChangeLog	(revision 7391)
@@ -1,3 +1,8 @@
+2012-12-15  Per Bothner  <per@bothner.com>
+
+	* LineStripperSet.java (class LineStripper): Make extend Filter.
+	* LineCommenterSet.java (class LineCommenter): Make extend Filter.
+
 2010-11-10  Jamison Hope <jrh@theptrgroup.com>
 	    Per Bothner  <per@bothner.com>
 
Index: gnu/kawa/ant/LineStripperSet.java
===================================================================
--- gnu/kawa/ant/LineStripperSet.java	(revision 7390)
+++ gnu/kawa/ant/LineStripperSet.java	(revision 7391)
@@ -23,7 +23,7 @@
      * @author    Jim White
      * Created   2001-11-14.
      */
-    public static class LineStripper // extends FilterSet.Filter
+    public static class LineStripper extends FilterSet.Filter
     {
         String first;
         String last;
Index: gnu/kawa/ant/LineCommenterSet.java
===================================================================
--- gnu/kawa/ant/LineCommenterSet.java	(revision 7390)
+++ gnu/kawa/ant/LineCommenterSet.java	(revision 7391)
@@ -24,7 +24,7 @@
      * @author    Jim White
      * Created   2001-11-14.
      */
-    public static class LineCommenter // extends FilterSet.Filter
+    public static class LineCommenter extends FilterSet.Filter
     {
         String first;
         String last;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]