Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #23980
| Newsgroups | comp.lang.java.programmer |
|---|---|
| Date | 2013-05-09 19:41 -0700 |
| References | <a06740e3-a629-42de-944b-6dffd69a1424@googlegroups.com> |
| Message-ID | <104d1ae2-151b-46a0-be21-5bcd62b6a4dd@googlegroups.com> (permalink) |
| Subject | Re: Unable to trace |
| From | RVic <rvince99@hotmail.com> |
I have jsp's that DO refer to 'beta' but not the jsp's being forwarded to here. Simply, it is calling this jsp:
'<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
'<%@ taglib tagdir="/WEB-INF/tags" prefix="cn" %>
'<%@ taglib tagdir="/WEB-INF/tags/admin" prefix="admin" %>
'<%@ taglib tagdir="/WEB-INF/tags/footer" prefix="footer" %>
'<%@ taglib tagdir="/WEB-INF/tags/header" prefix="header" %>
'<%@ taglib tagdir="/WEB-INF/tags/sidebar" prefix="sidebar" %>
'
'<%--@elvariable id="bodyUrl" type="java.lang.String"--%>
'<%--@elvariable id="user" type="com.capablenet.domain.User"--%>
'
'<cn:html>
' <admin:head/>
' <body id="admin">
' <div id="container">
' <div id="header" style="float:left;">
' <admin:adminNav/>
' </div>
' <br class="clear"/>
'
' <div id="site_info">
' <header:communityBrand/>
' <div id="site-links">
' <a id="viewsite" href="<c:url value="/"/>">view site</a>
' </div>
' <admin:currentUser user="${user}"/>
' </div>
' <div id="main-content">
' <div id="inner-content">
' <c:import url="${bodyUrl}"/>
' <br class="clear"/>
' </div>
' </div>
' <footer:footer/>
' </div>
' </body>
'</cn:html>
Where ${bodyURL} is:
'<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
'
'<h1 class="title">Administration | <span>Access Denied</span></h1>
'
'<c:choose>
' <c:when test="${!empty text}">
' <p>
' ${text}
' </p>
' </c:when>
' <c:otherwise>
' <p><strong>
' We're sorry, the page you are trying to reach is part of a restricted 'portion of our site.
' You are not currently logged on with proper permissions to view it.
' </strong></p>
'
' <p>
' If you believe you should have permissions to view this area, please 'send us <a href="<c:url value="/help/feedback"/>">Feedback</a>.
' </p>
' </c:otherwise>
'</c:choose>
Back to comp.lang.java.programmer | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Unable to trace RVic <rvince99@hotmail.com> - 2013-05-09 09:53 -0700
Re: Unable to trace Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-05-09 13:04 -0400
Re: Unable to trace markspace <markspace@nospam.nospam> - 2013-05-09 15:39 -0700
Re: Unable to trace Arne Vajhøj <arne@vajhoej.dk> - 2013-05-09 21:45 -0400
Re: Unable to trace RVic <rvince99@hotmail.com> - 2013-05-09 19:32 -0700
Re: Unable to trace RVic <rvince99@hotmail.com> - 2013-05-09 19:41 -0700
Re: Unable to trace Arne Vajhøj <arne@vajhoej.dk> - 2013-05-12 21:51 -0400
Re: Unable to trace RVic <rvince99@hotmail.com> - 2013-05-10 07:26 -0700
Re: Unable to trace Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-05-10 10:43 -0400
Re: Unable to trace Daniel Pitts <newsgroup.nospam@virtualinfinity.net> - 2013-05-10 09:52 -0700
Re: Unable to trace Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2013-05-10 19:03 +0200
Re: Unable to trace Daniel Pitts <newsgroup.nospam@virtualinfinity.net> - 2013-05-10 11:02 -0700
Re: Unable to trace Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2013-05-10 23:37 +0200
Re: Unable to trace RVic <rvince99@hotmail.com> - 2013-05-12 19:10 -0700
csiph-web