svn commit: r885231 - in /tomcat/trunk/java/org/apache/catalina/loader: JdbcLeakPrevention.java LocalStrings.properties WebappClassLoader.java
Author: markt Date: Sun Nov 29 14:25:04 2009 New Revision: 885231 URL: http://svn.apache.org/viewvc?rev=885231&view=rev Log: Add logging when a context fails to unregister a JDBC driver. Don't unregister the jdbc-obdc bridge driver that is loaded by the system classloader. Modified: tomcat/trunk/java/org/apache/catalina/loader/JdbcLeakPrevention.java tomcat/trunk/java/org/apache/catalina/loader/LocalStrings.properties tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java Modified: tomcat/trunk/java/org/apache/catalina/loader/JdbcLeakPrevention.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/loader/JdbcLeakPrevention.java?rev=885231&r1=885230&r2=885231&view=diff == --- tomcat/trunk/java/org/apache/catalina/loader/JdbcLeakPrevention.java (original) +++ tomcat/trunk/java/org/apache/catalina/loader/JdbcLeakPrevention.java Sun Nov 29 14:25:04 2009 @@ -21,7 +21,9 @@ import java.sql.Driver; import java.sql.DriverManager; import java.sql.SQLException; +import java.util.ArrayList; import java.util.Enumeration; +import java.util.List; /** * This class is loaded by the {...@link WebappClassLoader} to enable it to @@ -36,14 +38,28 @@ */ public class JdbcLeakPrevention { -public void clearJdbcDriverRegistrations() throws SQLException { +/* + * This driver is visible to all classloaders but is loaded by the system + * class loader so there is no need to unload it. + */ +private static final String JDBC_ODBC_BRIDGE_DRIVER = +"sun.jdbc.odbc.JdbcOdbcDriver"; + +public List clearJdbcDriverRegistrations() throws SQLException { +List driverNames = new ArrayList(); + // Unregister any JDBC drivers loaded by the class loader that loaded // this class - ie the webapp class loader Enumeration drivers = DriverManager.getDrivers(); while (drivers.hasMoreElements()) { Driver driver = drivers.nextElement(); +if (JDBC_ODBC_BRIDGE_DRIVER.equals( +driver.getClass().getCanonicalName())) { +continue; +} +driverNames.add(driver.getClass().getCanonicalName()); DriverManager.deregisterDriver(driver); } - +return driverNames; } } Modified: tomcat/trunk/java/org/apache/catalina/loader/LocalStrings.properties URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/loader/LocalStrings.properties?rev=885231&r1=885230&r2=885231&view=diff == --- tomcat/trunk/java/org/apache/catalina/loader/LocalStrings.properties (original) +++ tomcat/trunk/java/org/apache/catalina/loader/LocalStrings.properties Sun Nov 29 14:25:04 2009 @@ -33,6 +33,7 @@ webappClassLoader.jdbcRemoveStreamError=Exception closing input stream during JDBC driver de-registration webappClassLoader.stopped=Illegal access: this web application instance has been stopped already. Could not load {0}. The eventual following stack trace is caused by an error thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access, and has no functional impact. webappClassLoader.readError=Resource read error: Could not load {0}. +webappClassLoader.uncleareredReferenceJbdc=A web application registered the JBDC driver [{0}] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered. webappClassLoader.wrongVersion=(unable to load class {0}) webappLoader.addRepository=Adding repository {0} webappLoader.deploy=Deploying class repositories to work directory {0} Modified: tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java?rev=885231&r1=885230&r2=885231&view=diff == --- tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java (original) +++ tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java Sun Nov 29 14:25:04 2009 @@ -42,6 +42,7 @@ import java.util.HashMap; import java.util.Iterator; import java.util.LinkedHashMap; +import java.util.List; import java.util.Map; import java.util.Vector; import java.util.jar.Attributes; @@ -1672,8 +1673,13 @@ defineClass("org.apache.catalina.loader.JdbcLeakPrevention", classBytes, 0, offset); Object obj = lpClass.newInstance(); -obj.getClass().getMethod( +@SuppressWarnings("unchecked") +List driverNames = (List) obj.getClass().getMethod( "clearJdbcDriverRegistrations").invoke(obj); +for (String name : driverNames) { +
svn commit: r885233 - in /tomcat/trunk/java/org/apache/catalina/core: LocalStrings.properties StandardContext.java
Author: markt Date: Sun Nov 29 14:32:41 2009 New Revision: 885233 URL: http://svn.apache.org/viewvc?rev=885233&view=rev Log: Better logging of what is going on on Context reload Modified: tomcat/trunk/java/org/apache/catalina/core/LocalStrings.properties tomcat/trunk/java/org/apache/catalina/core/StandardContext.java Modified: tomcat/trunk/java/org/apache/catalina/core/LocalStrings.properties URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/LocalStrings.properties?rev=885233&r1=885232&r2=885233&view=diff == --- tomcat/trunk/java/org/apache/catalina/core/LocalStrings.properties (original) +++ tomcat/trunk/java/org/apache/catalina/core/LocalStrings.properties Sun Nov 29 14:32:41 2009 @@ -110,9 +110,9 @@ standardContext.notWrapper=Child of a Context must be a Wrapper standardContext.parameter.duplicate=Duplicate context initialization parameter {0} standardContext.parameter.required=Both parameter name and parameter value are required -standardContext.reloadingCompleted=Reloading this Context is completed +standardContext.reloadingCompleted=Reloading Context with path [{0}] is completed standardContext.reloadingFailed=Reloading this Context failed due to previous errors -standardContext.reloadingStarted=Reloading this Context has started +standardContext.reloadingStarted=Reloading Context with path [{0}] has started standardContext.resourcesStart=Error starting static Resources standardContext.securityConstraint.pattern=Invalid {0} in security constraint standardContext.servletMap.name=Servlet mapping specifies an unknown servlet name {0} Modified: tomcat/trunk/java/org/apache/catalina/core/StandardContext.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/StandardContext.java?rev=885233&r1=885232&r2=885233&view=diff == --- tomcat/trunk/java/org/apache/catalina/core/StandardContext.java (original) +++ tomcat/trunk/java/org/apache/catalina/core/StandardContext.java Sun Nov 29 14:32:41 2009 @@ -3259,12 +3259,17 @@ throw new IllegalStateException (sm.getString("containerBase.notStarted", logName())); +String path = getPath(); +if (path.length() == 0) { +path = "/"; +} + // Make sure reloading is enabled // if (!reloadable) // throw new IllegalStateException // (sm.getString("standardContext.notReloadable")); if(log.isInfoEnabled()) -log.info(sm.getString("standardContext.reloadingStarted")); +log.info(sm.getString("standardContext.reloadingStarted", path)); // Stop accepting requests temporarily setPaused(true); @@ -3283,6 +3288,9 @@ setPaused(false); +if(log.isInfoEnabled()) +log.info(sm.getString("standardContext.reloadingCompleted", path)); + } - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 48299] New: Add Javadoc target to build file
https://issues.apache.org/bugzilla/show_bug.cgi?id=48299 Summary: Add Javadoc target to build file Product: Tomcat 7 Version: trunk Platform: PC OS/Version: Windows XP Status: NEW Severity: enhancement Priority: P2 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: s...@apache.org Created an attachment (id=24630) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=24630) Patch to add Javadoc target to build file It would be useful to be able to build the Javadoc from the build file. Sample patch to follow (probably needs tweaking) -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r885241 - /tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java
Author: markt Date: Sun Nov 29 15:30:40 2009 New Revision: 885241 URL: http://svn.apache.org/viewvc?rev=885241&view=rev Log: Refactor prior to adding some more clean-up methods. Modified: tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java Modified: tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java?rev=885241&r1=885240&r2=885241&view=diff == --- tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java (original) +++ tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java Sun Nov 29 15:30:40 2009 @@ -1633,6 +1633,28 @@ */ protected void clearReferences() { +// De-register any remaining JDBC drivers +clearReferencesJdbc(); + +// Null out any static or final fields from loaded classes, +// as a workaround for apparent garbage collection bugs +if (ENABLE_CLEAR_REFERENCES) { +clearReferencesStaticFinal(); +} + + // Clear the IntrospectionUtils cache. +IntrospectionUtils.clear(); + +// Clear the classloader reference in common-logging +org.apache.juli.logging.LogFactory.release(this); + +// Clear the classloader reference in the VM's bean introspector +java.beans.Introspector.flushCaches(); + +} + + +private final void clearReferencesJdbc() { /* * Deregister any JDBC drivers registered by the webapp that the webapp * forgot. This is made unnecessary complex because a) DriverManager @@ -1693,89 +1715,81 @@ } } } +} + + +private final void clearReferencesStaticFinal() { -// Null out any static or final fields from loaded classes, -// as a workaround for apparent garbage collection bugs -if (ENABLE_CLEAR_REFERENCES) { -Collection values = -((HashMap) resourceEntries.clone()).values(); -Iterator loadedClasses = values.iterator(); -// -// walk through all loaded class to trigger initialization for -//any uninitialized classes, otherwise initialization of -//one class may call a previously cleared class. -while(loadedClasses.hasNext()) { -ResourceEntry entry = loadedClasses.next(); -if (entry.loadedClass != null) { -Class clazz = entry.loadedClass; -try { -Field[] fields = clazz.getDeclaredFields(); -for (int i = 0; i < fields.length; i++) { -if(Modifier.isStatic(fields[i].getModifiers())) { -fields[i].get(null); -break; -} +@SuppressWarnings("unchecked") +Collection values = +((HashMap) resourceEntries.clone()).values(); +Iterator loadedClasses = values.iterator(); +// +// walk through all loaded class to trigger initialization for +//any uninitialized classes, otherwise initialization of +//one class may call a previously cleared class. +while(loadedClasses.hasNext()) { +ResourceEntry entry = loadedClasses.next(); +if (entry.loadedClass != null) { +Class clazz = entry.loadedClass; +try { +Field[] fields = clazz.getDeclaredFields(); +for (int i = 0; i < fields.length; i++) { +if(Modifier.isStatic(fields[i].getModifiers())) { +fields[i].get(null); +break; } -} catch(Throwable t) { -// Ignore } +} catch(Throwable t) { +// Ignore } } -loadedClasses = values.iterator(); -while (loadedClasses.hasNext()) { -ResourceEntry entry = loadedClasses.next(); -if (entry.loadedClass != null) { -Class clazz = entry.loadedClass; -try { -Field[] fields = clazz.getDeclaredFields(); -for (int i = 0; i < fields.length; i++) { -Field field = fields[i]; -int mods = field.getModifiers(); -if (field.getType().isPrimitive() -|| (field.getName().indexOf("$") != -1)) { -continue; -} -if (Modifier.isStatic(mods)) { -try
svn commit: r885260 - in /tomcat/trunk/java/org/apache/catalina/loader: LocalStrings.properties WebappClassLoader.java
Author: markt Date: Sun Nov 29 19:27:38 2009 New Revision: 885260 URL: http://svn.apache.org/viewvc?rev=885260&view=rev Log: Add code that logs threads started but not stopped by the webapp. I have some highly experimental code to shut those threads down but it a) needs more work and b) needs to be made configurable before I commit it. Modified: tomcat/trunk/java/org/apache/catalina/loader/LocalStrings.properties tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java Modified: tomcat/trunk/java/org/apache/catalina/loader/LocalStrings.properties URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/loader/LocalStrings.properties?rev=885260&r1=885259&r2=885260&view=diff == --- tomcat/trunk/java/org/apache/catalina/loader/LocalStrings.properties (original) +++ tomcat/trunk/java/org/apache/catalina/loader/LocalStrings.properties Sun Nov 29 19:27:38 2009 @@ -33,7 +33,8 @@ webappClassLoader.jdbcRemoveStreamError=Exception closing input stream during JDBC driver de-registration webappClassLoader.stopped=Illegal access: this web application instance has been stopped already. Could not load {0}. The eventual following stack trace is caused by an error thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access, and has no functional impact. webappClassLoader.readError=Resource read error: Could not load {0}. -webappClassLoader.uncleareredReferenceJbdc=A web application registered the JBDC driver [{0}] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered. +webappClassLoader.clearJbdc=A web application registered the JBDC driver [{0}] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered. +webappClassLoader.warnThread=A web application appears to have started a thread named [{0}] but has failed to stop it. This is very likely to create a memory leak. webappClassLoader.wrongVersion=(unable to load class {0}) webappLoader.addRepository=Adding repository {0} webappLoader.deploy=Deploying class repositories to work directory {0} Modified: tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java?rev=885260&r1=885259&r2=885260&view=diff == --- tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java (original) +++ tomcat/trunk/java/org/apache/catalina/loader/WebappClassLoader.java Sun Nov 29 19:27:38 2009 @@ -112,9 +112,21 @@ private static final org.apache.juli.logging.Log log= org.apache.juli.logging.LogFactory.getLog( WebappClassLoader.class ); +/** + * List of ThreadGroup names to ignore when scanning for web application + * started threads that need to be shut down. + */ +private static final List JVM_THREAD_GROUP_NAMES = +new ArrayList(); + public static final boolean ENABLE_CLEAR_REFERENCES = Boolean.valueOf(System.getProperty("org.apache.catalina.loader.WebappClassLoader.ENABLE_CLEAR_REFERENCES", "true")).booleanValue(); +static { +JVM_THREAD_GROUP_NAMES.add("system"); +JVM_THREAD_GROUP_NAMES.add("RMI Runtime"); +} + protected class PrivilegedFindResourceByName implements PrivilegedAction { @@ -1555,7 +1567,7 @@ clearReferences(); started = false; - + int length = files.length; for (int i = 0; i < length; i++) { files[i] = null; @@ -1636,6 +1648,9 @@ // De-register any remaining JDBC drivers clearReferencesJdbc(); +// Stop any threads the web application started +clearReferencesThreads(); + // Null out any static or final fields from loaded classes, // as a workaround for apparent garbage collection bugs if (ENABLE_CLEAR_REFERENCES) { @@ -1654,25 +1669,25 @@ } +/** + * Deregister any JDBC drivers registered by the webapp that the webapp + * forgot. This is made unnecessary complex because a) DriverManager + * checks the class loader of the calling class (it would be much easier + * if it checked the context class loader) b) using reflection would + * create a dependency on the DriverManager implementation which can, + * and has, changed. + * + * We can't just create an instance of JdbcLeakPrevention as it will be + * loaded by the common class loader (since it's .class file is in the + * $CATALINA_HOME/lib directory). This would fail DriverManager's check + * on the class loader of the calling class. So, we load the bytes via + * our parent class loader but define
Bug report for Taglibs [2009/11/29]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | | 6347|New|Nor|2002-02-10|io:param should url encode| | 6390|New|Nor|2002-02-12|valueOf evaluates &'s to & when the & was part| | 6613|New|Nor|2002-02-21|cannot use xtags:style more than one time per page| | 8694|Ver|Maj|2002-05-01|Exception when trying to acces the Map.entry compo| | 8723|Ver|Nor|2002-05-02|use of xsltSystemID does not take effect if xslt a| | 9257|Ver|Nor|2002-05-20|ELParser doesn't parse non-ascii value| | 9581|Ver|Min|2002-06-03|update SQL examples to allow for the inputting of | | 9968|Ver|Maj|2002-06-18|c:url prepends path to page relative URLs | |10175|Ver|Nor|2002-06-24|Welcome file absent from standard-examples.war in | |11217|Unc|Blk|2002-07-26|Custom Tag Library Error: 'Tag library ""not found| |11347|New|Maj|2002-07-31|xtags:if test="position()!=last()" - position() & | |11361|New|Enh|2002-08-01|Allow user to create own URIResolver | |12133|New|Blk|2002-08-28|scrape not work for some urls the request for a co| |12618|New|Maj|2002-09-13|Mode attribute on xtags:template & xtags:applyTemp| |12620|New|Nor|2002-09-13|position() and last() do not work in xtags:templat| |13794|New|Blk|2002-10-20|Unable to list the tag librairies in the custom ta| |13971|New|Maj|2002-10-25|Style tag does not work with Tomcat 4 with xml or | |14214|New|Maj|2002-11-04|[PATCH] io:http - can't invoke POS| |15129|New|Nor|2002-12-06|Distribution of this CTLX is unuseable| |15551|New|Nor|2002-12-19|error: output must have content-handler property | |17211|New|Blk|2003-02-19|FIX: Tomcat 4.1.x taglib pooling causes problems | |18198|New|Nor|2003-03-20|[PATCH] Cache - Overloading CacheUtil methods | |18499|New|Enh|2003-03-30|[cache] per cache entry lifetime | |18716|Inf|Nor|2003-04-04|XTAGS LIBRARY PROBLEM IN 4.1.18 | |19292|New|Enh|2003-04-24|request tag add the ability to store output in pag| |19754|New|Nor|2003-05-08|TLDParser web.xml and errorstag | |20725|New|Nor|2003-06-12|Incorrect property setter signature for Tag handle| |21928|New|Nor|2003-07-28|Extra space added in the return text of xtags | |22765|New|Nor|2003-08-27|Wrong values from position() and last() functions | |23363|New|Maj|2003-09-23|JNDI Taglib does not close context when using | |27323|New|Enh|2004-02-29|Remove useless tag | |27597|New|Nor|2004-03-11|: set Content-Type header | |27717|New|Maj|2004-03-16| very slow in JSTL 1.1 | |27978|New|Nor|2004-03-26|URLTag nesting into BodyTag does not work more the| |28280|New|Nor|2004-04-08|bug in xtags:parse whith using a attribute reader | |28301|New|Nor|2004-04-08|XTags are not working for Tomcat 4.1.18 | |28814|New|Nor|2004-05-06|mt:header are ignored| |28913|New|Maj|2004-05-11|Content-Type not working properly | |29194|New|Nor|2004-05-25|xml-namespaces not supported | |30050|Ass|Maj|2004-07-12|Explicit dependency to Xalan breaks JSTL xml tags | |30427|New|Nor|2004-08-01|Response contents can be truncated prematurely| |31009|New|Nor|2004-09-02|io:http tag caches JSPWriter | |31859|New|Enh|2004-10-23|Add filename based Content-ID to attachments and u| |31869|New|Enh|2004-10-24|Allow DataHandler attachments in the attach tag | |33032|New|Nor|2005-01-11|string() works incorrectly in conjunction with sco| |33934|New|Cri|2005-03-09|[standard] memory leak in jstl c:set tag | |34137|New|Nor|2005-03-22|getAttribute using iterate reuses bodycontent on 2| |34703|New|Maj|2005-05-02|Invalid synchronization in PageData leads to java.| |34786|New|Nor|2005-05-06|Attachments are not cleared in between re-uses of | |34788|New|Nor|2005-05-06|Cannot set the filename of an attachment independe| |34789|New|Nor|2005-05-06|Cannot send multi-part Plain Text and HTML emails | |35780|New|Nor|2005-07-18|Missing attr
Bug report for Tomcat 7 [2009/11/29]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |47823|New|Enh|2009-09-11|Inconsistent naming of boolean getters in Standard| |48222|New|Enh|2009-11-18|Source JARs empty in maven central| |48240|New|Nor|2009-11-19|Tomcat-Lite missing @Override markers | |48267|Opn|Nor|2009-11-23|Patch to fix generics in javax packages | |48268|New|Nor|2009-11-23|Patch to fix generics in tomcat-lite | |48282|New|Nor|2009-11-25|Possible NPE in org.apache.tomcat.util.modeler.Reg| |48285|New|Nor|2009-11-25|ApplicationFilterFactory.matchDispatcher() fails t| |48287|New|Nor|2009-11-25|ApplicationContextFacade - generics fixes | |48288|New|Nor|2009-11-25|Patch to fix generics in javax.el package helpers | |48289|New|Nor|2009-11-25|ElSupport - Javadoc and generics fixes| |48296|New|Nor|2009-11-28|Generics fixes| |48297|New|Nor|2009-11-28|webservices.ServiceRefFactory.initHandlerChain add| |48299|New|Enh|2009-11-29|Add Javadoc target to build file | +-+---+---+--+--+ | Total 13 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Bug report for Tomcat 6 [2009/11/29]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |39661|Opn|Enh|2006-05-25|Please document JULI FileHandler configuration pro| |41128|Inf|Enh|2006-12-07|Reference to java Thread name from RequestProcesso| |41679|New|Enh|2007-02-22|SemaphoreValve should be able to filter on url pat| |41791|New|Enh|2007-03-07|Tomcat behaves inconsistently concerning flush-pac| |41883|Ass|Enh|2007-03-18|use abstract wrapper instead of plain X509Certific| |41944|New|Enh|2007-03-25|Start running the RAT tool to see where we're miss| |41992|New|Enh|2007-03-30|Need ability to set OS process title | |42463|New|Enh|2007-05-20|"crossContext" and classloader issues - pls amend | |43001|New|Enh|2007-07-30|JspC lacks setMappedFile and setDie for use in Ant| |43003|New|Enh|2007-07-30|Separate dependent component download and build ta| |43400|New|Enh|2007-09-14|enum support for tag libs | |43497|New|Enh|2007-09-26|Add ability to escape rendered output of JSP expre| |43548|Opn|Enh|2007-10-04|xml schema for tomcat-users.xml | |43642|New|Enh|2007-10-17|Add prestartminSpareThreads attribute for Executor| |43682|New|Enh|2007-10-23|JULI: web-inf/classes/logging.properties to suppor| |43742|New|Enh|2007-10-30|.tag compiles performed one at a time -- extremel| |43790|Ass|Enh|2007-11-03|concurrent access issue on TagHandlerPool | |43979|New|Enh|2007-11-27|Add abstraction for Java and Classfile output | |44047|New|Enh|2007-12-10|Provide a way for Tomcat to serve up error pages w| |44106|New|Enh|2007-12-19|autodeploy configures directories which do not con| |44199|New|Enh|2008-01-10|expose current backlog queue size | |44225|New|Enh|2008-01-14|SSL connector tries to load the private keystore f| |44264|New|Enh|2008-01-18|Clustering - Support for disabling multicasting an| |44265|New|Enh|2008-01-18|Improve JspWriterImpl performance with "inline" su| |44284|New|Enh|2008-01-23|Support java.lang.Iterable in c:forEach tag | |44294|New|Enh|2008-01-25|Support for EL functions with varargs | |44299|New|Enh|2008-01-26|Provider manager app with a log out button| |44312|New|Enh|2008-01-28|Warn when overwritting docBase of the default Host| |44598|New|Enh|2008-03-13|JAASRealm is suppressing Exceptions | |44645|New|Enh|2008-03-20|[Patch] JNDIRealm - Doesn't support JNDI "java.nam| |44787|New|Enh|2008-04-09|provide more error context on "java.lang.IllegalSt| |44818|New|Enh|2008-04-13|tomcat hangs with GET when content-length is defin| |45014|New|Enh|2008-05-15|Request and Response classes should have wrappers | |45255|New|Enh|2008-06-23|support disable jsessionid from url against sessio| |45282|New|Enh|2008-06-25|NioReceiver doesn't close cleanly, leaving sockets| |45283|Opn|Enh|2008-06-25|Allow multiple authenticators to be added to pipel| |45428|New|Enh|2008-07-18|warn if the tomcat stop doesn't complete | |45654|New|Enh|2008-08-19|use static methods and attributes in a direct way!| |45731|New|Enh|2008-09-02|Enhancement request : pluggable httpsession cache | |45794|New|Enh|2008-09-12|Patch causes JNDIRealm to bind with user entered c| |45832|New|Enh|2008-09-18|add DIGEST authentication support to Ant tasks| |45871|New|Enh|2008-09-23|Support for salted and digested patches in DataSou| |45878|New|Enh|2008-09-24|Generated jars do not contain proper manifests or | |45879|Opn|Enh|2008-09-24|Windows installer fails to install NOTICE and RELE| |45931|Opn|Enh|2008-10-01|trimSpaces incorrectly modifies output| |45995|New|Enh|2008-10-13|RFE - MIME type extension not case sensitive | |46173|New|Enh|2008-11-09|Small patch for manager app: Setting an optional c| |46263|New|Enh|2008-11-21|Tomcat reloading of context does not update contex| |46264|New|Enh|2008-11-21|Shutting down tomcat with large number of contexts| |46284|New|Enh|2008-11-24|Add flag to DeltaManager that blocks processing cl| |46323|New|Enh|2008-12-02|NTLM Authentication for Microsoft Active Directory| |46350|
Bug report for Tomcat 5 [2009/11/29]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |27122|Opn|Enh|2004-02-20|IE plugins cannot access components through Tomcat| |28039|Opn|Enh|2004-03-30|Cluster Support for SingleSignOn | |29494|Inf|Enh|2004-06-10|No way to set PATH when running as a service on Wi| |33262|Inf|Enh|2005-01-27|Service Manager autostart should check for adminis| |33453|Opn|Enh|2005-02-08|Jasper should recompile JSP files whose datestamps| |33671|Opn|Enh|2005-02-21|Manual Windows service installation with custom na| |34801|New|Enh|2005-05-08|PATCH: CGIServlet does not terminate child after a| |34805|Ass|Enh|2005-05-08|warn about invalid security constraint url pattern| |34868|Ass|Enh|2005-05-11|allow to register a trust store for a session that| |35054|Inf|Enh|2005-05-25|warn if appBase is not existing as a File or direc| |36133|Inf|Enh|2005-08-10|Support JSS SSL implementation| |36362|New|Enh|2005-08-25|missing check for Java reserved keywords in tag fi| |36569|Inf|Enh|2005-09-09|Redirects produce illegal URL's | |36837|Inf|Enh|2005-09-28|Looking for ProxyHandler implementation of Http re| |36922|Inf|Enh|2005-10-04|setup.sh file mis-advertised and missing | |37018|Ass|Enh|2005-10-11|Document how to use tomcat-SSL with a pkcs11 token| |37334|Inf|Enh|2005-11-02|Realm digest property not aligned with the adminis| |37449|Opn|Enh|2005-11-10|Two UserDatabaseRealm break manager user | |37485|Inf|Enh|2005-11-14|I'd like to run init SQL after JDBC Connection cre| |37847|Ass|Enh|2005-12-09|Allow User To Optionally Specify Catalina Output F| |37848|Opn|Trv|2005-12-09|Inappropriate Output From catalina.sh When No Term| |38216|Inf|Enh|2006-01-10|Extend Jmxproxy to allow call of MBean Operations | |38268|Inf|Enh|2006-01-13|User friendly: Need submit button on adding/deleti| |38360|Inf|Enh|2006-01-24|Domain for session cookies| |38546|Inf|Enh|2006-02-07|Google bot sends invalid If-Modifed-Since Header, | |38577|Inf|Enh|2006-02-08|Enhance logging of security failures | |38743|New|Min|2006-02-21|when using APR, JKS options are silently ignored | |38797|Opn|Nor|2006-02-27|5.5.12 and 5.5.15 emit different code on | |41007|Opn|Enh|2006-11-20|Can't define customized 503 error page| |41179|New|Enh|2006-12-15|400 Bad Request response during auto re-deployment| |41227|Opn|Enh|2006-12-21|When the jasper compiler fails to compile a JSP, i| |41337|Opn|Enh|2007-01-10|Display an error page if no cert is available on C| |41496|New|Enh|2007-01-30|set a security provider for jsse in a connector co| |41498|New|Enh|2007-01-30|allRolesMode Realm configuration option not docume| |41539|Inf|Enh|2007-02-05|NullPointerException during Embedded tomcat restar| |41673|New|Enh|2007-02-21|Jasper output the message of compiling error using| |41697|Ver|Enh|2007-02-25|make visible in debug output if charset from brows| |41709|Inf|Enh|2007-02-26|When calling the API that relates to the buffer af| |41718|New|Enh|2007-02-27|Status 302 response to GET request has no body whe| |42390|New|Maj|2007-05-11|JSP compilation error with nested tagfile tags wit| |42416|New|Enh|2007-05-14|Tomcat startup hangs and AJP13 connector port 8009| |43423|New|Enh|2007-09-18|catalina.sh -force too fast | |43538|New|Enh|2007-10-02|[patch] Show the hostname and IP address in the ma| |43796|Inf|Enh|2007-11-05|Add MIME type mapping for the "log" extension | |43866|New|Enh|2007-11-14|add support for session attribute propagation with| |43925|Opn|Enh|2007-11-21|org.apache.jasper.runtime.BodyContentImpl causing | |43960|New|Enh|2007-11-26|Expose StandardWrapper unavailable and/or availabl| |43991|New|Enh|2007-11-29|Contributing a URLResourceFactory | |44041|Opn|Cri|2007-12-07|WebappClassLoader duplicate class definition under| |44216|New|Enh|2008-01-11|Don't reuse session ID even if emptySessionPath=tr| |44309|New|Enh|2008-01-28|Possible overriding the security state of the conn| |44399|New|Enh|
Bug report for Tomcat Connectors [2009/11/29]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |24427|New|Enh|2003-11-05|Tomcat mod_jk - Excludes in Redirection | |34526|Opn|Nor|2005-04-19|Truncated content in decompressed requests from mo| |35959|Opn|Enh|2005-08-01|mod_jk not independant of UseCanonicalName| |36155|Opn|Nor|2005-08-12|tomcat chooses wrong host if using mod_jk | |36169|New|Enh|2005-08-12|[PATCH] Enable chunked encoding for requests in II| |38895|Inf|Nor|2006-03-08|Http headers with an underscore "_" change into hy| |39967|Inf|Nor|2006-07-05|mod_jk gives segmentation fault when apache is sta| |40208|Inf|Nor|2006-08-08|Request-Dump when ErrorDocument in httpd.conf is a| |41170|Inf|Nor|2006-12-13|single crlf in header termination crashes app.| |41430|New|Reg|2007-01-22|JkOptions +ForwardDirectories with Apache's Direct| |41695|New|Maj|2007-02-24|mod_jk with httpd 2.0.58 on Solaris-10 11/06 dumpi| |41923|Opn|Nor|2007-03-21|Tomcat doesnt recognized client abort | |42366|Inf|Nor|2007-05-09|Memory leak in newer mod_jk version when connectio| |42554|Opn|Nor|2007-05-31|mod_ssl + mod_jk with status_worker does not work | |43303|New|Enh|2007-09-04|Versioning under Windows not reported by many conn| |43821|New|Enh|2007-11-08|provide client AJP IP address | |43968|New|Enh|2007-11-26|[patch] support ipv6 with mod_jk | |44290|New|Nor|2008-01-24|mod_jk/1.2.26: retry is not useful for an importan| |44349|New|Maj|2008-02-04|mod_jk/1.2.26 module does not read worker.status.s| |44379|New|Enh|2008-02-07|convert the output of strftime into UTF-8 | |44454|New|Nor|2008-02-19|busy count reported in mod_jk inflated, causes inc| |44571|New|Enh|2008-03-10|Limits busy per worker to a threshold | |45063|New|Nor|2008-05-22|JK-1.2.26 IIS ISAPI filter issue when running diff| |45182|New|Enh|2008-06-10|Add functionality to automate the jkmanager disabl| |45313|New|Nor|2008-06-30|mod_jk 1.2.26 & apache 2.2.9 static compiled on so| |45357|Opn|Enh|2008-07-07|Add property to specify custom maintenance page wh| |45395|New|Min|2008-07-14|MsgAjp dump method does not dump packet when being| |45610|New|Nor|2008-08-11|status-worker: Bug in request parameter parsing fo| |46337|New|Nor|2008-12-04|real worker name is wrong | |46406|New|Enh|2008-12-16|Supporting relative paths in isapi_redirect.proper| |46503|New|Nor|2009-01-09|Garbage characters in cluster domain field| |46632|New|Nor|2009-01-29|mod_jk's sockets close prematurely when the server| |46676|New|Enh|2009-02-09|Configurable test request for Watchdog thread | |46763|New|Enh|2009-02-24|Improve treatment of jk_log_lock. | |46767|New|Enh|2009-02-25|mod_jk to send DECLINED in case no fail-over tomca| |46862|New|Nor|2009-03-16|Status worker Properties output format (worker.wlb| |46893|New|Nor|2009-03-23|mod_jk statically compiled always outputs warning | |47038|New|Enh|2009-04-15|USE_FLOCK_LK redefined compiler warning when using| |47222|New|Nor|2009-05-19|Changes made to ping_timeout via Status Worker not| |47224|New|Nor|2009-05-19|Hostname and Port Changes from Status Worker do no| |47327|New|Enh|2009-06-07|remote_user not logged in apache logfile | |47617|New|Enh|2009-07-31|include time spent doing ajp_get_endpoint() in err| |47678|New|Nor|2009-08-11|Unable to allocate shared memory when using isapi_| |47679|New|Nor|2009-08-11|Not all headers get passed to Tomcat server from i| |47692|New|Blk|2009-08-12|Can not compile mod_jk with apache2.0.63 and tomca| |47714|New|Cri|2009-08-20|Reponse mixed between users | |47750|New|Maj|2009-08-27|Loss of worker settings when changing via jkstatus| |47795|New|Maj|2009-09-07|service sticky_session not being set correctly wit| |47806|New|Blk|2009-09-08|HTTP 500 internal server error| |47840|New|Min|2009-09-14|A broken worker name is written in the log file. | |47983|New|Nor|2009-10-12|typo in documentation | |48069|
Bug report for Tomcat Native [2009/11/29]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |38372|Inf|Cri|2006-01-25|tcnative-1.dll response overflow corruption, parti| |41361|New|Nor|2007-01-14|Content lost when read by a slow client. | |42090|New|Cri|2007-04-11|tcnative badly handles some OpenSSL disconnections| |45392|New|Nor|2008-07-14|No OCSP support for client SSL verification | |46041|New|Cri|2008-10-20|Tomcat service is terminated unexpectedly (tcnativ| |46179|New|Maj|2008-11-10|apr ssl client authentication | |46571|New|Nor|2009-01-21|tcnative blocks in APR poll on Solaris| |47319|New|Nor|2009-06-05|With APR, getRemoteHost() returns NULL for unknown| |47851|New|Nor|2009-09-16|thread-safety issues in the TC native Java code | |48129|New|Nor|2009-11-04|[PATCH] Fix build with OpenSSL 1.0.0-beta3| |48253|New|Min|2009-11-20|Tomcat Native patch - adding dynamic locking callb| +-+---+---+--+--+ | Total 11 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 23363] JNDI Taglib does not close context when using tag
https://issues.apache.org/bugzilla/show_bug.cgi?id=23363 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #3 from Henri Yandell 2009-11-29 19:34:53 UTC --- Resolving as the JNDI taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 20725] Incorrect property setter signature for Tag handlers
https://issues.apache.org/bugzilla/show_bug.cgi?id=20725 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:35:06 UTC --- Resolving as the JNDI taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 34137] getAttribute using iterate reuses bodycontent on 2nd call.
https://issues.apache.org/bugzilla/show_bug.cgi?id=34137 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:35:19 UTC --- Resolving as the JNDI taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 18198] [PATCH] Cache - Overloading CacheUtil methods
https://issues.apache.org/bugzilla/show_bug.cgi?id=18198 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #2 from Henri Yandell 2009-11-29 19:37:50 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 18499] [cache] per cache entry lifetime
https://issues.apache.org/bugzilla/show_bug.cgi?id=18499 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #2 from Henri Yandell 2009-11-29 19:37:58 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 39612] Sudden Nullpointerexception in LRUCache
https://issues.apache.org/bugzilla/show_bug.cgi?id=39612 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #2 from Henri Yandell 2009-11-29 19:38:06 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 36709] Documentation inconsistent with servlet 2.4 spec
https://issues.apache.org/bugzilla/show_bug.cgi?id=36709 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:38:14 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 6347] io:param should url encode
https://issues.apache.org/bugzilla/show_bug.cgi?id=6347 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:38:28 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 14214] [PATCH] io:http - can't invoke POS
https://issues.apache.org/bugzilla/show_bug.cgi?id=14214 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:38:36 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 19292] request tag add the ability to store output in page scope variable
https://issues.apache.org/bugzilla/show_bug.cgi?id=19292 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:38:44 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 26867] Inconsistent behavior of
https://issues.apache.org/bugzilla/show_bug.cgi?id=26867 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:38:52 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 27978] URLTag nesting into BodyTag does not work more then one URLTag used
https://issues.apache.org/bugzilla/show_bug.cgi?id=27978 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:39:00 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 30427] Response contents can be truncated prematurely
https://issues.apache.org/bugzilla/show_bug.cgi?id=30427 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:39:08 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 31009] io:http tag caches JSPWriter
https://issues.apache.org/bugzilla/show_bug.cgi?id=31009 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #2 from Henri Yandell 2009-11-29 19:39:16 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 38192] Multiple uses of fails
https://issues.apache.org/bugzilla/show_bug.cgi?id=38192 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #2 from Henri Yandell 2009-11-29 19:39:24 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 38362] tag is sometimes causing "java.io.IOException: Stream closed"
https://issues.apache.org/bugzilla/show_bug.cgi?id=38362 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:39:30 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 24715] Remote SMTP server fix
https://issues.apache.org/bugzilla/show_bug.cgi?id=24715 Henri Yandell changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution||LATER --- Comment #7 from Henri Yandell 2009-11-29 19:39:39 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 25190] waitUntilSent attribute for send tag
https://issues.apache.org/bugzilla/show_bug.cgi?id=25190 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #6 from Henri Yandell 2009-11-29 19:39:45 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 27323] Remove useless tag
https://issues.apache.org/bugzilla/show_bug.cgi?id=27323 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:39:52 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 27597] : set Content-Type header
https://issues.apache.org/bugzilla/show_bug.cgi?id=27597 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #2 from Henri Yandell 2009-11-29 19:39:59 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 28814] mt:header are ignored
https://issues.apache.org/bugzilla/show_bug.cgi?id=28814 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #2 from Henri Yandell 2009-11-29 19:40:07 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 28913] Content-Type not working properly
https://issues.apache.org/bugzilla/show_bug.cgi?id=28913 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #4 from Henri Yandell 2009-11-29 19:40:14 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 31859] Add filename based Content-ID to attachments and url based message bodies.
https://issues.apache.org/bugzilla/show_bug.cgi?id=31859 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #4 from Henri Yandell 2009-11-29 19:40:21 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 31869] Allow DataHandler attachments in the attach tag
https://issues.apache.org/bugzilla/show_bug.cgi?id=31869 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:40:29 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 34786] Attachments are not cleared in between re-uses of a mail tag
https://issues.apache.org/bugzilla/show_bug.cgi?id=34786 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:40:35 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 34788] Cannot set the filename of an attachment independently of its original name
https://issues.apache.org/bugzilla/show_bug.cgi?id=34788 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:40:41 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 34789] Cannot send multi-part Plain Text and HTML emails
https://issues.apache.org/bugzilla/show_bug.cgi?id=34789 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:40:48 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 35780] Missing attribute in mt:message tag documentation
https://issues.apache.org/bugzilla/show_bug.cgi?id=35780 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:40:55 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 39665] Incorrect mailer configuration in documentation
https://issues.apache.org/bugzilla/show_bug.cgi?id=39665 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:41:05 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 36896] jsp import error: url /abc/./../def not abc/def
https://issues.apache.org/bugzilla/show_bug.cgi?id=36896 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:41:15 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 12133] scrape not work for some urls the request for a cookie
https://issues.apache.org/bugzilla/show_bug.cgi?id=12133 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:41:54 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 26608] strip="true" causes exception when no tags available to strip
https://issues.apache.org/bugzilla/show_bug.cgi?id=26608 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:42:01 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 34703] Invalid synchronization in PageData leads to java.lang.IllegalThreadStateException
https://issues.apache.org/bugzilla/show_bug.cgi?id=34703 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:42:07 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 46422] problem with
https://issues.apache.org/bugzilla/show_bug.cgi?id=46422 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:42:15 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 11217] Custom Tag Library Error: 'Tag library ""not found on server'
https://issues.apache.org/bugzilla/show_bug.cgi?id=11217 Henri Yandell changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:42:55 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 13794] Unable to list the tag librairies in the custom tag library drop down
https://issues.apache.org/bugzilla/show_bug.cgi?id=13794 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #2 from Henri Yandell 2009-11-29 19:43:09 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 15129] Distribution of this CTLX is unuseable
https://issues.apache.org/bugzilla/show_bug.cgi?id=15129 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:43:18 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 19754] TLDParser web.xml and errorstag
https://issues.apache.org/bugzilla/show_bug.cgi?id=19754 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER Summary|TLDParser web.xml and |TLDParser web.xml and |errorstag |errorstag --- Comment #1 from Henri Yandell 2009-11-29 19:43:26 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 6390] valueOf evaluates &'s to & when the & was part of é
https://issues.apache.org/bugzilla/show_bug.cgi?id=6390 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:43:35 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 6613] cannot use xtags:style more than one time per page
https://issues.apache.org/bugzilla/show_bug.cgi?id=6613 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:43:45 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 11347] xtags:if test="position()!=last()" - position() & last() always return zero
https://issues.apache.org/bugzilla/show_bug.cgi?id=11347 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:44:00 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 11361] Allow user to create own URIResolver
https://issues.apache.org/bugzilla/show_bug.cgi?id=11361 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:44:44 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 12618] Mode attribute on xtags:template & xtags:applyTemplates does not work
https://issues.apache.org/bugzilla/show_bug.cgi?id=12618 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #6 from Henri Yandell 2009-11-29 19:44:53 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 12620] position() and last() do not work in xtags:template match attributes
https://issues.apache.org/bugzilla/show_bug.cgi?id=12620 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #2 from Henri Yandell 2009-11-29 19:45:03 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 22765] Wrong values from position() and last() functions with forEach
https://issues.apache.org/bugzilla/show_bug.cgi?id=22765 --- Comment #6 from Henri Yandell 2009-11-29 19:46:05 UTC --- Also looks like this was a problem with xtags: https://issues.apache.org/bugzilla/show_bug.cgi?id=12620 -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 13971] Style tag does not work with Tomcat 4 with xml or xsl as BodyContent
https://issues.apache.org/bugzilla/show_bug.cgi?id=13971 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #3 from Henri Yandell 2009-11-29 19:46:41 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 15551] error: output must have content-handler property
https://issues.apache.org/bugzilla/show_bug.cgi?id=15551 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:47:03 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 17211] FIX: Tomcat 4.1.x taglib pooling causes problems
https://issues.apache.org/bugzilla/show_bug.cgi?id=17211 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #2 from Henri Yandell 2009-11-29 19:47:11 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 18716] XTAGS LIBRARY PROBLEM IN 4.1.18
https://issues.apache.org/bugzilla/show_bug.cgi?id=18716 Henri Yandell changed: What|Removed |Added Status|NEEDINFO|RESOLVED Resolution||LATER --- Comment #2 from Henri Yandell 2009-11-29 19:47:24 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 21928] Extra space added in the return text of xtags
https://issues.apache.org/bugzilla/show_bug.cgi?id=21928 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #2 from Henri Yandell 2009-11-29 19:47:32 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 28280] bug in xtags:parse whith using a attribute reader
https://issues.apache.org/bugzilla/show_bug.cgi?id=28280 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:47:40 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 28301] XTags are not working for Tomcat 4.1.18
https://issues.apache.org/bugzilla/show_bug.cgi?id=28301 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:47:48 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 29194] xml-namespaces not supported
https://issues.apache.org/bugzilla/show_bug.cgi?id=29194 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #4 from Henri Yandell 2009-11-29 19:47:56 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 37990] Changed Jaxen API breaks Taglib
https://issues.apache.org/bugzilla/show_bug.cgi?id=37990 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #1 from Henri Yandell 2009-11-29 19:48:04 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 46187] problem with XTAG:attribute on Tomcat 5.5
https://issues.apache.org/bugzilla/show_bug.cgi?id=46187 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #3 from Henri Yandell 2009-11-29 19:48:12 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 47681] count function returning incorrect results
https://issues.apache.org/bugzilla/show_bug.cgi?id=47681 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||LATER --- Comment #3 from Henri Yandell 2009-11-29 19:48:33 UTC --- Resolving. Taglib has been retired. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 41481] Error when nested x:forEach loops where the inner x:forEach iterates over the parsed results of a *different* xml file.
https://issues.apache.org/bugzilla/show_bug.cgi?id=41481 Henri Yandell changed: What|Removed |Added Status|NEEDINFO|RESOLVED Resolution||WORKSFORME --- Comment #22 from Henri Yandell 2009-11-29 19:52:06 UTC --- Inactive issue. Resolving as Worksforme as the issue was in the reporter's environment. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 43632] NullPointerException in x:transform
https://issues.apache.org/bugzilla/show_bug.cgi?id=43632 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||WONTFIX --- Comment #7 from Henri Yandell 2009-11-29 19:53:55 UTC --- Resolving as I can't see how the code could be NPE'ing there and we needed more info to get any further. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 30050] Explicit dependency to Xalan breaks JSTL xml tags with J2SE 1.5
https://issues.apache.org/bugzilla/show_bug.cgi?id=30050 Henri Yandell changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution||LATER --- Comment #5 from Henri Yandell 2009-11-29 19:55:07 UTC --- Resolving as getting off of Xalan is, while desirable, unlikely. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 22765] Wrong values from position() and last() functions with forEach
https://issues.apache.org/bugzilla/show_bug.cgi?id=22765 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||WONTFIX --- Comment #7 from Henri Yandell 2009-11-29 19:56:10 UTC --- Resolving as wontfix. Not a part of the spec that I would advise relying on. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
DO NOT REPLY [Bug 33032] string() works incorrectly in conjunction with scoped variables
https://issues.apache.org/bugzilla/show_bug.cgi?id=33032 Henri Yandell changed: What|Removed |Added Status|NEW |RESOLVED Resolution||WONTFIX --- Comment #5 from Henri Yandell 2009-11-29 19:57:05 UTC --- Resolving as wontfix. No obvious path to resolution; this isn't a part of the spec I would rely on. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org