Click to See Complete Forum and Search --> : how to locate uri ?


manishrathi
07-09-2009, 10:00 AM
<%@ page language="java" contentType="text/html;charset=UTF-8"%>

<%@ page import="ca.rogers.evolution.presentation.content.model.CommonImage"%>
<%@ page import="ca.rogers.evolution.presentation.eforms.common.EFormConstants" %>
<%@ page import="ca.rogers.evolution.presentation.i18n.locale.EvoLocaleManager"%>
<%@ page import="ca.rogers.portal.navigation.GotoPortalPageUrl"%>
<%@ page import="ca.rogers.portal.navigation.nbca.NavigationUtil"%>
<%@ page import="ca.rogers.portal.navigation.nbca.PageDefinition" %>
<%@ page import="com.cgi.r8n.core.commons.config.Config" %>
<%@ page import="com.cgi.r8n.core.commons.config.ConfigException" %>
<%@ page import="com.cgi.r8n.core.commons.i18n.locale.LocaleHelper"%>

<%@ taglib uri="rogers-content.tld" prefix="content"%>
<%@ taglib uri="r8n-tags-i18n.tld" prefix="reloadable-i18n"%>

This is the code in jsp I am trying to understand

1 <%@ page import="ca.rogers.evolution.presentation.content.model.CommonImage"%>
Where does the page come from ? It looks "ca.rogers.evolution.presentation.content.model.CommonImage" is an image. But whats the path for this image ? Do we not need path for image to be imported ?

2 uri="rogers-content.tld" , how can I locate this uri ? I mean where shall I start to look for this uri ?

3 <reloadable-i18n:bundle bundleName="message" id="textBundle"/>
<reloadable-i18n:message key="Search.Alert.Enter.Value" bundle="textBundle" id="enterMsg"/>
<reloadable-i18n:message key="Search.Alert.Please.Wait" bundle="textBundle" id="waitMsg"/>
these tags are used in the jsp I am working on, where can I find what these tags mean ? Does any part of the code (may be uri) indicate the location where these tags meaning is stored ? How to interprete it ?


thanks