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

2007-12-06 Thread pero
Author: pero
Date: Thu Dec  6 00:07:12 2007
New Revision: 601650

URL: http://svn.apache.org/viewvc?rev=601650view=rev
Log:
Cast my 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=601650r1=601649r2=601650view=diff
==
--- tomcat/tc6.0.x/trunk/STATUS.txt (original)
+++ tomcat/tc6.0.x/trunk/STATUS.txt Thu Dec  6 00:07:12 2007
@@ -33,11 +33,11 @@
 
 * Port license fix from TC5 that got missed last time - sorry
   http://svn.apache.org/viewvc?rev=600993view=rev
-  +1: markt, fhanik, funkman, remm
+  +1: markt, fhanik, funkman, remm, pero
   -1: 
 
 * 43993 - mime mapping for WS-Policy
   http://svn.apache.org/viewvc?rev=601188view=rev
-  +1: funkman, remm
+  +1: funkman, remm, pero
   -1: 
 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 15967] - IllegalStateException not thrown by HttpSession.getLastAccessedTime() if session has been invalidated.

2007-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=15967.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=15967


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |




--- Additional Comments From [EMAIL PROTECTED]  2007-12-06 06:46 ---
getLastAccessedTime has never been marked as throwing IllegalStateException
(J2EE 1.2 = 1.4), and this is non-sense to make it throw it, because it's the
only way to detect conveniently that a session is in timeout (combined with
getMaxInactiveInterval).

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[Tomcat Wiki] Update of FAQ/Developing by TimFunk

2007-12-06 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Tomcat Wiki for change 
notification.

The following page has been changed by TimFunk:
http://wiki.apache.org/tomcat/FAQ/Developing

The comment on the change is:
missing page from port

New page:
== About ==
This section of the FAQ discusses common questions related to Tomcat 
development.

== Questions ==
'''How do I configure Tomcat to support remote debugging?'''

The short answer is to add the following options when the JVM is started:
{{{-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n}}}
There are a number of ways you can do this depending on how you normally start 
Tomcat:
* Set environment variables {{{JPDA_ADDRESS=8000}}} and 
{{{JPDA_TRANSPORT=dt_socket}}} and then start tomcat using {{{catalina jpda 
start}}}.
* If you run Tomcat using service wrapper, check the documentation for the 
service to determine how to set the required JVM options.
* If you start Tomcat from within an IDE, check the documentation for the IDE 
to determine how to set the required JVM options.

The port does not need to be set to 8000, it may be any value appropriate for 
your system.

Whilst this is very useful in development it should not be used in production 
because of both security and performance implications.


'''How do I remotely debug Tomcat using Eclipse?'''

