index.html revision e8721886dbfd32e88cc7077cbee4b6bb1b44b443
cc003103e52ff9d5fe9bed567ef9438613ab4fbfrse DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
cc003103e52ff9d5fe9bed567ef9438613ab4fbfrse Copyright (c) 2007 Sun Microsystems Inc. All Rights Reserved
cc003103e52ff9d5fe9bed567ef9438613ab4fbfrse The contents of this file are subject to the terms
cc003103e52ff9d5fe9bed567ef9438613ab4fbfrse of the Common Development and Distribution License
cc003103e52ff9d5fe9bed567ef9438613ab4fbfrse (the License). You may not use this file except in
cc003103e52ff9d5fe9bed567ef9438613ab4fbfrse compliance with the License.
cc003103e52ff9d5fe9bed567ef9438613ab4fbfrse You can obtain a copy of the License at
bc8fd1b0b1afdf89b8d28eefa8cd74e26ba97986fielding See the License for the specific language governing
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rse permission and limitations under the License.
cc003103e52ff9d5fe9bed567ef9438613ab4fbfrse When distributing Covered Code, include this CDDL
cc003103e52ff9d5fe9bed567ef9438613ab4fbfrse Header Notice in each file and include the License file
cc003103e52ff9d5fe9bed567ef9438613ab4fbfrse If applicable, add the following below the CDDL Header,
cc003103e52ff9d5fe9bed567ef9438613ab4fbfrse with the fields enclosed by brackets [] replaced by
cc003103e52ff9d5fe9bed567ef9438613ab4fbfrse your own identifying information:
cc003103e52ff9d5fe9bed567ef9438613ab4fbfrse "Portions Copyrighted [year] [name of copyright owner]"
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rse $Id: index.html,v 1.2 2008/06/25 05:48:51 qcheng Exp $
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rse<title>Please Wait While Redirecting to Login page</title>
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rsefunction redirectToAuth() {
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rse var params = getQueryParameters();
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rse var url = 'UI/Login';
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rse if (params != '') {
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rse url += params;
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rsefunction getQueryParameters() {
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rse var loc = '' + location;
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rse var idx = loc.indexOf('?');
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rse if (idx != -1) {
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rse return loc.substring(idx);
d86ef5503dcbc38e87c0e03cd3e1f16458cb6323rse return '';