index.html revision e8721886dbfd32e88cc7077cbee4b6bb1b44b443
2ronwalf<!--
2ronwalf DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2ronwalf
2ronwalf Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
2ronwalf
2ronwalf The contents of this file are subject to the terms
2ronwalf of the Common Development and Distribution License
2ronwalf (the License). You may not use this file except in
2ronwalf compliance with the License.
2ronwalf
2ronwalf You can obtain a copy of the License at
2ronwalf https://opensso.dev.java.net/public/CDDLv1.0.html or
2ronwalf opensso/legal/CDDLv1.0.txt
2ronwalf See the License for the specific language governing
2ronwalf permission and limitations under the License.
2ronwalf
2ronwalf When distributing Covered Code, include this CDDL
2ronwalf Header Notice in each file and include the License file
2ronwalf at opensso/legal/CDDLv1.0.txt.
2ronwalf If applicable, add the following below the CDDL Header,
2ronwalf with the fields enclosed by brackets [] replaced by
2ronwalf your own identifying information:
2ronwalf "Portions Copyrighted [year] [name of copyright owner]"
2ronwalf
2ronwalf $Id: index.html,v 1.4 2008/06/25 05:44:40 qcheng Exp $
2ronwalf
2ronwalf-->
2ronwalf
2ronwalf<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2ronwalf<html>
2ronwalf<head>
2ronwalf <title>Please Wait While Redirecting to console</title>
2ronwalf
10daenzerorama <script language="JavaScript"> <!--
10daenzerorama
10daenzerorama function redirectToConsole() {
10daenzerorama var params = getQueryParameters();
10daenzerorama var url = '/base/AMAdminFrame';
10daenzerorama
2ronwalf if (params != '') {
10daenzerorama url += params + '&amconsoleRedirect=1&' + getDateStamp();
10daenzerorama } else {
10daenzerorama url += '?&amconsoleRedirect=1&' + getDateStamp();
10daenzerorama }
10daenzerorama top.location.replace(url);
10daenzerorama }
10daenzerorama
10daenzerorama function getDateStamp() {
2ronwalf var s='';
10daenzerorama while (s.length < 80) {
10daenzerorama t = (48 + Math.round(Math.random() * 74));
14daenzerorama r = ((t<58) || ((t>64) && (t<91)) || ((t>96) && (t<123))) ?
14daenzerorama String.fromCharCode(t) : '';
14daenzerorama s += r;
14daenzerorama }
14daenzerorama return s;
14daenzerorama }
14daenzerorama
14daenzerorama function getQueryParameters() {
14daenzerorama var loc = '' + location;
14daenzerorama var idx = loc.indexOf('?');
14daenzerorama if (idx != -1) {
10daenzerorama return loc.substring(idx);
10daenzerorama } else {
10daenzerorama return '';
10daenzerorama }
10daenzerorama }
10daenzerorama //-->
10daenzerorama </script>
10daenzerorama</head>
2ronwalf
<body bgcolor="#FFFFFF" onLoad="redirectToConsole();">
</body>
</html>