This answer assumes that you have a project set up with all of the fixings and 
have some idea of what you're doing in this respect. If not then thats really 
outside the scope of this topic and more in the scope of you needing to go to 
[[http://eclipse.org eclipse.org]] and read up on how to use your ide, and 
maybe practice a little bit before you come back to this. We're also going to 
assume you have some idea of what a debugger is and how to use one.

Make sure tomcat is started and that your app is deployed and the sources, etc 
are all defined as resources in your app. If you have a servlet or something, 
set a breakpoint where its sure to hit on the next request. Go to 
Run-Debug Click on Remote Java Applications, then click New. Type in 
the title and all. Notice that port 8000 from the Tomcat instructions. Save and 
run. Eclipse will connect to the VM that Tomcat is running under. Wow, that was 
easy! Now go type the url to submit to your servlet or whatever in your 
browser. Boom you hit the breakpoint right? Have fun!


'''How do I remotely debug Tomcat using NetBeans IDE?'''

This answer assumes that you have correctly set up a NetBeans IDE project and 
that you know how to use the NetBeans IDE debugger. If not, please go to 
http://www.netbeans.org/kb/using-netbeans/40/debug.html and read up on how to 
use NetBeans IDE and its debugger.

Make sure that Tomcat is started in debug mode as described above, that your 
application is deployed, and that the sources are all defined as resources in 
your application. If you have a servlet or JSP file, set a breakpoint where you 
think a problem might be occurring. Go to Run-Attach Debugger. A dialog pops 
up to let you specify the following options:

* Debugger: JPDA Debugger
* Connector: SocketAttach
* Host: The IP address of the host your Tomcat installation is running on 
(127.0.0.1 if it is your local machine).
* Port: The port of your Tomcat debugging interface, which should be 8000 
if you've followed the instructions above.

When you press OK, you have a debugging connection very similar to local 
debugging.

Note that NetBeans IDE has a second option -- you can debug JSP files and 
servlets locally using a Tomcat server that is bundled with the IDE. When you 
debug a JSP file or servlet in the IDE, the bundled Tomcat server automatically 
starts in debug mode, and the debugger connects to it.


'''How do I change the monitoring interval for modified resources and 
application reloading?'''

Modify the {{{checkInterval}}} attribute value on the relevant Loader element 
in your web application configuration file (yourapp.xml), or in the main 
configuration file {{{%CATALINA_HOME%/conf/server.xml}}} if that is the one 
you're using. For more information, please see the 
[[http://tomcat.apache.org/faq/config/loader.html Loader configuration 
reference]]. 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[Tomcat Wiki] Update of FAQ by TimFunk

2007-12-06 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Tomcat Wiki for change 
notification.

The following page has been changed by TimFunk:
http://wiki.apache.org/tomcat/FAQ

The comment on the change is:
added Development

--
  * [wiki:/Connectors Connectors] - You want to connect tomcat to Apache, 
IIS, or have questions about tomcat-standalone.
  * [wiki:/Database Database] - Getting tomcat to talk to a database.
  * [wiki:/Deployment Deployment] - Questions related to web application 
deployment.
+ * [wiki:/Development] - Various IDE integration questions.
  * [wiki:HowTo How To] - Miscellaneous common how to's.
  * [wiki:/FDA_Validation FDA Validation] - Questions related to running 
Tomcat in an FDA validated environment.
  * [wiki:/Linux_Unix Linux / Unix] - Common questions for Linux / Unix 
related platforms.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r601796 - /tomcat/site/trunk/docs/faq/.htaccess

2007-12-06 Thread funkman
Author: funkman
Date: Thu Dec  6 09:59:20 2007
New Revision: 601796

URL: http://svn.apache.org/viewvc?rev=601796view=rev
Log:
FAQ move to the wiki


Added:
tomcat/site/trunk/docs/faq/.htaccess   (with props)

Added: tomcat/site/trunk/docs/faq/.htaccess
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/faq/.htaccess?rev=601796view=auto
==
--- tomcat/site/trunk/docs/faq/.htaccess (added)
+++ tomcat/site/trunk/docs/faq/.htaccess Thu Dec  6 09:59:20 2007
@@ -0,0 +1,23 @@
+# As part of FAQ move Dec 2007
+RedirectPermanent /faq/bugs.html http://wiki.apache.org/tomcat/FAQ/Bugs
+RedirectPermanent /faq/classnotfound.html 
http://wiki.apache.org/tomcat/FAQ/Class_Not_Found
+RedirectPermanent /faq/cluster.html 
http://wiki.apache.org/tomcat/FAQ/Clustering
+RedirectPermanent /faq/connectors.html 
http://wiki.apache.org/tomcat/FAQ/Connectors
+RedirectPermanent /faq/database.html http://wiki.apache.org/tomcat/FAQ/Database
+RedirectPermanent /faq/deployment.html 
http://wiki.apache.org/tomcat/FAQ/Deployment
+RedirectPermanent /faq/development.html 
http://wiki.apache.org/tomcat/FAQ/Developing
+RedirectPermanent /faq/fda-validation.html 
http://wiki.apache.org/tomcat/FAQ/FDA_Validation
+RedirectPermanent /faq/logging.html http://wiki.apache.org/tomcat/FAQ/Logging
+RedirectPermanent /faq/memory.html http://wiki.apache.org/tomcat/FAQ/Memory
+RedirectPermanent /faq/meta.html http://wiki.apache.org/tomcat/FAQ/About
+RedirectPermanent /faq/misc.html 
http://wiki.apache.org/tomcat/FAQ/Miscellaneous
+RedirectPermanent /faq/otherOperatingSystems.html 
http://wiki.apache.org/tomcat/FAQ/Other_Operating_Systems
+RedirectPermanent /faq/performance.html 
http://wiki.apache.org/tomcat/FAQ/Performance_and_Monitoring
+RedirectPermanent /faq/security.html http://wiki.apache.org/tomcat/FAQ/Security
+RedirectPermanent /faq/tomcatuser.html 
http://wiki.apache.org/tomcat/FAQ/Tomcat_User
+RedirectPermanent /faq/unix.html http://wiki.apache.org/tomcat/FAQ/Linux_Unix
+RedirectPermanent /faq/windows.html http://wiki.apache.org/tomcat/FAQ/Windows
+RedirectPermanent /faq/index.html http://wiki.apache.org/tomcat/FAQ
+RedirectPermanent /faq/ http://wiki.apache.org/tomcat/FAQ
+
+

Propchange: tomcat/site/trunk/docs/faq/.htaccess
--
svn:eol-style = native



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r601795 - /tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java

2007-12-06 Thread jfclere
Author: jfclere
Date: Thu Dec  6 09:53:09 2007
New Revision: 601795

URL: http://svn.apache.org/viewvc?rev=601795view=rev
Log:
Allow to specify a random device.
SSLRandomSeed=/dev/random
SSLRandomSeed=/dev/urandom
SSLRandomSeed=builtin (Default).
The native already exists.

Modified:
tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java

Modified: tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java?rev=601795r1=601794r2=601795view=diff
==
--- tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java 
(original)
+++ tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java Thu 
Dec  6 09:53:09 2007
@@ -64,6 +64,7 @@
 
 // -- Properties
 protected static String SSLEngine = on; //default on
+protected static String SSLRandomSeed = builtin;
 protected static boolean sslInitialized = false;
 protected static boolean aprInitialized = false;
 
@@ -212,6 +213,12 @@
 Class clazz = Class.forName(org.apache.tomcat.jni.SSL);
 Method method = clazz.getMethod(methodName, paramTypes);
 method.invoke(null, paramValues);
+
+methodName = randLoad;
+paramValues[0] = SSLRandomSeed;
+method = clazz.getMethod(methodName, paramTypes);
+method.invoke(null, paramValues);
+ 
 sslInitialized = true;
 }
 
@@ -223,4 +230,11 @@
 this.SSLEngine = SSLEngine;
 }
 
