rlubke      02/01/28 15:55:42

  Added:       src/server/jsp-tests/jsp/core_syntax/directives/include
                        positiveIncludeCtxRelativeDirective.jsp
                        positiveIncludePageRelativeDirective.jsp
  Log:
   - content push from CTS
  
  Revision  Changes    Path
  1.1                  
jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/include/positiveIncludeCtxRelativeDirective.jsp
  
  Index: positiveIncludeCtxRelativeDirective.jsp
  ===================================================================
  <html>
  <title>positiveIncludeCtxRelativeDirective</title>
  <body>
  <% /**        Name : positiveIncludeCtxRelativeDirective
        Description : Create a JSP page with the include directive using 
                      a context-relative path. The included 
                      page should exist in the desired location
        Result :Send out the HTML of the first page with the output of the 
                second page and revert back to sending the first page once 
                second page is complete.
  **/ %>
  <!-- testing if including of files work -->
  <%@ include file = "/jsp/core_syntax/directives/include/includecommon.jsp" %>
  
  </body>
  </html>
  
  
  
  1.1                  
jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/include/positiveIncludePageRelativeDirective.jsp
  
  Index: positiveIncludePageRelativeDirective.jsp
  ===================================================================
  <html>
  <title>positiveIncludePageRelative</title>
  <body>
  <% /**        Name : positiveIncludePageRelative
        Description : Create a JSP page with the include directive using a 
                      page-relative path. The included 
                      page should exist in the desired location
        Result :Send out the HTML of the first page with the output of the 
                second page and revert back to sending the first page once 
                second page is complete.
  **/ %>
  <!-- testing if including of files work -->
  <%@ include file = "includecommon.jsp" %>
  
  </body>
  </html>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to