~ubuntu-branches/ubuntu/lucid/tomcat6/lucid

« back to all changes in this revision

Viewing changes to STATUS.txt

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug, Iulian Udrea
  • Date: 2009-06-09 12:35:19 UTC
  • mfrom: (1.2.1 upstream) (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090609123519-7owjbso5ttnka6ur
Tags: 6.0.20-1ubuntu1
[ Iulian Udrea ]
* Merge from debian unstable (LP: #385262), remaining changes:
  - debian/control, debian/rules: Use default-jdk to build
  - debian/control: Run using default-jre-headless by default

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
  limitations under the License.
16
16
================================================================================
17
17
 
18
 
$Revision: 678487 $ $Date: 2008-07-21 19:11:50 +0200 (Mon, 21 Jul 2008) $
 
18
$Revision: 772875 $ $Date: 2009-05-08 09:48:28 +0200 (Fri, 08 May 2009) $
19
19
 
20
20
                         =================================
21
21
                         Apache Tomcat 6.0 Patch Proposals
31
31
PATCHES PROPOSED TO BACKPORT:
32
32
  [ New proposals should be added at the end of the list ]
33
33
 
34
 
*  Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=36155
35
 
   Port the fix from the JK Connector to the AJP and APR Connectors
36
 
   http://svn.apache.org/viewvc?rev=672454&view=rev
37
 
   +1: billbarker
38
 
   -1: remm: No, this gets called all the time, and we're trying to fix a small issue. The real
39
 
             solution would be to recycle the fields since as mentioned here it is the cause of 
40
 
             the problem (the "local" fields will often never change, but there's no real 
41
 
             guarantee overall - it mostly breaks down if there are multiple connectors, with AJP,
42
 
             and seems impossible to anticipate):
43
 
             https://issues.apache.org/bugzilla/show_bug.cgi?id=36155#c17
44
 
 
45
 
* Add in startup options, so that cluster can be started in TCP mode only, when using static membership
46
 
  Also document the multicast recovery options
47
 
  http://svn.apache.org/viewvc?rev=674125&view=rev
48
 
  +1: fhanik, markt
49
 
  -1: 
50
 
 
51
 
* Fix comet behavior
52
 
  Invoke READ when there is a body and make sure END is called if CometEvent.close is called during an invokation
53
 
  http://svn.apache.org/viewvc?rev=677473&view=rev
54
 
  +1: fhanik
55
 
  -1: 
 
34
* Fix issue where the first request for a deleted JSPs returns as if the JSP
 
35
  still exists.
 
36
  http://svn.apache.org/viewvc?view=rev&revision=683969
 
37
  +1: markt, funkman
 
38
   0: remm (looks risky, very minor problem), fhanik - minor problem
 
39
  -1: 
 
40
 
 
41
* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=45403
 
42
  See commit message for details of negligable performance impact
 
43
  http://svn.apache.org/viewvc?rev=701358&view=rev
 
44
  +1: markt, funkman
 
45
  -0: remm (I also do not think the patch is a good idea as a backport)
 
46
  -0: fhanik - the bug talks about WEB-INF/lib and reload, that would be when reload="true" which should be considered development only
 
47
      So to make this bug actually worth while fixing, and not impact performance, then it should only do this check on files that 
 
48
      are relevant to the reload of an application, in other words a watched resource
 
49
 
 
50
* Changes required to run with a security manager
 
51
  http://svn.apache.org/viewvc?rev=721286&view=rev (original)
 
52
  http://svn.apache.org/viewvc?rev=721704&view=rev (original)
 
53
  http://svn.apache.org/viewvc?rev=721708&view=rev (original)
 
54
  http://svn.apache.org/viewvc?rev=721886&view=rev (original)
 
55
  http://svn.apache.org/viewvc?rev=746425&view=rev (to address Bill's concerns)
 
56
  http://svn.apache.org/viewvc?rev=757335&view=rev (to remove the Catalina dep)
 
57
  +1: markt, billbarker
 
58
 
 
59
* Backport cleanup of semantics of thisAccessedTime and
 
60
  lastAccessedTime for sessions:
 
61
  - preparational whitespace changes
 
62
    http://svn.apache.org/viewvc?rev=711695&view=rev
 
63
  - Give thisAccessedTime and lastAccessedTime for sessions
 
64
    a clear semantics:
 
65
    http://svn.apache.org/viewvc?rev=711711&view=rev
 
66
    - thisAccessedTime will be updated at the beginning and
 
67
      at the end of session use
 
68
    - lastAccessedTime will only be updated at the end of
 
69
      session use
 
70
    This means:
 
71
    - lastAccessedTime is the last access time of a session
 
72
      disregarding any request still being processed on.
 
73
      So this is good to use even from within a request
 
74
      to detect when its own session has been used last before.
 
75
    - thisAccessedTime already gets updated when a new request 
 
76
      disregarding any request still being processed on.
 
77
      So this is better for any idleness check or information.
 
78
    - thisAccessedTime >= lastAccessedTime always
 
79
  - Port from StandardSession to DeltaSession
 
80
    http://svn.apache.org/viewvc?rev=711714&view=rev
 
81
  - Expose thisAccessedTime via the session interface
 
82
    and ManagerBase, so we can use it from outside the session.
 
83
    http://svn.apache.org/viewvc?rev=711716&view=rev
 
84
  - Make the classes checking session idleness use thisAccessedTime.
 
85
    http://svn.apache.org/viewvc?rev=711720&view=rev
 
86
    This is not for invalidation, only for displaying
 
87
    idle times and making persistance decisions.
 
88
  +1: rjung, markt
 
89
   0: billbarker: generally agree with remm that this is too big of a change for the stable branch
 
90
                 but could agree to some of it if it was split into parts
 
91
  -1: remm: no for TC 6.0
 
92
 
 
93
* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=46908
 
94
  http://svn.apache.org/viewvc?rev=758365&view=rev
 
95
  Try and support java encoding names when using an xml parser provided via the
 
96
  endorsed mechanism
 
97
  +1: markt, remm
 
98
  -1: 
 
99
 
 
100
* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=46967
 
101
  Better handling of errors when trying to use Manager.randomFile
 
102
  Based on a patch by Kirk Wolf
 
103
  Also make behaviour consistent when using a security manager
 
104
  http://svn.apache.org/viewvc?rev=763228&view=rev
 
105
  +1: markt, rjung
 
106
  -1: 
 
107
 
 
108
* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=46985
 
109
  Clean up timeout handling
 
110
  http://svn.apache.org/viewvc?rev=763262&view=rev
 
111
  +1: markt, pero
 
112
  -1: 
 
113
 
 
114
* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=42390
 
115
  Correct JSP compilation error with nested tagfile tags with variables with
 
116
  "AT_BEGIN" scope
 
117
  Patch provided by Konstantin Kolinko
 
118
  http://svn.apache.org/viewvc?rev=763717&view=rev
 
119
  +1: markt, remm (risky ...)
 
120
  -1: 
 
121
 
 
122
* Fix use of non-ASCII characters in property files
 
123
  http://people.apache.org/~markt/patches/2009-04-20-native2ascii-de.patch (German)
 
124
  http://people.apache.org/~markt/patches/2009-04-20-native2ascii-en.patch (English)
 
125
  http://people.apache.org/~markt/patches/2009-04-20-native2ascii-es.patch (Spanish)
 
126
  http://people.apache.org/~markt/patches/2009-04-20-native2ascii-fr.patch (French)
 
127
  +1: markt
 
128
  -1: 
 
129
 
 
130
* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47046
 
131
  Deregister all MBeans when the server is stopped
 
132
  http://svn.apache.org/viewvc?rev=769979&view=rev
 
133
  +1: markt, pero
 
134
  -1: 
 
135
 
 
136
* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47080
 
137
  Prevent NPE when mapper makes no matches
 
138
  http://svn.apache.org/viewvc?rev=770809&view=rev
 
139
  +1: markt, pero
 
140
  -1: 
 
141
 
 
142
* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47086
 
143
  Include 64-bit windows binaries in distributions
 
144
  Update Windows installer to work automatically on 64-bit machines
 
145
  http://svn.apache.org/viewvc?view=rev&revision=770876
 
146
  +1: markt, pero
 
147
  -1:
 
148
 
 
149
* Fix Close Stream at WebappClassLoader after read error
 
150
  http://svn.apache.org/viewvc?rev=772872&view=rev 
 
151
  +1: pero
 
152
  -1:
 
153