+public String getSSLRandomSeed() {
+return SSLRandomSeed;
+}
+
+public void setSSLRandomSeed(String SSLRandomSeed) {
+this.SSLRandomSeed = SSLRandomSeed;
+}
 }



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 15967] - IllegalStateException not thrown by HttpSession.getLastAccessedTime() if session has been invalidated.

2007-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=15967.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=15967


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2007-12-06 11:20 ---
Although this exception isn't in the pdf for the 2.4 spec it is in source code
and the javadoc. It was clearly intended to be there. It would have been
included in the pdf if it wasn't for the typo that was corrected in the first
errata.

See http://jcp.org/aboutJava/communityprocess/maintenance/jsr154/errata204.txt
for more details.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



May Chun Chew/FEA/PEC is out of the office.

2007-12-06 Thread May Chun Chew

I will be out of the office starting  12/07/2007 and will not return until
12/17/2007.

For urgent matters, pls contact [EMAIL PROTECTED] Tel:
(65)63629408
I am also Contactable at (65)97876648.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Can't compile Tomcat 6 on Java 5 on OS X

2007-12-06 Thread mraible

I'm getting the following error when trying to build Tomcat 6 today.

compile:
[javac] Compiling 1045 source files to
/Users/mraible/dev/tomcat6/output/classes
[javac]
/Users/mraible/dev/tomcat6/java/org/apache/jasper/compiler/JDTCompiler.java:38:
package org.eclipse.jdt.core.compiler does not exist
[javac] import org.eclipse.jdt.core.compiler.IProblem;
[javac]  ^
[javac]
/Users/mraible/dev/tomcat6/java/org/apache/jasper/compiler/JDTCompiler.java:39:
package org.eclipse.jdt.internal.compiler does not exist
[javac] import org.eclipse.jdt.internal.compiler.ClassFile;
[javac]  ^

