rlubke      02/01/28 16:07:51

  Added:       src/server/jsp-tests/jsp/tagext/TldPathResolution/explicit
                        negativeAbsFatalTranslationError.jsp
                        positiveAbsJar.jsp positiveAbsTld.jsp
                        positiveDirectTldReference.jsp positiveRelJar.jsp
                        positiveRelTld.jsp
  Log:
   - content push from CTS
  
  Revision  Changes    Path
  1.1                  
jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/TldPathResolution/explicit/negativeAbsFatalTranslationError.jsp
  
  Index: negativeAbsFatalTranslationError.jsp
  ===================================================================
  <html>
  <title>negativeAbsFatalTranslationError</title>
  <body>
  <% 
        /**     
        Name : negativeAbsFatalTranslationError
        Description : Verify that a fatal translation error is generated
                    when using an absolute URI and the tld cannot
                    be resolved.
                    
        Result : A fatal translation error should occur.
        **/  
  %>
  <%@ taglib uri="http://localhost/tlds/exampletaglib"; prefix="absolute" %>
  </body>
  </html>
  
  
  
  1.1                  
jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/TldPathResolution/explicit/positiveAbsJar.jsp
  
  Index: positiveAbsJar.jsp
  ===================================================================
  <html>
  <title>positiveAbsJar</title>
  <body>
  <% 
        /**     
        Name : positiveAbsJar
        Description : Verify that the tld can be properly resolved,
                    when the web.xml mapping specifies a jar for the
                    <tld-location> element, using an absolute URI.
                    
        Result : No fatal translation error should occur.
        **/  
  %>
  <%@ taglib uri="http://java.apache.org/tlds/tld-absolute-jar"; prefix="absolute" %>
  </body>
  </html>
  
  
  
  1.1                  
jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/TldPathResolution/explicit/positiveAbsTld.jsp
  
  Index: positiveAbsTld.jsp
  ===================================================================
  <html>
  <title>positiveAbsTld</title>
  <body>
  <% 
        /**     
        Name : positiveAbsTld
        Description : Verify that the tld can be properly resolved
                    using an absolute URI.
                    
        Result : No fatal translation error should occur.
        **/  
  %>
  <%@ taglib uri="http://java.apache.org/tlds/tld-absolute"; prefix="absolute" %>
  </body>
  </html>
  
  
  
  1.1                  
jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/TldPathResolution/explicit/positiveDirectTldReference.jsp
  
  Index: positiveDirectTldReference.jsp
  ===================================================================
  <html>
  <title>positiveDirectTldReference</title>
  <body>
  <% 
        /**     
        Name : positiveDirectTldReference
        Description : Verify that a tag can be used when the 
                    TLD is directly referenced in the uri
                    attribute of the taglib directive.
                    
        Result : The tag should send output to the client.
        **/  
  %>
  <%@ taglib uri="/WEB-INF/tlds/example-taglib.tld" prefix="direct" %>
  <direct:test toBrowser="true" att1="att1">
  Validated
  </direct:test>
  </body>
  </html>
  
  
  
  1.1                  
jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/TldPathResolution/explicit/positiveRelJar.jsp
  
  Index: positiveRelJar.jsp
  ===================================================================
  <html>
  <title>positiveRelJar</title>
  <body>
  <% 
        /**     
        Name : positiveAbsJar
        Description : Verify that the tld can be properly resolved,
                    when the web.xml mapping specifies a jar for the
                    <tld-location> element, using a relative URI.
                    
        Result : The tag will send output to the client.
        **/  
  %>
  <%@ taglib uri="/tld_jar" prefix="relative" %>
  <relative:tldtag uri="Relative JAR reference"/>
  </body>
  </html>
  
  
  
  1.1                  
jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/TldPathResolution/explicit/positiveRelTld.jsp
  
  Index: positiveRelTld.jsp
  ===================================================================
  <html>
  <title>positiveRelTld</title>
  <body>
  <% 
        /**     
        Name : positiveRelTld
        Description : Verify that the tld can be properly resolved
                    using a relative URI.
                    
        Result : The tag will return output to client.
        **/  
  %>
  <%@ taglib uri="/tld_relative" prefix="relative" %>
  <relative:test toBrowser="true" att1="att1">
  Validated
  </relative:test>
  </body>
  </html>
  
  
  

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

Reply via email to