DO NOT REPLY [Bug 47827] New: Tomcat API should not have methods that declare they throw Exception

2009-09-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47827

   Summary: Tomcat API should not have methods that declare they
throw Exception
   Product: Tomcat 7
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: P3
 Component: Catalina
AssignedTo: dev@tomcat.apache.org
ReportedBy: david_s...@hotmail.com


Tomcat API should not have methods that declare they throw Exception. 
Something more specific would be polite to users, since it must be known what
actual checked exception types can be thrown.

-- 
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 47828] New: Change Tomcat.setSilent() to setSilent(boolean)

2009-09-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47828

   Summary: Change Tomcat.setSilent() to setSilent(boolean)
   Product: Tomcat 7
   Version: unspecified
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: P3
 Component: Catalina
AssignedTo: dev@tomcat.apache.org
ReportedBy: david_s...@hotmail.com


Change Tomcat.setSilent() to setSilent(boolean).  It's nicer for clients to
have a JavaBean type setter, and it doesn't seem to make sense that you can set
something but not unset it.

-- 
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: r814178 - /tomcat/trunk/java/org/apache/catalina/startup/Bootstrap.java

2009-09-12 Thread markt
Author: markt
Date: Sat Sep 12 16:08:03 2009
New Revision: 814178

URL: http://svn.apache.org/viewvc?rev=814178&view=rev
Log:
Trivial - fix an Eclipse warning

Modified:
tomcat/trunk/java/org/apache/catalina/startup/Bootstrap.java

