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