Any ideas?

More info:

$ ant -version
Apache Ant version 1.6.5 compiled on July 2 2006

$ java -version
java version 1.5.0_07
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_07-164)
Java HotSpot(TM) Client VM (build 1.5.0_07-87, mixed mode, sharing)

$ svn info | grep URL
URL: http://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk

Thanks,

Matt
-- 
View this message in context: 
http://www.nabble.com/Can%27t-compile-Tomcat-6-on-Java-5-on-OS-X-tf4958345.html#a14200219
Sent from the Tomcat - Dev mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Can't compile Tomcat 6 on Java 5 on OS X

2007-12-06 Thread William L. Thomson Jr.

On Thu, 2007-12-06 at 12:22 -0800, mraible wrote:
 I'm getting the following error when trying to build Tomcat 6 today.
 
 compile:
 [javac] Compiling 1045 source files to
 /Users/mraible/dev/tomcat6/output/classes
 [javac]
 /Users/mraible/dev/tomcat6/java/org/apache/jasper/compiler/JDTCompiler.java:38:
 package org.eclipse.jdt.core.compiler does not exist
 [javac] import org.eclipse.jdt.core.compiler.IProblem;
 [javac]  ^
 [javac]
 /Users/mraible/dev/tomcat6/java/org/apache/jasper/compiler/JDTCompiler.java:39:
 package org.eclipse.jdt.internal.compiler does not exist
 [javac] import org.eclipse.jdt.internal.compiler.ClassFile;
 [javac]  ^

Looks like your missing ecj, which during build time Tomcat looks for a
jdt.jar. On Gentoo we package it as ecj.jar, and I rename the symlink to
it on build. Not sure what it is called by default.

Actually one of the things I would like to see Tomcat stop doing is
rebundling that jar. Since it ends up later on as jasper-jdt.jar. Which
I have to double check on, but am pretty sure it's just a renaming.

If just renaming I will likely hack around that, and/or patch the build
system on Gentoo for that. Since presently it causes that jar to be
copied, verses symlinked. So people don't benefit when ecj is updated
per bug, or etc.

-- 
William L. Thomson Jr.
Gentoo/Java


signature.asc
Description: This is a digitally signed message part


Re: Can't compile Tomcat 6 on Java 5 on OS X

2007-12-06 Thread mraible

It seems this was caused by a download failure. Running it as me succeeded,
but it looks some unzipping didn't work along the way. Rerunning with sudo
ant download fixed the problem.

Thanks,

Matt


