issue_id
int64
2.03k
426k
title
stringlengths
9
251
body
stringlengths
1
32.8k
status
stringclasses
6 values
after_fix_sha
stringlengths
7
7
project_name
stringclasses
6 values
repo_url
stringclasses
6 values
repo_name
stringclasses
6 values
language
stringclasses
1 value
issue_url
null
before_fix_sha
null
pull_url
null
commit_datetime
timestamp[us, tz=UTC]
report_datetime
timestamp[us, tz=UTC]
updated_file
stringlengths
2
187
file_content
stringlengths
0
368k
48,217
Bug 48217 Loggers should be final
null
resolved fixed
0d7263a
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-18T12:10:12Z
2009-11-17T20:33:20Z
java/org/apache/coyote/http11/Http11Protocol.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,230
Bug 48230 Unused imports
null
resolved fixed
84d49a0
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-18T23:10:53Z
2009-11-18T18:46:40Z
java/org/apache/catalina/Authenticator.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,230
Bug 48230 Unused imports
null
resolved fixed
84d49a0
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-18T23:10:53Z
2009-11-18T18:46:40Z
java/org/apache/catalina/authenticator/FormAuthenticator.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,230
Bug 48230 Unused imports
null
resolved fixed
84d49a0
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-18T23:10:53Z
2009-11-18T18:46:40Z
java/org/apache/tomcat/util/net/NioEndpoint.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,230
Bug 48230 Unused imports
null
resolved fixed
84d49a0
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-18T23:10:53Z
2009-11-18T18:46:40Z
modules/jdbc-pool/test/org/apache/tomcat/jdbc/test/TestSuspectTimeout.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,197
Bug 48197 XByteBuffer: privatize public fields; fix Javadoc
null
resolved fixed
a1cb0c3
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-18T23:22:13Z
2009-11-14T12:00:00Z
java/org/apache/catalina/tribes/io/XByteBuffer.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,172
Bug 48172 JspRuntimeContext synch. problems.
JspRuntimeContext.jspReloadCount is synchronised when updated, but not when read by getJspReloadCount(). If the instance is accessed from multiple threads, then the returned value may not be the current value, it could be arbitrarily stale. If this is acceptable, then the Javadoc should say so; otherwise the getter nee...
resolved fixed
242b6a3
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-18T23:33:57Z
2009-11-11T09:00:00Z
java/org/apache/jasper/compiler/JspRuntimeContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,234
Bug 48234 org.apache.catalina.core.ContainerBase.getLogger() not thread-safe?
org.apache.catalina.core.ContainerBase.getLogger() is not synchronised, yet all the other methods which access org.apache.catalina.core.ContainerBase.logger are synch. This seems wrong. org.apache.catalina.core.ContainerBase.logger should probably be private to prevent unsynch. access by subclasses. Similar considerati...
resolved fixed
c53173b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-19T02:01:57Z
2009-11-18T21:33:20Z
java/org/apache/catalina/core/ContainerBase.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,252
Bug 48252 StackOverflowError in NioEndpoint.setProperty when setting jkHome
- Noticed only when running in debugger with breakpoint set for StackOverflowError. - The error is translated by Java's reflection mechanism to an InvocationTargetException, which is caught and silently ignored by IntrospectionUtils. - Connector.initialize() sets jkHome property on Http11NioProtocol. - Http11NioProtoco...
resolved fixed
c0cb61b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-20T16:57:31Z
2009-11-20T12:26:40Z
java/org/apache/tomcat/util/IntrospectionUtils.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,252
Bug 48252 StackOverflowError in NioEndpoint.setProperty when setting jkHome
- Noticed only when running in debugger with breakpoint set for StackOverflowError. - The error is translated by Java's reflection mechanism to an InvocationTargetException, which is caught and silently ignored by IntrospectionUtils. - Connector.initialize() sets jkHome property on Http11NioProtocol. - Http11NioProtoco...
resolved fixed
c0cb61b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-20T16:57:31Z
2009-11-20T12:26:40Z
java/org/apache/tomcat/util/net/AbstractEndpoint.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,718
Bug 47718 ManagerBase leaks fd to /dev/urandom when context stopped
On operating systems where /dev/urandom exists, org.apache.catalina.session.ManagerBase will use it as a source of data for getRandomBytes(). If you stop a context or undeploy a host, the number of file descriptors that have /dev/urandom open tomcat remains constant. For example, if you use the manager application to s...
resolved fixed
ae5c640
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-22T19:39:33Z
2009-08-20T17:40:00Z
java/org/apache/catalina/session/ManagerBase.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,997
Bug 47997 NamingContextListener fails to add itself as a PropertyChangeListener to all namingResources
null
resolved fixed
58162ed
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-22T19:59:51Z
2009-10-14T22:40:00Z
java/org/apache/catalina/core/NamingContextListener.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,462
Bug 47462 The annotation doesn't become effective.(metadata-complete="false" is not effective.)
null
resolved fixed
04b0838
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-22T20:49:04Z
2009-07-01T06:33:20Z
java/org/apache/catalina/startup/WebRuleSet.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,799
Bug 47799 Domain does not work in Membership and DomainFilterInterceptor.
null
resolved fixed
94c643b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-22T22:37:43Z
2009-09-08T06:06:40Z
java/org/apache/catalina/tribes/group/interceptors/DomainFilterInterceptor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,799
Bug 47799 Domain does not work in Membership and DomainFilterInterceptor.
null
resolved fixed
94c643b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-22T22:37:43Z
2009-09-08T06:06:40Z
java/org/apache/catalina/tribes/membership/McastService.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,049
Bug 48049 org.apache.naming.NamingContext's destroySubcontext() method doesn't invoke itself recursively, but invoke unbind() method
Below is the original implementation of destroySubcontext(Name name) method: public void destroySubcontext(Name name) throws NamingException { checkWritable(); while ((!name.isEmpty()) && (name.get(0).length() == 0)) name = name.getSuffix(1); if (name.isEmpty()) throw new NamingException (sm.getString("namingContext.in...
resolved fixed
af8a612
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-22T22:56:53Z
2009-10-25T11:26:40Z
java/org/apache/naming/NamingContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,249
Bug 48249 org.apache.tomcat.util.net.NioBlockingSelector.BlockPoller.run <= volatile
org.apache.tomcat.util.net.NioBlockingSelector.BlockPoller.run should be volatile, as it is used to communicate between running threads.
resolved fixed
c7d7ba2
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:28:03Z
2009-11-20T09:40:00Z
java/org/apache/tomcat/util/net/NioBlockingSelector.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,248
Bug 48248 tribes.group.interceptors.MessageDispatchInterceptor.run should be volatile
org.apache.catalina.tribes.group.interceptors.MessageDispatchInterceptor.run should be volatile, as it is used to communicate between running threads.
resolved fixed
a524187
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:31:43Z
2009-11-20T09:40:00Z
java/org/apache/catalina/tribes/group/GroupChannel.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,248
Bug 48248 tribes.group.interceptors.MessageDispatchInterceptor.run should be volatile
org.apache.catalina.tribes.group.interceptors.MessageDispatchInterceptor.run should be volatile, as it is used to communicate between running threads.
resolved fixed
a524187
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:31:43Z
2009-11-20T09:40:00Z
java/org/apache/catalina/tribes/group/interceptors/MessageDispatchInterceptor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,248
Bug 48248 tribes.group.interceptors.MessageDispatchInterceptor.run should be volatile
org.apache.catalina.tribes.group.interceptors.MessageDispatchInterceptor.run should be volatile, as it is used to communicate between running threads.
resolved fixed
a524187
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:31:43Z
2009-11-20T09:40:00Z
java/org/apache/catalina/tribes/group/interceptors/TcpPingInterceptor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,248
Bug 48248 tribes.group.interceptors.MessageDispatchInterceptor.run should be volatile
org.apache.catalina.tribes.group.interceptors.MessageDispatchInterceptor.run should be volatile, as it is used to communicate between running threads.
resolved fixed
a524187
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:31:43Z
2009-11-20T09:40:00Z
java/org/apache/catalina/tribes/membership/McastServiceImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,239
Bug 48239 HexUtils exposes public array
null
resolved fixed
55e5052
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:36:10Z
2009-11-19T11:26:40Z
java/org/apache/coyote/ajp/AjpAprProcessor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,239
Bug 48239 HexUtils exposes public array
null
resolved fixed
55e5052
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:36:10Z
2009-11-19T11:26:40Z
java/org/apache/coyote/ajp/AjpProcessor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,239
Bug 48239 HexUtils exposes public array
null
resolved fixed
55e5052
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:36:10Z
2009-11-19T11:26:40Z
java/org/apache/coyote/http11/Http11AprProcessor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,239
Bug 48239 HexUtils exposes public array
null
resolved fixed
55e5052
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:36:10Z
2009-11-19T11:26:40Z
java/org/apache/coyote/http11/Http11NioProcessor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,239
Bug 48239 HexUtils exposes public array
null
resolved fixed
55e5052
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:36:10Z
2009-11-19T11:26:40Z
java/org/apache/coyote/http11/Http11Processor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,239
Bug 48239 HexUtils exposes public array
null
resolved fixed
55e5052
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:36:10Z
2009-11-19T11:26:40Z
java/org/apache/coyote/http11/filters/ChunkedInputFilter.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,239
Bug 48239 HexUtils exposes public array
null
resolved fixed
55e5052
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:36:10Z
2009-11-19T11:26:40Z
java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,239
Bug 48239 HexUtils exposes public array
null
resolved fixed
55e5052
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:36:10Z
2009-11-19T11:26:40Z
java/org/apache/tomcat/util/buf/HexUtils.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,239
Bug 48239 HexUtils exposes public array
null
resolved fixed
55e5052
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-23T00:36:10Z
2009-11-19T11:26:40Z
java/org/apache/tomcat/util/buf/MessageBytes.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
47,836
Bug 47836 TldConfig keeps an internal list of ApplicationListeners
null
resolved fixed
92e53f3
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-24T01:27:40Z
2009-09-14T12:06:40Z
java/org/apache/catalina/core/StandardContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,836
Bug 47836 TldConfig keeps an internal list of ApplicationListeners
null
resolved fixed
92e53f3
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-24T01:27:40Z
2009-09-14T12:06:40Z
java/org/apache/catalina/startup/TldConfig.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,266
Bug 48266 Patch to fix generics in catalina
null
resolved fixed
21cd308
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-25T01:00:07Z
2009-11-23T18:13:20Z
java/org/apache/catalina/ant/jmx/JMXAccessorTask.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,266
Bug 48266 Patch to fix generics in catalina
null
resolved fixed
21cd308
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-25T01:00:07Z
2009-11-23T18:13:20Z
java/org/apache/catalina/connector/Request.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,266
Bug 48266 Patch to fix generics in catalina
null
resolved fixed
21cd308
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-25T01:00:07Z
2009-11-23T18:13:20Z
java/org/apache/catalina/core/StandardPart.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,266
Bug 48266 Patch to fix generics in catalina
null
resolved fixed
21cd308
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-25T01:00:07Z
2009-11-23T18:13:20Z
java/org/apache/catalina/ha/backend/CollectedInfo.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,266
Bug 48266 Patch to fix generics in catalina
null
resolved fixed
21cd308
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-25T01:00:07Z
2009-11-23T18:13:20Z
java/org/apache/catalina/ha/session/BackupManager.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,266
Bug 48266 Patch to fix generics in catalina
null
resolved fixed
21cd308
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-25T01:00:07Z
2009-11-23T18:13:20Z
java/org/apache/catalina/ha/tcp/ReplicationValve.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,266
Bug 48266 Patch to fix generics in catalina
null
resolved fixed
21cd308
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-25T01:00:07Z
2009-11-23T18:13:20Z
java/org/apache/catalina/tribes/tipis/AbstractReplicatedMap.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,266
Bug 48266 Patch to fix generics in catalina
null
resolved fixed
21cd308
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-25T01:00:07Z
2009-11-23T18:13:20Z
java/org/apache/catalina/tribes/transport/bio/MultipointBioSender.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,267
Bug 48267 Patch to fix generics in javax packages
null
resolved fixed
632e68c
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T17:14:16Z
2009-11-23T18:13:20Z
java/javax/annotation/Resource.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,267
Bug 48267 Patch to fix generics in javax packages
null
resolved fixed
632e68c
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T17:14:16Z
2009-11-23T18:13:20Z
java/javax/ejb/EJB.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,267
Bug 48267 Patch to fix generics in javax packages
null
resolved fixed
632e68c
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T17:14:16Z
2009-11-23T18:13:20Z
java/javax/el/BeanELResolver.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,267
Bug 48267 Patch to fix generics in javax packages
null
resolved fixed
632e68c
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T17:14:16Z
2009-11-23T18:13:20Z
java/javax/el/ELContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,267
Bug 48267 Patch to fix generics in javax packages
null
resolved fixed
632e68c
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T17:14:16Z
2009-11-23T18:13:20Z
java/javax/el/ListELResolver.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,267
Bug 48267 Patch to fix generics in javax packages
null
resolved fixed
632e68c
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T17:14:16Z
2009-11-23T18:13:20Z
java/javax/el/MapELResolver.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,267
Bug 48267 Patch to fix generics in javax packages
null
resolved fixed
632e68c
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T17:14:16Z
2009-11-23T18:13:20Z
java/javax/el/ResourceBundleELResolver.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,267
Bug 48267 Patch to fix generics in javax packages
null
resolved fixed
632e68c
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T17:14:16Z
2009-11-23T18:13:20Z
java/javax/xml/ws/WebServiceRef.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,282
Bug 48282 Possible NPE in org.apache.tomcat.util.modeler.Registry
null
resolved fixed
56897be
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T17:17:12Z
2009-11-25T11:53:20Z
java/org/apache/tomcat/util/modeler/Registry.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,285
Bug 48285 ApplicationFilterFactory.matchDispatcher() fails to check ASYNC
catalina.core.ApplicationFilterFactory.matchDispatcher(FilterMap filterMap, DispatcherType type) fails to check for type == ASYNC The extra case ought to be added (but I don't know what it should contain, so cannot provide a patch)
resolved fixed
f0a0aec
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T18:01:12Z
2009-11-25T14:40:00Z
java/org/apache/catalina/core/ApplicationFilterFactory.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,285
Bug 48285 ApplicationFilterFactory.matchDispatcher() fails to check ASYNC
catalina.core.ApplicationFilterFactory.matchDispatcher(FilterMap filterMap, DispatcherType type) fails to check for type == ASYNC The extra case ought to be added (but I don't know what it should contain, so cannot provide a patch)
resolved fixed
f0a0aec
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T18:01:12Z
2009-11-25T14:40:00Z
java/org/apache/catalina/deploy/FilterMap.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,287
Bug 48287 ApplicationContextFacade - generics fixes
null
resolved fixed
ce8d1c5
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T18:11:34Z
2009-11-25T20:13:20Z
java/org/apache/catalina/core/ApplicationContextFacade.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,288
Bug 48288 Patch to fix generics in javax.el package helpers
null
resolved fixed
2ac1900
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T18:14:19Z
2009-11-25T20:13:20Z
java/org/apache/el/lang/EvaluationContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,288
Bug 48288 Patch to fix generics in javax.el package helpers
null
resolved fixed
2ac1900
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T18:14:19Z
2009-11-25T20:13:20Z
java/org/apache/jasper/el/ELContextWrapper.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,289
Bug 48289 ElSupport - Javadoc and generics fixes
null
resolved fixed
b8599a3
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T18:20:12Z
2009-11-25T20:13:20Z
java/org/apache/el/lang/ELSupport.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,289
Bug 48289 ElSupport - Javadoc and generics fixes
null
resolved fixed
b8599a3
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T18:20:12Z
2009-11-25T20:13:20Z
test/org/apache/el/TestELEvaluation.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,342
Bug 47342 ReplicatedContext#start throws NullPointerException.
null
resolved fixed
9afe6ce
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-11-27T22:23:40Z
2009-06-10T07:46:40Z
java/org/apache/catalina/ha/context/ReplicatedContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,296
Bug 48296 Generics fixes
null
resolved fixed
ed40c2c
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-01T23:21:41Z
2009-11-28T12:06:40Z
java/org/apache/catalina/ant/jmx/JMXAccessorTask.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,296
Bug 48296 Generics fixes
null
resolved fixed
ed40c2c
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-01T23:21:41Z
2009-11-28T12:06:40Z
java/org/apache/catalina/tribes/membership/Membership.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,296
Bug 48296 Generics fixes
null
resolved fixed
ed40c2c
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-01T23:21:41Z
2009-11-28T12:06:40Z
java/org/apache/naming/resources/DirContextURLConnection.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,502
Bug 47502 clustering fails on serializing javax.security.auth.subject
Clustering fails on serializing javax.security.auth.subject. See stack below. I looked a little into the Tomcat code. In ./java/org/apache/catalina/connector/Request.java on line 1752 Tomcat puts the 'javax.security.auth.subject' on the session if you use a securitymanager. This is the MemoryUser in my case I think. I ...
resolved fixed
806200c
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-02T00:31:33Z
2009-07-09T09:00:00Z
java/org/apache/catalina/ha/session/DeltaSession.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,324
Bug 48324 Javadoc fixes for connector.Request.java
null
resolved fixed
549a5d5
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-10T16:59:29Z
2009-12-01T20:40:00Z
java/org/apache/catalina/connector/Request.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,370
Bug 48370 PublishRequest.java can not be compiled
There is a log used in org.apache.tomcat.bayeux.request.PublishRequest,but it was not be defined,so the class can not be complied successfully,there should be something like this? private static final Log log = LogFactory.getLog(PublishRequest.class);
resolved fixed
9be399f
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-11T12:14:05Z
2009-12-10T21:20:00Z
modules/bayeux/java/org/apache/tomcat/bayeux/request/PublishRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,373
Bug 48373 Can not get clients from TomcatBayeux
When call the getClients method,there will be a Exception: java.lang.ArrayStoreException: java.util.HashMap$Entry maybe this method should be: public List<Client> getClients() { return java.util.Arrays.asList(clients.values().toArray(new Client[0])); } instead of this: public List<Client> getClients() { return java.uti...
resolved fixed
b09d817
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-11T12:17:27Z
2009-12-11T05:40:00Z
modules/bayeux/java/org/apache/tomcat/bayeux/TomcatBayeux.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,537
Bug 47537 Empty response when forward to login page fails
When tomcat receives a POST request on a session that has timedout, it will forward to the form based login page (form-login-page). If this forward fails for some reason (an error in the login page for instance), tomcat will return an empty HTTP response, without any error code. The tomcat log says "Unexpected error fo...
resolved fixed
88b5d4b
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-11T13:12:57Z
2009-07-15T15:00:00Z
java/org/apache/catalina/authenticator/FormAuthenticator.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
47,744
Bug 47744 Memory leak when using SSL + Java security manager
null
resolved fixed
51d5511
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-14T14:53:00Z
2009-08-26T15:20:00Z
java/org/apache/tomcat/util/net/jsse/JSSESupport.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,387
Bug 48387 Make RemoteIpFilter parameters consistent with RemoteIpValve
null
resolved fixed
803d64d
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-14T21:18:34Z
2009-12-14T14:13:20Z
java/org/apache/catalina/filters/RemoteIpFilter.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distribu...
47,930
Bug 47930 PersistentManager (using filestore) can return different session objects linked to the same session ID, when Tomcat is restarted
null
resolved fixed
d9f2c99
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-18T18:42:09Z
2009-10-02T02:20:00Z
java/org/apache/catalina/session/PersistentManagerBase.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,399
Bug 48399 Lock fields should be final
null
resolved fixed
e1d1476
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-20T03:46:02Z
2009-12-17T00:33:20Z
java/org/apache/catalina/ha/session/DeltaSession.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,399
Bug 48399 Lock fields should be final
null
resolved fixed
e1d1476
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-20T03:46:02Z
2009-12-17T00:33:20Z
java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,399
Bug 48399 Lock fields should be final
null
resolved fixed
e1d1476
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-20T03:46:02Z
2009-12-17T00:33:20Z
modules/jdbc-pool/java/org/apache/tomcat/jdbc/pool/MultiLockFairBlockingQueue.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,443
Bug 48443 when the context path is empty,tomcat will startup with a FileNotFoundException
null
resolved fixed
ff22e4a
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-30T09:24:17Z
2009-12-25T03:00:00Z
java/org/apache/naming/resources/DirContextURLConnection.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,454
Bug 48454 "Bad file descriptor"-IOException in CGIServlet for some programs
null
resolved fixed
ae6c3c4
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-30T10:45:34Z
2009-12-29T07:00:00Z
java/org/apache/catalina/servlets/CGIServlet.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,345
Bug 48345 Session does time-out shorter than setting in web.xml when PersistentManager is used.
I am encountering the problem that Session does time-out shorter than setting in web.xml. This is a simple scenario where the problem occurs. I am using PersistentManager by the following configuration. <Context> <Manager className="org.apache.catalina.session.PersistentManager" maxIdleSwap="120"> <Store className="org...
resolved fixed
d939925
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-30T11:30:01Z
2009-12-07T07:13:20Z
java/org/apache/catalina/session/StoreBase.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
43,819
Bug 43819 Support latest JSR245 proposal to make EL "self-contained"
null
resolved fixed
9a2ae02
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-30T22:20:30Z
2007-11-08T19:26:40Z
java/javax/el/ExpressionFactory.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
43,819
Bug 43819 Support latest JSR245 proposal to make EL "self-contained"
null
resolved fixed
9a2ae02
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-30T22:20:30Z
2007-11-08T19:26:40Z
java/org/apache/jasper/compiler/JspUtil.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
43,819
Bug 43819 Support latest JSR245 proposal to make EL "self-contained"
null
resolved fixed
9a2ae02
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-30T22:20:30Z
2007-11-08T19:26:40Z
java/org/apache/jasper/compiler/PageInfo.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
43,819
Bug 43819 Support latest JSR245 proposal to make EL "self-contained"
null
resolved fixed
9a2ae02
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-30T22:20:30Z
2007-11-08T19:26:40Z
java/org/apache/jasper/compiler/Validator.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
43,819
Bug 43819 Support latest JSR245 proposal to make EL "self-contained"
null
resolved fixed
9a2ae02
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-30T22:20:30Z
2007-11-08T19:26:40Z
java/org/apache/jasper/runtime/JspApplicationContextImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,006
Bug 48006 Implement the header X-Powered-By suggested by the servlet specification
null
resolved fixed
3d309a5
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2009-12-31T10:46:24Z
2009-10-15T15:20:00Z
java/org/apache/catalina/connector/CoyoteAdapter.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,424
Bug 48424 Keep same logic for creating the objectnames for connector mbeans
Currently, for connector MBeans, they are registered and unregistered by Connector classes themselves. But in the ServerLifecycle and MBeanUtils, there are also codes for unregistering the connector MBeans. Suppose it is used for double check ? The question is that the codes for creating connector object name are not s...
resolved fixed
da5f249
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-05T19:53:38Z
2009-12-21T04:33:20Z
java/org/apache/catalina/connector/Connector.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,424
Bug 48424 Keep same logic for creating the objectnames for connector mbeans
Currently, for connector MBeans, they are registered and unregistered by Connector classes themselves. But in the ServerLifecycle and MBeanUtils, there are also codes for unregistering the connector MBeans. Suppose it is used for double check ? The question is that the codes for creating connector object name are not s...
resolved fixed
da5f249
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-05T19:53:38Z
2009-12-21T04:33:20Z
java/org/apache/catalina/mbeans/MBeanUtils.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,112
Bug 48112 Closing curly brace in literal string incorrectly treated as expression terminator.
On tomcat 6.0.20 something like the following line in a JSP causes a exception: <c:out value="${fn:trim('{world}')}"/> After removing the closing curly brace from the literal ('{world}' -> '{world') the JSP works. This behaviour seems specific to 6.0.20, as on 6.0.18 and 6.0.16 the line above works fine. Example of exc...
resolved fixed
11810fb
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-06T18:51:24Z
2009-11-03T12:06:40Z
test/org/apache/el/TestELEvaluation.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,517
Bug 48517 @SuppressWarnings("unchecked") - document and reduce scope
null
resolved fixed
4df1957
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T10:31:03Z
2010-01-11T11:40:00Z
java/javax/el/BeanELResolver.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,517
Bug 48517 @SuppressWarnings("unchecked") - document and reduce scope
null
resolved fixed
4df1957
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T10:31:03Z
2010-01-11T11:40:00Z
java/javax/el/ELContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,517
Bug 48517 @SuppressWarnings("unchecked") - document and reduce scope
null
resolved fixed
4df1957
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T10:31:03Z
2010-01-11T11:40:00Z
java/javax/el/ResourceBundleELResolver.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,517
Bug 48517 @SuppressWarnings("unchecked") - document and reduce scope
null
resolved fixed
4df1957
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T10:31:03Z
2010-01-11T11:40:00Z
java/org/apache/catalina/loader/WebappClassLoader.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,517
Bug 48517 @SuppressWarnings("unchecked") - document and reduce scope
null
resolved fixed
4df1957
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T10:31:03Z
2010-01-11T11:40:00Z
java/org/apache/el/lang/ELSupport.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,517
Bug 48517 @SuppressWarnings("unchecked") - document and reduce scope
null
resolved fixed
4df1957
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T10:31:03Z
2010-01-11T11:40:00Z
java/org/apache/el/lang/EvaluationContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,517
Bug 48517 @SuppressWarnings("unchecked") - document and reduce scope
null
resolved fixed
4df1957
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T10:31:03Z
2010-01-11T11:40:00Z
java/org/apache/el/parser/AstIdentifier.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,517
Bug 48517 @SuppressWarnings("unchecked") - document and reduce scope
null
resolved fixed
4df1957
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T10:31:03Z
2010-01-11T11:40:00Z
java/org/apache/el/parser/AstValue.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,517
Bug 48517 @SuppressWarnings("unchecked") - document and reduce scope
null
resolved fixed
4df1957
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T10:31:03Z
2010-01-11T11:40:00Z
java/org/apache/el/parser/SimpleNode.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,517
Bug 48517 @SuppressWarnings("unchecked") - document and reduce scope
null
resolved fixed
4df1957
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T10:31:03Z
2010-01-11T11:40:00Z
java/org/apache/naming/resources/VirtualDirContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,523
Bug 48523 Duplicate property keys in various files
There are some properties files with non-unique property keys; normally these should be unique. File: java\org\apache\catalina\realm\LocalStrings.properties Duplicate key: 'jaasRealm.userPrincipalSuccess' jaasRealm.userPrincipalSuccess=Principal "{0}" is a valid user class. We will use this as the user Principal. jaasR...
resolved fixed
f2eea0c
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T11:09:18Z
2010-01-11T17:13:20Z
java/org/apache/catalina/startup/ContextConfig.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,421
Bug 48421 JULI webapp logging files will not closed when webapp is stopped,reloaded or undeployed
In Tomcat 6 the JULI logging files which are (can be) declared in webapp/WEB-INF/classes/logging.properties will not closed, when the webapp is reloaded, stopped or even undeployed. The files will at last be closed, when tomcat is shut down or restarted. This is also true for the normally used Handler org.apache.juli.F...
resolved fixed
eeb017a
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T19:06:48Z
2009-12-20T20:13:20Z
java/org/apache/juli/ClassLoaderLogManager.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,421
Bug 48421 JULI webapp logging files will not closed when webapp is stopped,reloaded or undeployed
In Tomcat 6 the JULI logging files which are (can be) declared in webapp/WEB-INF/classes/logging.properties will not closed, when the webapp is reloaded, stopped or even undeployed. The files will at last be closed, when tomcat is shut down or restarted. This is also true for the normally used Handler org.apache.juli.F...
resolved fixed
eeb017a
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T19:06:48Z
2009-12-20T20:13:20Z
java/org/apache/juli/logging/LogFactory.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
48,004
Bug 48004 setHeader() does not replace the previous value for a "Server"
null
resolved fixed
13daf69
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T21:36:49Z
2009-10-15T15:20:00Z
java/org/apache/coyote/http11/Http11AprProcessor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,004
Bug 48004 setHeader() does not replace the previous value for a "Server"
null
resolved fixed
13daf69
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T21:36:49Z
2009-10-15T15:20:00Z
java/org/apache/coyote/http11/Http11NioProcessor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,004
Bug 48004 setHeader() does not replace the previous value for a "Server"
null
resolved fixed
13daf69
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T21:36:49Z
2009-10-15T15:20:00Z
java/org/apache/coyote/http11/Http11Processor.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
48,516
Bug 48516 NullPointerException in JNDIRealm
null
resolved fixed
62d29b6
Tomcat
https://github.com/apache/tomcat
apache/tomcat
java
null
null
null
2010-01-12T22:43:23Z
2010-01-11T11:40:00Z
java/org/apache/catalina/realm/JNDIRealm.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...