Modified: tomcat/trunk/java/org/apache/catalina/startup/Bootstrap.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/startup/Bootstrap.java?rev=814178&r1=814177&r2=814178&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/startup/Bootstrap.java (original)
+++ tomcat/trunk/java/org/apache/catalina/startup/Bootstrap.java Sat Sep 12 
16:08:03 2009
@@ -146,7 +146,7 @@
 
 // Check for a JAR URL repository
 try {
-URL url=new URL(repository);
+new URL(repository);
 repositoryLocations.add(repository);
 repositoryTypes.add(ClassLoaderFactory.IS_URL);
 continue;



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r814179 - in /tomcat/trunk/java/org/apache/tomcat/util/net: AprEndpoint.java JIoEndpoint.java NioEndpoint.java

2009-09-12 Thread markt
Author: markt
Date: Sat Sep 12 16:10:43 2009
New Revision: 814179

URL: http://svn.apache.org/viewvc?rev=814179&view=rev
Log:
Clean up unused imports and variables

Modified:
tomcat/trunk/java/org/apache/tomcat/util/net/AprEndpoint.java
tomcat/trunk/java/org/apache/tomcat/util/net/JIoEndpoint.java
tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java

Modified: tomcat/trunk/java/org/apache/tomcat/util/net/AprEndpoint.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/AprEndpoint.java?rev=814179&r1=814178&r2=814179&view=diff
==
--- tomcat/trunk/java/org/apache/tomcat/util/net/AprEndpoint.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/net/AprEndpoint.java Sat Sep 12 
16:10:43 2009
@@ -17,12 +17,9 @@
 
 package org.apache.tomcat.util.net;
 
-import java.net.InetAddress;
 import java.util.ArrayList;
 import java.util.HashMap;
-import java.util.concurrent.Executor;
 import java.util.concurrent.RejectedExecutionException;
-import java.util.concurrent.TimeUnit;
 
 import org.apache.juli.logging.Log;
 import org.apache.juli.logging.LogFactory;
@@ -38,11 +35,6 @@
 import org.apache.tomcat.jni.SSLSocket;
 import org.apache.tomcat.jni.Socket;
 import org.apache.tomcat.jni.Status;
-import org.apache.tomcat.util.res.StringManager;
-import org.apache.tomcat.util.threads.ResizableExecutor;
-import org.apache.tomcat.util.threads.TaskQueue;
-import org.apache.tomcat.util.threads.TaskThreadFactory;
-import org.apache.tomcat.util.threads.ThreadPoolExecutor;
 
 /**
  * APR tailored thread pool, providing the following services:

Modified: tomcat/trunk/java/org/apache/tomcat/util/net/JIoEndpoint.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/JIoEndpoint.java?rev=814179&r1=814178&r2=814179&view=diff
==
--- tomcat/trunk/java/org/apache/tomcat/util/net/JIoEndpoint.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/net/JIoEndpoint.java Sat Sep 12 
16:10:43 2009
@@ -19,21 +19,13 @@
 
 import java.io.IOException;
 import java.net.BindException;
-import java.net.InetAddress;
 import java.net.ServerSocket;
 import java.net.Socket;
-import java.util.concurrent.Executor;
 import java.util.concurrent.RejectedExecutionException;
-import java.util.concurrent.TimeUnit;
 
 import org.apache.juli.logging.Log;
 import org.apache.juli.logging.LogFactory;
 import org.apache.tomcat.util.IntrospectionUtils;
-import org.apache.tomcat.util.res.StringManager;
-import org.apache.tomcat.util.threads.ResizableExecutor;
-import org.apache.tomcat.util.threads.TaskQueue;
-import org.apache.tomcat.util.threads.TaskThreadFactory;
-import org.apache.tomcat.util.threads.ThreadPoolExecutor;
 
 /**
  * Handle incoming TCP connections.

Modified: tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java?rev=814179&r1=814178&r2=814179&view=diff
==
--- tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java Sat Sep 12 
16:10:43 2009
@@ -20,7 +20,6 @@
 import java.io.File;
 import java.io.FileInputStream;
 import java.io.IOException;
-import java.net.InetAddress;
 import java.net.InetSocketAddress;
 import java.net.Socket;
 import java.net.SocketTimeoutException;
@@ -38,7 +37,6 @@
 import java.util.StringTokenizer;
 import java.util.concurrent.ConcurrentLinkedQueue;
 import java.util.concurrent.CountDownLatch;
-import java.util.concurrent.Executor;
 import java.util.concurrent.RejectedExecutionException;
 import java.util.concurrent.TimeUnit;
 import java.util.concurrent.atomic.AtomicInteger;
@@ -57,11 +55,6 @@
 import org.apache.tomcat.util.IntrospectionUtils;
 import org.apache.tomcat.util.net.SecureNioChannel.ApplicationBufferHandler;
 import org.apache.tomcat.util.net.jsse.NioX509KeyManager;
-import org.apache.tomcat.util.res.StringManager;
-import org.apache.tomcat.util.threads.ResizableExecutor;
-import org.apache.tomcat.util.threads.TaskQueue;
-import org.apache.tomcat.util.threads.TaskThreadFactory;
-import org.apache.tomcat.util.threads.ThreadPoolExecutor;
 
 /**
  * NIO tailored thread pool, providing the following services:
@@ -286,7 +279,6 @@
 @Override
 public boolean setProperty(String name, String value) {
 final String selectorPoolName = "selectorPool.";
-final String socketName = "socket.";
 try {
 if (name.startsWith(selectorPoolName)) {
 return IntrospectionUtils.setProperty(selectorPool, 
name.substring(selectorPoolName.length()), value);



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
Fo

svn commit: r814180 - /tomcat/trunk/java/org/apache/catalina/startup/Bootstrap.java

2009-09-12 Thread markt
Author: markt
Date: Sat Sep 12 16:13:14 2009
New Revision: 814180

URL: http://svn.apache.org/viewvc?rev=814180&view=rev
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47826
Broken debug message

Modified:
tomcat/trunk/java/org/apache/catalina/startup/Bootstrap.java

Modified: tomcat/trunk/java/org/apache/catalina/startup/Bootstrap.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/startup/Bootstrap.java?rev=814180&r1=814179&r2=814180&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/startup/Bootstrap.java (original)
+++ tomcat/trunk/java/org/apache/catalina/startup/Bootstrap.java Sat Sep 12 
16:13:14 2009
@@ -142,7 +142,7 @@
 }
 }
 if (replace && log.isDebugEnabled())
-log.debug("Expanded " + before + " to " + replace);
+log.debug("Expanded " + before + " to " + repository);
 
 // Check for a JAR URL repository
 try {



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r814181 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-09-12 Thread markt
Author: markt
Date: Sat Sep 12 16:15:23 2009
New Revision: 814181

URL: http://svn.apache.org/viewvc?rev=814181&view=rev
Log:
Proposal and vote

Modified:
tomcat/tc6.0.x/trunk/STATUS.txt

Modified: tomcat/tc6.0.x/trunk/STATUS.txt
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=814181&r1=814180&r2=814181&view=diff
==
--- tomcat/tc6.0.x/trunk/STATUS.txt (original)
+++ tomcat/tc6.0.x/trunk/STATUS.txt Sat Sep 12 16:15:23 2009
@@ -287,6 +287,11 @@
   Performance implications are neglectable, because the
   variable is only used during context startup.
   Backport from trunk: http://svn.apache.org/viewvc?rev=814024&view=rev
-  +1: rjung
+  +1: rjung, markt
   -1:
 
+* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47826
+  Broken debug message
+  http://svn.apache.org/viewvc?rev=814180&view=rev
+  +1: markt
+  -1: 



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r814184 - /tomcat/tc6.0.x/trunk/STATUS.txt

2009-09-12 Thread markt
Author: markt
Date: Sat Sep 12 16:20:50 2009
New Revision: 814184

URL: http://svn.apache.org/viewvc?rev=814184&view=rev
Log:
Proposal

Modified:
tomcat/tc6.0.x/trunk/STATUS.txt

Modified: tomcat/tc6.0.x/trunk/STATUS.txt
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=814184&r1=814183&r2=814184&view=diff
==
--- tomcat/tc6.0.x/trunk/STATUS.txt (original)
+++ tomcat/tc6.0.x/trunk/STATUS.txt Sat Sep 12 16:20:50 2009
@@ -295,3 +295,9 @@
   http://svn.apache.org/viewvc?rev=814180&view=rev
   +1: markt
   -1: 
+
+* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47796
+  Fix OpenEJB integration. Reset annotation processor on context stop.
+  https://issues.apache.org/bugzilla/attachment.cgi?id=24222
+  +1: markt
+  -1: 



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 47796] StandardContext's annotationProcessor field gets cached between webapp start/stop cycles

2009-09-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47796

--- Comment #1 from Mark Thomas  2009-09-12 17:21:34 BST ---
Thanks for the patch. It has been proposed for 6.0.x.

Not that there is no need for a similar patch in trunk, the instanceManager is
already set to null on stop.

-- 
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 47680] error messages while deploying war

2009-09-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47680

Mark Thomas  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||INVALID

--- Comment #4 from Mark Thomas  2009-09-12 17:27:54 BST ---
Resolving based on OP's comment #3

-- 
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 47648] application context file in conf/Catalina/localhost/ is removed by tomcat

2009-09-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47648

Mark Thomas  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME

--- Comment #1 from Mark Thomas  2009-09-12 17:30:44 BST ---
Not sure what you are doing but the only way that will happen is if you delete
the old war before you copy across the new one.

Please use the users list if you require further assistance.

-- 
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: r814191 - in /tomcat/trunk/webapps/docs: config/http.xml ssl-howto.xml

2009-09-12 Thread markt
Author: markt
Date: Sat Sep 12 16:43:45 2009
New Revision: 814191

URL: http://svn.apache.org/viewvc?rev=814191&view=rev
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47425
Document the crlFile attribute

Modified:
tomcat/trunk/webapps/docs/config/http.xml
tomcat/trunk/webapps/docs/ssl-howto.xml

Modified: tomcat/trunk/webapps/docs/config/http.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/config/http.xml?rev=814191&r1=814190&r2=814191&view=diff
==
--- tomcat/trunk/webapps/docs/config/http.xml (original)
+++ tomcat/trunk/webapps/docs/config/http.xml Sat Sep 12 16:43:45 2009
@@ -777,6 +777,11 @@
   timeout. Use 0 to specify an unlimited timeout. If not specified, a
   default of 86400 (24 hours) is used.
 
+
+
+  The certificate revocation list file to use to validate client
+  certificates.
+
 
   
 

Modified: tomcat/trunk/webapps/docs/ssl-howto.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/ssl-howto.xml?rev=814191&r1=814190&r2=814191&view=diff
==
--- tomcat/trunk/webapps/docs/ssl-howto.xml (original)
+++ tomcat/trunk/webapps/docs/ssl-howto.xml Sat Sep 12 16:43:45 2009
@@ -495,15 +495,21 @@
   
   
truststoreType
-Add this element if your are using a different format for the 
-TrustStore then you are using for the KeyStore.
+   Add this element if your are using a different format for the 
+   TrustStore then you are using for the KeyStore.
   
   
keyAlias
-Add this element if your have more than one key in the KeyStore.
-If the element is not present the first key read in the KeyStore
-will be used.
+   Add this element if your have more than one key in the KeyStore.
+   If the element is not present the first key read in the KeyStore
+   will be used.
   
+  
+crlFile
+The certificate revocation list file to use to validate client
+certificates.
+  
+  
 
 
 After completing these configuration changes, you must restart Tomcat as



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 47425] missing attribute in ssl configuration documentation

2009-09-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47425

Mark Thomas  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Mark Thomas  2009-09-12 17:48:05 BST ---
Thanks for the report. This has been fixed in trunk and 6.0.x and will be
included in 6.0.21 onwards.

-- 
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 47323] Name clash: o.a.c.Manager class vs. o.a.c.manager package when compiling JSP

2009-09-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47323

Mark Thomas  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #2 from Mark Thomas  2009-09-12 17:51:34 BST ---
Can't see an easy way to fix this.

-- 
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 47323] Name clash: o.a.c.Manager class vs. o.a.c.manager package when compiling JSP

2009-09-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47323

Mark Thomas  changed:

   What|Removed |Added

 Resolution|FIXED   |WONTFIX

--- Comment #3 from Mark Thomas  2009-09-12 17:51:59 BST ---
Correct the resolution - sorry for the noise.

-- 
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: r814198 - /tomcat/trunk/PROPOSALS.txt

2009-09-12 Thread idarwin
Author: idarwin
Date: Sat Sep 12 16:58:08 2009
New Revision: 814198

URL: http://svn.apache.org/viewvc?rev=814198&view=rev
Log:
Trivial typo correction

Modified:
tomcat/trunk/PROPOSALS.txt

Modified: tomcat/trunk/PROPOSALS.txt
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/PROPOSALS.txt?rev=814198&r1=814197&r2=814198&view=diff
==
--- tomcat/trunk/PROPOSALS.txt (original)
+++ tomcat/trunk/PROPOSALS.txt Sat Sep 12 16:58:08 2009
@@ -24,7 +24,7 @@
 
 PATCHES PROPOSED FOR INCLUSION in 6.1.x:
   [ The alpha/beta branch that will be the basis of the stable 6.2.x releases ]
-  [ No date has been set for the creatation of a 6.1.x brnach at this point ]
+  [ No date has been set for the creatation of a 6.1.x branch at this point ]
   [ New proposals should be added at the end of the list ]
 
 
@@ -84,7 +84,7 @@
   but you can move the sessions upon demand before shutting down a tomcat 
instance
   and draining sessions
   
-* Make it easier to embed tomcat, run it without config files and specia 
layout:
+* Make it easier to embed tomcat, run it without config files and special 
layout:
   - add a helper class to allow tomcat to be run without any external config 
   files.
   - add unit test as example



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: svn commit: r814198 - /tomcat/trunk/PROPOSALS.txt

2009-09-12 Thread sebb
On 12/09/2009, idar...@apache.org  wrote:
> Author: idarwin
>  Date: Sat Sep 12 16:58:08 2009
>  New Revision: 814198
>
>  URL: http://svn.apache.org/viewvc?rev=814198&view=rev
>  Log:
>  Trivial typo correction
>
>  Modified:
> tomcat/trunk/PROPOSALS.txt
>
>  Modified: tomcat/trunk/PROPOSALS.txt
>  URL: 
> http://svn.apache.org/viewvc/tomcat/trunk/PROPOSALS.txt?rev=814198&r1=814197&r2=814198&view=diff
>  
> ==
>  --- tomcat/trunk/PROPOSALS.txt (original)
>  +++ tomcat/trunk/PROPOSALS.txt Sat Sep 12 16:58:08 2009
>  @@ -24,7 +24,7 @@
>
>   PATCHES PROPOSED FOR INCLUSION in 6.1.x:
>[ The alpha/beta branch that will be the basis of the stable 6.2.x 
> releases ]
>  -  [ No date has been set for the creatation of a 6.1.x brnach at this point 
> ]
>  +  [ No date has been set for the creatation of a 6.1.x branch at this point 
> ]

There's yet another typo above ;-)

s/creatation/creation/

>[ New proposals should be added at the end of the list ]
>
>
>  @@ -84,7 +84,7 @@
>but you can move the sessions upon demand before shutting down a tomcat 
> instance
>and draining sessions
>
>  -* Make it easier to embed tomcat, run it without config files and specia 
> layout:
>  +* Make it easier to embed tomcat, run it without config files and special 
> layout:
>- add a helper class to allow tomcat to be run without any external config
>files.
>- add unit test as example
>
>
>
>  -
>  To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
>  For additional commands, e-mail: dev-h...@tomcat.apache.org
>
>

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r814257 - /tomcat/trunk/PROPOSALS.txt

2009-09-12 Thread idarwin
Author: idarwin
Date: Sun Sep 13 00:41:02 2009
New Revision: 814257

URL: http://svn.apache.org/viewvc?rev=814257&view=rev
Log:
Another typo, spotted by sebb

Modified:
tomcat/trunk/PROPOSALS.txt

Modified: tomcat/trunk/PROPOSALS.txt
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/PROPOSALS.txt?rev=814257&r1=814256&r2=814257&view=diff
==
--- tomcat/trunk/PROPOSALS.txt (original)
+++ tomcat/trunk/PROPOSALS.txt Sun Sep 13 00:41:02 2009
@@ -24,7 +24,7 @@
 
 PATCHES PROPOSED FOR INCLUSION in 6.1.x:
   [ The alpha/beta branch that will be the basis of the stable 6.2.x releases ]
-  [ No date has been set for the creatation of a 6.1.x branch at this point ]
+  [ No date has been set for the creation of a 6.1.x branch at this point ]
   [ New proposals should be added at the end of the list ]
 
 



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org