Author: remy.maucherat(a)jboss.com
Date: 2008-09-03 07:40:19 -0400 (Wed, 03 Sep 2008)
New Revision: 764
Modified:
trunk/java/org/apache/catalina/util/ManifestResource.java
trunk/webapps/docs/changelog.xml
Log:
- Port patch for manifest checking.
Modified: trunk/java/org/apache/catalina/util/ManifestResource.java
===================================================================
--- trunk/java/org/apache/catalina/util/ManifestResource.java 2008-09-02 15:42:10 UTC (rev
763)
+++ trunk/java/org/apache/catalina/util/ManifestResource.java 2008-09-03 11:40:19 UTC (rev
764)
@@ -117,7 +117,7 @@
*/
public boolean isFulfilled() {
if (requiredExtensions == null) {
- return false;
+ return true;
}
Iterator it = requiredExtensions.iterator();
while (it.hasNext()) {
Modified: trunk/webapps/docs/changelog.xml
===================================================================
--- trunk/webapps/docs/changelog.xml 2008-09-02 15:42:10 UTC (rev 763)
+++ trunk/webapps/docs/changelog.xml 2008-09-03 11:40:19 UTC (rev 764)
@@ -21,13 +21,23 @@
<changelog>
<fix>
<jboss-jira>JBAS-5917</jboss-jira>: Fix error handling starting one
of the core components,
- and harmonize lifecycle checks of StandardPipeline zith the other components.
(remm)
+ and harmonize lifecycle checks of StandardPipeline with the other components.
(remm)
</fix>
+ <fix>
+ <bug>45628</bug>: JARs without deps should always be fulfilled.
(markt)
+ </fix>
</changelog>
</subsection>
- <subsection name="Jasper">
+ <subsection name="Coyote">
<changelog>
<fix>
+ Fix a rare problem identifying AJP body packets that should be dropped. (remm)
+ </fix>
+ </changelog>
+ </subsection>
+ <subsection name="Jasper">
+ <changelog>
+ <fix>
Sync with EL from Tomcat, to fix a number of complex expressions. (remm)
</fix>
<fix>