Author: thomas.heute(a)jboss.com
Date: 2007-05-24 09:46:12 -0400 (Thu, 24 May 2007)
New Revision: 7325
Modified:
trunk/core-admin/src/resources/portal-admin-war/WEB-INF/jsf/common/confirm.xhtml
Log:
JBPORTAL-1445: The "Destroy" screen should show the tabs similar to the other
screens in the management portlet.
Modified:
trunk/core-admin/src/resources/portal-admin-war/WEB-INF/jsf/common/confirm.xhtml
===================================================================
---
trunk/core-admin/src/resources/portal-admin-war/WEB-INF/jsf/common/confirm.xhtml 2007-05-24
13:17:54 UTC (rev 7324)
+++
trunk/core-admin/src/resources/portal-admin-war/WEB-INF/jsf/common/confirm.xhtml 2007-05-24
13:46:12 UTC (rev 7325)
@@ -7,29 +7,13 @@
xmlns:c="http://java.sun.com/jstl/core"
class="admin-ui">
- <p class="portlet-msg-alert">WARNING ! You are about to delete the
following element of the portal:</p>
- <ul class="objectpath">
- <c:forEach items="#{portalobjectmgr.selectedObjectPath}"
var="node">
- <li>
- >
- </li>
- <c:choose>
- <c:when test="#{node.id ==
portalobjectmgr.selectedObject.id}">
- <li class="selected">
- <c:if test="#{node.name ==
''}">root</c:if>
- <c:if test="#{node.name !=
''}">#{node.name}</c:if>
- </li>
- </c:when>
- <c:otherwise>
- <li>
- <c:if test="#{node.name ==
''}">root</c:if>
- <c:if test="#{node.name !=
''}">#{node.name}</c:if>
- </li>
- </c:otherwise>
- </c:choose>
- </c:forEach>
- </ul>
+ <ui:composition template="../objectTemplate.xhtml">
+ <ui:define name="content">
+
+
+ <p class="portlet-msg-alert">WARNING ! You are about to delete this
element from the portal !</p>
+
<p class="portlet-class">Are you sure ?</p>
<h:form>
@@ -38,4 +22,9 @@
</h:commandButton>
<h:commandButton value="No" action="objects"
actionListener="objects" styleClass="portlet-form-button"/>
</h:form>
+
+ </ui:define>
+
+ </ui:composition>
+
</div>
\ No newline at end of file