Author: ate
Date: Tue May  5 15:24:05 2009
New Revision: 771799

URL: http://svn.apache.org/viewvc?rev=771799&view=rev
Log:
Removing outdated core_rt jstl 1.0 taglibs which are no longer needed  with 
jstl 1.1 but I incorrectly "updated" earlier. 

Modified:
    
portals/applications/demo/trunk/src/main/webapp/WEB-INF/demo/userinfo/userinfo.jsp
    portals/applications/demo/trunk/src/main/webapp/WEB-INF/hello-wml.jsp

Modified: 
portals/applications/demo/trunk/src/main/webapp/WEB-INF/demo/userinfo/userinfo.jsp
URL: 
http://svn.apache.org/viewvc/portals/applications/demo/trunk/src/main/webapp/WEB-INF/demo/userinfo/userinfo.jsp?rev=771799&r1=771798&r2=771799&view=diff
==============================================================================
--- 
portals/applications/demo/trunk/src/main/webapp/WEB-INF/demo/userinfo/userinfo.jsp
 (original)
+++ 
portals/applications/demo/trunk/src/main/webapp/WEB-INF/demo/userinfo/userinfo.jsp
 Tue May  5 15:24:05 2009
@@ -17,7 +17,6 @@
 <%...@page import="javax.portlet.PortletRequest" %>
 <%@ taglib uri="http://java.sun.com/portlet"; prefix="portlet"%>
 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %>
-<%@ taglib uri="http://java.sun.com/jsp/jstl/core_rt"; prefix="c-rt"%>
 <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"; %>
 <fmt:setBundle 
basename="org.apache.portals.applications.demo.userinfo.resources.UserInfoResources"
 />
 
@@ -44,12 +43,12 @@
        <th><fmt:message key="userinfo.label.UserAttributeValue"/></th>
       </tr>
       
-      <c-rt:forEach var="userAttr" items="<%= 
renderRequest.getAttribute(PortletRequest.USER_INFO)%>">    
+      <c:forEach var="userAttr" items="<%= 
renderRequest.getAttribute(PortletRequest.USER_INFO)%>">    
       <tr>
        <td><c:out value="${userAttr.key}"/></td>
        <td><c:out value="${userAttr.value}"/></td>
       </tr>
-         </c-rt:forEach>
+         </c:forEach>
 
     </table>    
 
@@ -64,12 +63,12 @@
        <th><fmt:message key="userinfo.label.UserAttributeValue"/></th>
       </tr>
       
-      <c-rt:forEach var="userAttr" items="<%= 
request.getAttribute(PortletRequest.USER_INFO)%>">    
+      <c:forEach var="userAttr" items="<%= 
request.getAttribute(PortletRequest.USER_INFO)%>">    
       <tr>
        <td><c:out value="${userAttr.key}"/></td>
        <td><c:out value="${userAttr.value}"/></td>
       </tr>
-         </c-rt:forEach>
+         </c:forEach>
 
     </table>
         

Modified: portals/applications/demo/trunk/src/main/webapp/WEB-INF/hello-wml.jsp
URL: 
http://svn.apache.org/viewvc/portals/applications/demo/trunk/src/main/webapp/WEB-INF/hello-wml.jsp?rev=771799&r1=771798&r2=771799&view=diff
==============================================================================
--- portals/applications/demo/trunk/src/main/webapp/WEB-INF/hello-wml.jsp 
(original)
+++ portals/applications/demo/trunk/src/main/webapp/WEB-INF/hello-wml.jsp Tue 
May  5 15:24:05 2009
@@ -18,7 +18,6 @@
 <%@ taglib uri="http://java.sun.com/portlet"; prefix="portlet"%>
 <%@ page import="org.apache.jetspeed.request.RequestContext"%>
 <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"; %>
-<%@ taglib uri="http://java.sun.com/jsp/jstl/core_rt"; prefix="c_rt"%>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c"%>
 <fmt:setBundle 
basename="org.apache.portals.applications.demo.helloworld.resources.HelloWorldResources"
 />
 <portlet:defineObjects/>


Reply via email to