You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@tomee.apache.org by bu...@apache.org on 2012/05/26 00:40:45 UTC

svn commit: r819121 - in /websites/staging/openejb/trunk: cgi-bin/ content/ content/tomee-and-eclipse.html

Author: buildbot
Date: Fri May 25 22:40:45 2012
New Revision: 819121

Log:
Staging update by buildbot for openejb

Modified:
    websites/staging/openejb/trunk/cgi-bin/   (props changed)
    websites/staging/openejb/trunk/content/   (props changed)
    websites/staging/openejb/trunk/content/tomee-and-eclipse.html

Propchange: websites/staging/openejb/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri May 25 22:40:45 2012
@@ -1 +1 @@
-1342823
+1342834

Propchange: websites/staging/openejb/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri May 25 22:40:45 2012
@@ -1 +1 @@
-1342823
+1342834

Modified: websites/staging/openejb/trunk/content/tomee-and-eclipse.html
==============================================================================
--- websites/staging/openejb/trunk/content/tomee-and-eclipse.html (original)
+++ websites/staging/openejb/trunk/content/tomee-and-eclipse.html Fri May 25 22:40:45 2012
@@ -191,24 +191,26 @@ are also started up and adds up to the s
 
 <p>If jsp changes are not being hot deployed then this is because the jsp servlet is set to development=false in the web.xml file. To allow jsp hot deployment alter this value to true and restart Tomee.</p>
 
-<p>This is the relevant snippet of the web.xml file.
-    <servlet>
-        <servlet-name>jsp</servlet-name>
-        <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
-        <init-param>
-            <param-name>fork</param-name>
-            <param-value>false</param-value>
-        </init-param>
-        <init-param>
-            <param-name>xpoweredBy</param-name>
-            <param-value>false</param-value>
-        </init-param>
-        <init-param>
-            <param-name>development</param-name>
-            <param-value><em>false</em></param-value>
-        </init-param>
-        <load-on-startup>3</load-on-startup>
-    </servlet></p>
+<p>This is the relevant snippet of the web.xml file.</p>
+
+<pre><code>&lt;servlet&gt;
+    &lt;servlet-name&gt;jsp&lt;/servlet-name&gt;
+    &lt;servlet-class&gt;org.apache.jasper.servlet.JspServlet&lt;/servlet-class&gt;
+    &lt;init-param&gt;
+        &lt;param-name&gt;fork&lt;/param-name&gt;
+        &lt;param-value&gt;false&lt;/param-value&gt;
+    &lt;/init-param&gt;
+    &lt;init-param&gt;
+        &lt;param-name&gt;xpoweredBy&lt;/param-name&gt;
+        &lt;param-value&gt;false&lt;/param-value&gt;
+    &lt;/init-param&gt;
+    &lt;init-param&gt;
+        &lt;param-name&gt;development&lt;/param-name&gt;
+        &lt;param-value&gt;*false*&lt;/param-value&gt;
+    &lt;/init-param&gt;
+    &lt;load-on-startup&gt;3&lt;/load-on-startup&gt;
+&lt;/servlet&gt;
+</code></pre>