William L. Thomson Jr.-3 wrote:
 
 
 On Thu, 2007-12-06 at 12:22 -0800, mraible wrote:
 I'm getting the following error when trying to build Tomcat 6 today.
 
 compile:
 [javac] Compiling 1045 source files to
 /Users/mraible/dev/tomcat6/output/classes
 [javac]
 /Users/mraible/dev/tomcat6/java/org/apache/jasper/compiler/JDTCompiler.java:38:
 package org.eclipse.jdt.core.compiler does not exist
 [javac] import org.eclipse.jdt.core.compiler.IProblem;
 [javac]  ^
 [javac]
 /Users/mraible/dev/tomcat6/java/org/apache/jasper/compiler/JDTCompiler.java:39:
 package org.eclipse.jdt.internal.compiler does not exist
 [javac] import org.eclipse.jdt.internal.compiler.ClassFile;
 [javac]  ^
 
 Looks like your missing ecj, which during build time Tomcat looks for a
 jdt.jar. On Gentoo we package it as ecj.jar, and I rename the symlink to
 it on build. Not sure what it is called by default.
 
 Actually one of the things I would like to see Tomcat stop doing is
 rebundling that jar. Since it ends up later on as jasper-jdt.jar. Which
 I have to double check on, but am pretty sure it's just a renaming.
 
 If just renaming I will likely hack around that, and/or patch the build
 system on Gentoo for that. Since presently it causes that jar to be
 copied, verses symlinked. So people don't benefit when ecj is updated
 per bug, or etc.
 
 -- 
 William L. Thomson Jr.
 Gentoo/Java
 
  
 

-- 
View this message in context: 
http://www.nabble.com/Can%27t-compile-Tomcat-6-on-Java-5-on-OS-X-tf4958345.html#a14201052
Sent from the Tomcat - Dev mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 42360] - Custom Tag resue specs

2007-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=42360.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42360





--- Additional Comments From [EMAIL PROTECTED]  2007-12-06 15:44 ---
Hello, I'm curious because i can't get to reproduce it.

Since you extends from tagsupport, you're using jsp 1.2, isn'it ?

Can you send your class to get more information.

Thank you in advance
Lionel 




-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 43993] - mime mapping for WS-Policy

2007-12-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=43993.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=43993


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2007-12-06 17:07 ---
patch applied to tomcat 6.0 too

thanks

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r601950 - in /tomcat/tc6.0.x/trunk: STATUS.txt conf/web.xml webapps/docs/changelog.xml

2007-12-06 Thread funkman
Author: funkman
Date: Thu Dec  6 17:06:13 2007
New Revision: 601950

URL: http://svn.apache.org/viewvc?rev=601950view=rev
Log:
43993 - mime mapping for WS-Policy
Patch by Fabian Ritzmann  


Modified:
tomcat/tc6.0.x/trunk/STATUS.txt
tomcat/tc6.0.x/trunk/conf/web.xml
tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml

Modified: tomcat/tc6.0.x/trunk/STATUS.txt
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=601950r1=601949r2=601950view=diff
==
--- tomcat/tc6.0.x/trunk/STATUS.txt (original)
+++ tomcat/tc6.0.x/trunk/STATUS.txt Thu Dec  6 17:06:13 2007
@@ -36,8 +36,4 @@
   +1: markt, fhanik, funkman, remm, pero
   -1: 
 
-* 43993 - mime mapping for WS-Policy
-  http://svn.apache.org/viewvc?rev=601188view=rev
-  +1: funkman, remm, pero
-  -1: 
 

Modified: tomcat/tc6.0.x/trunk/conf/web.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/conf/web.xml?rev=601950r1=601949r2=601950view=diff
==
--- tomcat/tc6.0.x/trunk/conf/web.xml (original)
+++ tomcat/tc6.0.x/trunk/conf/web.xml Thu Dec  6 17:06:13 2007
@@ -1143,6 +1143,10 @@
 mime-typex-world/x-vrml/mime-type
 /mime-mapping
 mime-mapping
+extensionwspolicy/extension
+mime-typeapplication/wspolicy+xml/mime-type
+/mime-mapping
+mime-mapping
 extensionZ/extension
 mime-typeapplication/x-compress/mime-type
 /mime-mapping

Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml?rev=601950r1=601949r2=601950view=diff
==
--- tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Thu Dec  6 17:06:13 2007
@@ -92,6 +92,9 @@
   fix
 bug43530 /bug: doc link fixes provided by  Paul Shemansky (funkman)
   /fix
+  fix
+bug43993/bug: mime mapping for WS-Policy. Patch by Fabian Ritzmann 
 (funkman)
+  /fix
 /changelog
   /subsection
   subsection name=Coyote



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r601943 - /tomcat/site/trunk/docs/

