Author: ekoneil Date: Mon Aug 16 11:28:59 2004 New Revision: 36479 Removed: incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/miniTests/ctrlConversation/ incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/resources/images/weblogic-img-lt.jpg incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/resources/images/weblogic-img-rt.gif incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/resources/jsp/grid_template.jsp incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/resources/jsp/header.jsp incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/resources/jsp/qaPageSnap.jspf incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/resources/jsp/qaTraceResults.jsp Modified: incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/error.jsp incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml Log: DRT cleanup.
- remove weblogic images that live in the coreWeb/ webapp - remove some unused JSP templates / helpers - update the error.jsp page to the new one - remove the converstaional control test BB: self DRT: NetUI pass BVT: NetUI pass Modified: incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/error.jsp ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/error.jsp (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/coreWeb/error.jsp Mon Aug 16 11:28:59 2004 @@ -1,18 +1,68 @@ -<!--Generated by Weblogic Workshop--> <%@ page language="java" contentType="text/html;charset=UTF-8"%> -<%@ taglib uri="beehive-netui-tags-databinding.tld" prefix="netui-data"%> -<%@ taglib uri="beehive-netui-tags-html.tld" prefix="netui"%> -<%@ taglib uri="beehive-netui-tags-template.tld" prefix="netui-template"%> -<netui-template:template templatePage="/resources/jsp/template.jsp"> - <netui-template:setAttribute value="Error" name="title"/> - <netui-template:section name="bodySection"> - <% response.setStatus( 200 ); %> - Internal Error:<br /> - <span style="color:red;"> - <netui:exceptions showMessage="true" showStackTrace="false"></netui:exceptions> - <span><br> - <span style="color:gray;font-size:10pt;font-family:arial;"> - <netui:exceptions showMessage="false" showStackTrace="true"></netui:exceptions> - <span> - </netui-template:section> -</netui-template:template> +<%@ taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui"%> +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> +<netui:html> + <head> + <title>NetUI Error</title> + <style> + table { + border: solid 1pt #2f73c9; + background-color: #ffffff; + } + body { + margin: 20pt 5%; + background-color: #fdf4b6; + font-family: Arial, Helvetica, sans-serif; + font-size: 10pt; + } + .caption {font-weight: strong; + font-size: 14pt; + text-align: left; + width: 500px + } + th {vertical-align: top; + text-align: right; + font-size: 12pt; + color: #2f73c9; + width: 100px; + } + td { + text-align: left; + } + hr { + color: #2f73c9; + } + .posTitle { + position: relative; + color: #2f73c9; + left: -130pt; + top: -16pt; + } + .pfErrorLineOne { + color: red; + font-size: 12pt; + font-style: italic; + } + img { + border: solid 2pt #2f73c9; + } + </style> + <netui:base/> + </head> + <netui:body> + <div class="caption"> + <netui:image src="${pageContext.request.contextPath}/resources/images/error-header.jpg" width="338" height="96" alt="Page Flow Error"/> + <span class="posTitle">NetUI Error</span> + </div> + <table border="0" cellspacing='0' cellpadding='4'> + <c:if test="${request.errorMessage != null}"> + <tr><th>Message:</th><td class="pfErrorLineOne"><netui:label value="${request.errorMessage}" defaultValue=" "/></td></tr> + </c:if> + <tr><th>Exception:</th><td class="pfErrorLineOne"><netui:exceptions showMessage="true"/></td></tr> + <tr><td colspan="2" style="min-width:342"><hr></td></tr> + <tr><th>Stack Trace:</th><td><netui:exceptions showMessage="false" showDevModeStackTrace="true"/></td></tr> + </table> + </netui:body> +</netui:html> +<%-- Some browsers will not display this page unless the response status code is 200. --%> +<% response.setStatus(200); %> Modified: incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml ============================================================================== --- incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml (original) +++ incubator/beehive/trunk/netui/test/webapps/drt/testRecorder/config/testRecorder-tests.xml Mon Aug 16 11:28:59 2004 @@ -1533,15 +1533,6 @@ </features> </test> <test> - <name>ConversationalControls</name> - <description>Tests invoking conversational controls from page flows.</description> - <webapp>coreWeb</webapp> - <features> - <feature>Controls</feature> - <feature>Conversations</feature> - </features> - </test> - <test> <name>Cr121496</name> <description>Multiple forms with parameter and anchor posting</description> <webapp>coreWeb</webapp>
