[gatein-commits] gatein SVN: r1243 - portal/trunk/web/portal/src/main/webapp/groovy/webui/core.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Jan 12 21:31:59 EST 2010


Author: liem_nguyen
Date: 2010-01-12 21:31:59 -0500 (Tue, 12 Jan 2010)
New Revision: 1243

Modified:
   portal/trunk/web/portal/src/main/webapp/groovy/webui/core/UIRepeater.gtmpl
Log:
GTNPORTAL-430 Show exception when delete page in special case

Modified: portal/trunk/web/portal/src/main/webapp/groovy/webui/core/UIRepeater.gtmpl
===================================================================
--- portal/trunk/web/portal/src/main/webapp/groovy/webui/core/UIRepeater.gtmpl	2010-01-13 00:35:49 UTC (rev 1242)
+++ portal/trunk/web/portal/src/main/webapp/groovy/webui/core/UIRepeater.gtmpl	2010-01-13 02:31:59 UTC (rev 1243)
@@ -12,7 +12,8 @@
   String name = uicomponent.getLabel() ;
   UIForm uiForm = uicomponent.getAncestorOfType(UIForm.class); 
   
-  DateFormat dateFormat = null;
+  DateFormat dateFormat = null;  
+  try {
 %>
 <div id="$uicomponent.id">
     <table class="UIGrid" cellspacing="0">
@@ -89,4 +90,6 @@
         %>
         </tbody>
     </table>
-</div>
\ No newline at end of file
+</div>
+
+<% } catch (java.lang.Throwable e) {} %>
\ No newline at end of file



More information about the gatein-commits mailing list