Home.jsp revision e8721886dbfd32e88cc7077cbee4b6bb1b44b443
2246N/A<%--
2246N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2246N/A
2246N/A Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
2246N/A
2246N/A The contents of this file are subject to the terms
2246N/A of the Common Development and Distribution License
2246N/A (the License). You may not use this file except in
2246N/A compliance with the License.
2246N/A
2246N/A You can obtain a copy of the License at
2246N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
2246N/A opensso/legal/CDDLv1.0.txt
2246N/A See the License for the specific language governing
2246N/A permission and limitations under the License.
2246N/A
2246N/A When distributing Covered Code, include this CDDL
2246N/A Header Notice in each file and include the License file
2246N/A at opensso/legal/CDDLv1.0.txt.
2246N/A If applicable, add the following below the CDDL Header,
2246N/A with the fields enclosed by brackets [] replaced by
2246N/A your own identifying information:
2246N/A "Portions Copyrighted [year] [name of copyright owner]"
2246N/A
2246N/A $Id: Home.jsp,v 1.3 2008/06/25 05:44:40 qcheng Exp $
2246N/A
2246N/A--%>
2246N/A
2246N/A
2246N/A
2246N/A<%@ page info="Home" language="java" %>
2246N/A<%@taglib uri="/WEB-INF/jato.tld" prefix="jato" %>
2246N/A<%@taglib uri="/WEB-INF/cc.tld" prefix="cc" %>
2246N/A<jato:useViewBean
2246N/A className="com.sun.identity.console.idm.HomeViewBean"
2246N/A fireChildDisplayEvents="true" >
2246N/A
2246N/A<cc:i18nbundle baseName="amConsole" id="amConsole"
2246N/A locale="<%=((com.sun.identity.console.base.AMViewBeanBase)viewBean).getUserLocale()%>"/>
2246N/A
2246N/A<cc:header name="hdrCommon" pageTitle="webconsole.title" bundleID="amConsole" copyrightYear="2004" fireDisplayEvents="true">
2246N/A
2246N/A<script language="javascript" src="../console/js/am.js"></script>
2246N/A<script language="javascript">
2246N/A function switchView(selectElmName) {
2246N/A var frm = document.forms[0];
2246N/A frm.elements['jato.defaultCommand'].value = "/btnShowMenu";
2246N/A frm.submit();
2246N/A }
2246N/A</script>
2246N/A
2246N/A<cc:form name="Home" method="post" defaultCommandChild="/btnSearch">
2246N/A<jato:hidden name="szCache" />
2246N/A<script language="javascript">
2246N/A function confirmLogout() {
2246N/A return confirm("<cc:text name="txtLogout" defaultValue="masthead.logoutMessage" bundleID="amConsole"/>");
2246N/A }
2246N/A</script>
2246N/A<cc:primarymasthead name="mhCommon" bundleID="amConsole" logoutOnClick="return confirmLogout();" locale="<%=((com.sun.identity.console.base.AMViewBeanBase)viewBean).getUserLocale()%>"/>
2246N/A<cc:breadcrumbs name="breadCrumb" bundleID="amConsole" />
2246N/A<cc:tabs name="tabCommon" bundleID="amConsole" submitFormData="true" />
2246N/A
2246N/A<table border="0" cellpadding="10" cellspacing="0" width="100%">
2246N/A <tr>
2246N/A <td>
2246N/A <cc:alertinline name="ialertCommon" bundleID="amConsole"
2246N/A summary="message.information" detail="idrepo.missing.plugins" />
2246N/A </td>
2246N/A </tr>
2246N/A</table>
2246N/A
2246N/A<table border="0" cellpadding="0" cellspacing="0" width="100%">
2246N/A <tr>
2246N/A <td>
2246N/A <cc:breadcrumbs name="parentagepath" bundleID="amConsole" />
2246N/A <div class="BcmWhtDiv"><cc:text name="txtRoot" bundleID="amConsole" /></div>
2246N/A </td>
2246N/A </tr>
2246N/A</table>
2246N/A</cc:form>
2246N/A
2246N/A</cc:header>
2246N/A</jato:useViewBean>
2246N/A