You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by js...@apache.org on 2001/05/14 18:14:21 UTC

cvs commit: jakarta-taglibs/xtags/examples/web/test test_relative_uri.jsp

jstrachan    01/05/14 09:14:18

  Modified:    xtags/examples/web/test test_relative_uri.jsp
  Log:
  Added new test cases
  
  Revision  Changes    Path
  1.2       +2 -11     jakarta-taglibs/xtags/examples/web/test/test_relative_uri.jsp
  
  Index: test_relative_uri.jsp
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/xtags/examples/web/test/test_relative_uri.jsp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- test_relative_uri.jsp	2001/05/09 16:06:55	1.1
  +++ test_relative_uri.jsp	2001/05/14 16:14:11	1.2
  @@ -13,22 +13,13 @@
   <p>This demo tests the use of a relative URI for parsing a document relative to the JSP page.</p>
   
   
  -<xtags:parse id="doc" uri="sample.xml"/>
  +<xtags:parse uri="sample.xml"/>
   
   <p>Now lets output the XML document...</p>
   
  -<xtags:copyOf select="."/>
  +<xtags:copyOf select="/"/>
   
   <hr>
  -
  -<%--
  -
  -<p>Lets programatically generate the XML as a test...</p>
  -<%= doc.asXML() %> 
  -
  -<hr>
  -
  ---%>
   
   </body>
   </html>