|
What this is
Other links
The source code<%-- Copyright (c) 2000, 2004 IBM Corporation and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html Contributors: IBM Corporation - initial API and implementation --%> <%@ include file="fheader.jsp"%> <% LayoutData data = new LayoutData(application,request, response); // Initiate test for persisted cookies if(data.getMode() == LayoutData.MODE_INFOCENTER){ Cookie cookieTest=new Cookie("cookiesEnabled", "yes"); cookieTest.setMaxAge(365*24*60*60); response.addCookie(cookieTest); } %> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <noscript> <meta HTTP-EQUIV="REFRESH" CONTENT="0;URL=index.jsp?noscript=1"> </noscript> <title><%=data.getWindowTitle()%> <jsp:include page="livehelp_js.jsp"/> <style type="text/css"> FRAMESET { border: 0px; } </style> <script language="JavaScript"> function onloadHandler(e) { <% if (data.isIE() || data.isMozilla() && "1.2.1".compareTo(data.getMozillaVersion()) <=0){ %> var h=window.SearchFrame.document.getElementById("searchLabel").offsetHeight; <%-- default 13 --%> if(h<=19){ return; <%-- no need to resize up to 19px --%> } document.getElementById("indexFrameset").setAttribute("rows", <%="0".equals(data.getBannerHeight())?"":"\""+data.getBannerHeight()+",\"+"%>(11+h)+",*"); <%-- default 24 --%> <%}%> <% if (data.isMozilla()){ // restore mozilla from minimized %> window.focus(); <% } %> window.frames["SearchFrame"].document.getElementById("searchWord").focus(); } </script> </head> <frameset id="indexFrameset" onload="onloadHandler()" rows="<%="0".equals(data.getBannerHeight())?"":data.getBannerHeight()+","%>24,*" frameborder="0" framespacing="0" border=0 spacing=0> <% if(!("0".equals(data.getBannerHeight()))){ %> <frame name="BannerFrame" title="<%=ServletResources.getString("Banner", request)%>" src='<%=data.getBannerURL()%>' tabIndex="3" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize=0> <% } %> <frame name="SearchFrame" title="<%=ServletResources.getString("helpToolbarFrame", request)%>" src='<%="advanced/search.jsp"+data.getQuery()%>' marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize=0> <frame name="HelpFrame" title="<%=ServletResources.getString("ignore", "HelpFrame", request)%>" src='<%="advanced/help.jsp"+data.getQuery()%>' marginwidth="0" marginheight="0" scrolling="no" frameborder="0" > </frameset> </html> |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.