index.html revision 984ea967792540448d05fba2ac6fad5dadf91fd6
0N/A<!--
2362N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0N/A
0N/A Copyright (c) 2007 Sun Microsystems Inc. All Rights Reserved
0N/A
0N/A The contents of this file are subject to the terms
2362N/A of the Common Development and Distribution License
0N/A (the License). You may not use this file except in
2362N/A compliance with the License.
0N/A
0N/A You can obtain a copy of the License at
0N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
0N/A opensso/legal/CDDLv1.0.txt
0N/A See the License for the specific language governing
0N/A permission and limitations under the License.
0N/A
0N/A When distributing Covered Code, include this CDDL
0N/A Header Notice in each file and include the License file
0N/A at opensso/legal/CDDLv1.0.txt.
0N/A If applicable, add the following below the CDDL Header,
2362N/A with the fields enclosed by brackets [] replaced by
2362N/A your own identifying information:
2362N/A "Portions Copyrighted [year] [name of copyright owner]"
0N/A
0N/A $Id: index.html,v 1.2 2008/06/25 05:48:51 qcheng Exp $
0N/A
0N/A-->
0N/A
0N/A
0N/A<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
0N/A<html>
0N/A<head>
0N/A<title>Please Wait While Redirecting to Login page</title>
0N/A
0N/A<script language="JavaScript"> <!--
0N/A
0N/Afunction redirectToAuth() {
0N/A var params = getQueryParameters();
0N/A var url = 'UI/Login';
0N/A
0N/A if (params != '') {
0N/A url += params;
0N/A }
0N/A top.location.replace(url);
0N/A}
0N/A
0N/Afunction getQueryParameters() {
0N/A var loc = '' + location;
0N/A var idx = loc.indexOf('?');
0N/A if (idx != -1) {
0N/A return loc.substring(idx);
0N/A } else {
0N/A return '';
0N/A }
0N/A}
0N/A//-->
0N/A</script>
0N/A</head>
0N/A
0N/A<body bgcolor="#FFFFFF" onLoad="redirectToAuth();">
0N/A</body>
0N/A</html>
0N/A
0N/A