You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by an...@apache.org on 2008/02/12 00:03:10 UTC

svn commit: r620663 - in /tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html: ExceptionDisplay.html ExceptionDisplay.jwc RequestDisplay.html

Author: andyhot
Date: Mon Feb 11 15:03:09 2008
New Revision: 620663

URL: http://svn.apache.org/viewvc?rev=620663&view=rev
Log:
TAPESTRY-1431 Changing org.apache.tapestry.renderTags config property breaks Exception page

Modified:
    tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/ExceptionDisplay.html
    tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/ExceptionDisplay.jwc
    tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/RequestDisplay.html

Modified: tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/ExceptionDisplay.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/ExceptionDisplay.html?rev=620663&r1=620662&r2=620663&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/ExceptionDisplay.html (original)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/ExceptionDisplay.html Mon Feb 11 15:03:09 2008
@@ -32,7 +32,7 @@
 			<td>Property Value 4</td>
 		</tr>
 		
-		<tr jwcid="ifNotLast"> <td colspan="2"> &nbsp; </td> </tr>
+		<tr jwcid="ifNotLast" renderTag="true"> <td colspan="2"> &nbsp; </td> </tr>
 
 <span jwcid="ifLast" renderTag="false">
 		<tr class="stack-trace-label">

Modified: tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/ExceptionDisplay.jwc
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/ExceptionDisplay.jwc?rev=620663&r1=620662&r2=620663&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/ExceptionDisplay.jwc (original)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/ExceptionDisplay.jwc Mon Feb 11 15:03:09 2008
@@ -56,6 +56,7 @@
     <binding name="source" value="exceptions"/>
     <binding name="value" value="exception"/>
     <binding name="index" value="index"/>
+    <binding name="renderTag" value="true"/>
   </component>
   
   <component id="insertClass" type="Insert">
@@ -66,6 +67,7 @@
   	<binding name="class" value="beans.evenOdd.next"/>
     <binding name="source" value="exception.properties"/>
     <binding name="value" value="property"/>
+    <binding name="renderTag" value="true"/>
   </component>
   
   <component id="insertPropertyName" type="Insert">
@@ -88,7 +90,8 @@
     <binding name="element" value="literal:li"/>
     <binding name="source" value="exception.stackTrace"/>
     <binding name="value" value="trace"/>
-    <binding name="class" value="stackClass"/>    
+    <binding name="class" value="stackClass"/>
+    <binding name="renderTag" value="true"/>
   </component>
   
   <component id="insertStackTrace" type="Insert">

Modified: tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/RequestDisplay.html
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/RequestDisplay.html?rev=620663&r1=620662&r2=620663&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/RequestDisplay.html (original)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/html/RequestDisplay.html Mon Feb 11 15:03:09 2008
@@ -5,7 +5,7 @@
 <span jwcid="@Describe" object="ognl:request"/>
 </div></div>
 
-<div jwcid="@If" condition="ognl:request.getSession(false) != null" class="displayBlock">
+<div jwcid="@If" condition="ognl:request.getSession(false) != null" class="displayBlock" renderTag="true">
     <a href="#" class="toggle" id="sessionDisplay">[&nbsp;+/-&nbsp;] Session</a>
     <div id="sessionDisplayData" class="toggleContent">
 <span jwcid="@Describe" object="ognl:request.getSession(false)"/>