2007-12-06 Thread funkman
Author: funkman
Date: Thu Dec  6 17:01:14 2007
New Revision: 601943

URL: http://svn.apache.org/viewvc?rev=601943view=rev
Log:
apply printer friendy to the html
and update faq links
(actually just ran the ant task)


Modified:
tomcat/site/trunk/docs/bugreport.html
tomcat/site/trunk/docs/contact.html
tomcat/site/trunk/docs/download-33.html
tomcat/site/trunk/docs/download-41.html
tomcat/site/trunk/docs/download-55.html
tomcat/site/trunk/docs/download-60.html
tomcat/site/trunk/docs/download-connectors.html
tomcat/site/trunk/docs/findhelp.html
tomcat/site/trunk/docs/getinvolved.html
tomcat/site/trunk/docs/heritage.html
tomcat/site/trunk/docs/index.html
tomcat/site/trunk/docs/irc.html
tomcat/site/trunk/docs/legal.html
tomcat/site/trunk/docs/lists.html
tomcat/site/trunk/docs/migration.html
tomcat/site/trunk/docs/resources.html
tomcat/site/trunk/docs/security-3.html
tomcat/site/trunk/docs/security-4.html
tomcat/site/trunk/docs/security-5.html
tomcat/site/trunk/docs/security-6.html
tomcat/site/trunk/docs/security-impact.html
tomcat/site/trunk/docs/security-jk.html
tomcat/site/trunk/docs/security.html
tomcat/site/trunk/docs/svn.html
tomcat/site/trunk/docs/whichversion.html
tomcat/site/trunk/docs/whoweare.html

Modified: tomcat/site/trunk/docs/bugreport.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/bugreport.html?rev=601943r1=601942r2=601943view=diff
==
--- tomcat/site/trunk/docs/bugreport.html (original)
+++ tomcat/site/trunk/docs/bugreport.html Thu Dec  6 17:01:14 2007
@@ -6,6 +6,7 @@
 meta name=author value=Glenn L. Nielsen/
 meta name=email value=/
 link type=text/css href=stylesheets/tomcat.css rel=stylesheet/
+link type=text/css href=stylesheets/tomcat-printer.css rel=stylesheet 
media=print/
 /head
 body bgcolor=#ff text=#00 link=#525D76 alink=#525D76 
vlink=#525D76
 table border=0 width=100% cellspacing=0
@@ -30,7 +31,7 @@
 /td
 /tr
 /table
-div class=searchbox
+div class=searchbox noPrint
 form action=http://www.google.com/search; method=get
 input value=tomcat.apache.org name=sitesearch type=hidden/
 input value=Search the Site size=25 name=q id=query type=text/
@@ -46,7 +47,7 @@
 /tr
 tr
 !--LEFT SIDE NAVIGATION--
-td width=20% valign=top nowrap=true
+td width=20% valign=top nowrap=true class=noPrint
 p
 strongApache Tomcat/strong
 /p
@@ -175,7 +176,7 @@
 /ul
 /td
 !--RIGHT SIDE MAIN BODY--
-td width=80% valign=top align=left
+td width=80% valign=top align=left id=mainBody
 table border=0 cellspacing=0 cellpadding=2 width=100%
 tr
 td bgcolor=#525D76

Modified: tomcat/site/trunk/docs/contact.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/contact.html?rev=601943r1=601942r2=601943view=diff
==
--- tomcat/site/trunk/docs/contact.html (original)
+++ tomcat/site/trunk/docs/contact.html Thu Dec  6 17:01:14 2007
@@ -4,6 +4,7 @@
 head
 titleApache Tomcat - Apache Tomcat -- Contact Information/title
 link type=text/css href=stylesheets/tomcat.css rel=stylesheet/
+link type=text/css href=stylesheets/tomcat-printer.css rel=stylesheet 
media=print/
 /head
 body bgcolor=#ff text=#00 link=#525D76 alink=#525D76 
