<%@ include file="/sdk/oemTop.jspf" %> <%@ include file="/oemNoscript.jspf" %> <%@ page import="oracle.sysman.emo.util.UIXDataSource"%> <%@ page import="oracle.sysman.emo.txt.TextIndexHealthList"%> <%@ page import="oracle.sysman.emo.txt.TextIndexHealthDetails"%> <%@ page import="java.util.Iterator"%> <%@ page import="java.util.HashMap"%> <%@ page import="java.util.ResourceBundle"%> <%@ page import="oracle.sysman.emSDK.util.jdk.NLSUtil"%> <%@ page import="oracle.sysman.db.rsc.txt.TextMsgID"%> <%@ page import="oracle.sysman.db.rsc.txt.TextMsg"%> <%@ taglib uri="http://xmlns.oracle.com/uix/ui" prefix="uix" %> <%@ taglib uri="http://xmlns.oracle.com/oem/jsp/tag" prefix="oem" %> <%@ taglib uri="http://xmlns.oracle.com/oem/jsp/tag/db" prefix="db" %> <% oracle.cabo.share.util.CaboHttpUtils.setNoCacheHeaders(response); %> <% String statusPagePath = ((TextIndexHealthList)request.getAttribute("HEALTH_BEAN")).getStatusPagePath(); TextIndexHealthDetails healthObj = ((TextIndexHealthList)request.getAttribute("HEALTH_BEAN")).getSelectedIndexDetails(); ResourceBundle rbt0 = NLSUtil.getBundle(TextMsg.class.getName(), request); StringBuffer oemTitle = (StringBuffer)request.getAttribute("_emSDK_PageTitle"); oemTitle.append("-"); String titleTxt = rbt0.getString(TextMsgID.VIEW_INDEX_TITLE); titleTxt += healthObj.getIndexOwner() + "." + healthObj.getIndexName(); boolean partitioned = healthObj.isPartitioned(); boolean renderPartition= healthObj.isPartitioned(); //making renderFalse so that no partitions will be shown. renderPartition = false; HashMap attributes = healthObj.getIndexAttributes(); Iterator itr = attributes.keySet().iterator(); while(itr.hasNext()) { String key = (String) itr.next(); String value = (String) attributes.get(key); request.setAttribute(key,value); //out.println("Attributes:"+key+":"+value); } if (!attributes.containsKey("FUZZY_SCORE")) { request.setAttribute("FUZZY_SCORE",rbt0.getString(TextMsgID.NOT_SET)); } if (!attributes.containsKey("FUZZY_NUMRESULTS")) { request.setAttribute("FUZZY_NUMRESULTS",rbt0.getString(TextMsgID.NOT_SET)); } if (!attributes.containsKey("HTTP_PROXY")) { request.setAttribute("HTTP_PROXY",rbt0.getString(TextMsgID.NOT_SET)); } if (!attributes.containsKey("NO_PROXY")) { request.setAttribute("NO_PROXY",rbt0.getString(TextMsgID.NOT_SET)); } if (!attributes.containsKey("FTP_PROXY")) { request.setAttribute("FTP_PROXY",rbt0.getString(TextMsgID.NOT_SET)); } if (!attributes.containsKey("WILDCARD_MAXTERMS")) { request.setAttribute("WILDCARD_MAXTERMS",rbt0.getString(TextMsgID.NOT_SET)); } %> <%@ include file="/oemTitle.jspf" %> <%@ include file="/oemGlobal.jspf" %>