vlink=#525D76
 table border=0 width=100% cellspacing=0
@@ -28,7 +29,7 @@
 /td
 /tr
 /table
-div class=searchbox
+div class=searchbox noPrint
 form action=http://www.google.com/search; method=get
 input value=tomcat.apache.org name=sitesearch type=hidden/
 input value=Search the Site size=25 name=q id=query type=text/
@@ -44,7 +45,7 @@
 /tr
 tr
 !--LEFT SIDE NAVIGATION--
-td width=20% valign=top nowrap=true
+td width=20% valign=top nowrap=true class=noPrint
 p
 strongApache Tomcat/strong
 /p
@@ -173,7 +174,7 @@
 /ul
 /td
 !--RIGHT SIDE MAIN BODY--
-td width=80% valign=top align=left
+td width=80% valign=top align=left id=mainBody
 table border=0 cellspacing=0 cellpadding=2 width=100%
 tr
 td bgcolor=#525D76

Modified: tomcat/site/trunk/docs/download-33.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-33.html?rev=601943r1=601942r2=601943view=diff
==
--- tomcat/site/trunk/docs/download-33.html (original)
+++ tomcat/site/trunk/docs/download-33.html Thu Dec  6 17:01:14 2007
@@ -4,6 +4,7 @@
 head
 titleApache Tomcat - Apache Tomcat 3 Downloads/title
 link type=text/css href=stylesheets/tomcat.css rel=stylesheet/
+link type=text/css href=stylesheets/tomcat-printer.css rel=stylesheet 
media=print/
 /head
 body bgcolor=#ff text=#00 link=#525D76 alink=#525D76 
vlink=#525D76
 table border=0 width=100% cellspacing=0
@@ -28,7 +29,7 @@
 /td
 /tr
 /table
-div class=searchbox
+div class=searchbox noPrint
 form action=http://www.google.com/search; method=get
 input value=tomcat.apache.org name=sitesearch type=hidden/
 input 

svn commit: r601941 - in /tomcat/site/trunk/xdocs: findhelp.xml getinvolved.xml

2007-12-06 Thread funkman
Author: funkman
Date: Thu Dec  6 16:56:40 2007
New Revision: 601941

URL: http://svn.apache.org/viewvc?rev=601941view=rev
Log:
faq move to wiki

Modified:
tomcat/site/trunk/xdocs/findhelp.xml
tomcat/site/trunk/xdocs/getinvolved.xml

Modified: tomcat/site/trunk/xdocs/findhelp.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/findhelp.xml?rev=601941r1=601940r2=601941view=diff
==
--- tomcat/site/trunk/xdocs/findhelp.xml (original)
+++ tomcat/site/trunk/xdocs/findhelp.xml Thu Dec  6 16:56:40 2007
@@ -30,7 +30,7 @@
 favourite search engine to try and find it./p
 
 pAnswers to very common questions are documented on the
-a href=/faq/FAQ/a./p
+a href=http://wiki.apache.org/tomcat/FAQ;FAQ/a./p
 
 pThe archives for the user mailing list are a rich source of useful
 information. Use the search features provided by one of them. A

Modified: tomcat/site/trunk/xdocs/getinvolved.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/getinvolved.xml?rev=601941r1=601940r2=601941view=diff
==
--- tomcat/site/trunk/xdocs/getinvolved.xml (original)
+++ tomcat/site/trunk/xdocs/getinvolved.xml Thu Dec  6 16:56:40 2007
@@ -17,7 +17,7 @@
 ul
   liAnswer questions posted to the a href=lists.htmlmailing lists/a.
   /li
-  liContribute to the a href=/faqFAQ/a or
+  liContribute to the a href=http://wiki.apache.org/tomcat/FAQ;FAQ/a or
   a href=http://wiki.apache.org/tomcat;Wiki/a./li
   liContribute other documentation patches, either for the website or for the
   Apache Tomcat user documentation./li



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]