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 ho...@apache.org on 2004/10/18 19:17:41 UTC

cvs commit: jakarta-taglibs/standard/conf c.tld fmt.tld fn.tld permittedTaglibs.tld scriptfree.tld sql.tld x.tld

horwat      2004/10/18 10:17:41

  Modified:    standard/conf c.tld fmt.tld fn.tld permittedTaglibs.tld
                        scriptfree.tld sql.tld x.tld
  Log:
  Bugzilla #31313
  http://nagoya.apache.org/bugzilla/show_bug.cgi?id=31313
  
  According to the W3C document the schemaLocation declaration is made up of a pair of URI references. One defines the namespace name and the other is a hint as to the location of the schema document. The space in the schemaLocation definition separates the two declarations.
  
  For a complete explanation you can take a look at part 3 of:
  
  http://www.w3.org/TR/xmlschema-1/#schema-loc
  
  In the JSTL case the location is not an absolute URI which can be confusing especially to some IDE's. I went ahead and changed it to be an absoluate URI pointing to the schema document location.
  
  Note that there is a space character between the namespace declaration and schema document location. That space character is intentional.
  
  Revision  Changes    Path
  1.26      +1 -1      jakarta-taglibs/standard/conf/c.tld
  
  Index: c.tld
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/standard/conf/c.tld,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- c.tld	4 Aug 2003 22:30:40 -0000	1.25
  +++ c.tld	18 Oct 2004 17:17:41 -0000	1.26
  @@ -2,7 +2,7 @@
   
   <taglib xmlns="http://java.sun.com/xml/ns/j2ee"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  -    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
  +    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
       version="2.0">
       
     <description>JSTL 1.1 core library</description>
  
  
  
  1.31      +1 -1      jakarta-taglibs/standard/conf/fmt.tld
  
  Index: fmt.tld
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/standard/conf/fmt.tld,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- fmt.tld	4 Aug 2003 22:30:40 -0000	1.30
  +++ fmt.tld	18 Oct 2004 17:17:41 -0000	1.31
  @@ -2,7 +2,7 @@
   
   <taglib xmlns="http://java.sun.com/xml/ns/j2ee"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  -    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
  +    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
       version="2.0">
       
     <description>JSTL 1.1 i18n-capable formatting library</description>
  
  
  
  1.5       +1 -1      jakarta-taglibs/standard/conf/fn.tld
  
  Index: fn.tld
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/standard/conf/fn.tld,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- fn.tld	29 Mar 2003 20:21:41 -0000	1.4
  +++ fn.tld	18 Oct 2004 17:17:41 -0000	1.5
  @@ -2,7 +2,7 @@
   
   <taglib xmlns="http://java.sun.com/xml/ns/j2ee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  -  xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
  +  xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
     version="2.0">
       
     <description>JSTL 1.1 functions library</description>
  
  
  
  1.10      +1 -1      jakarta-taglibs/standard/conf/permittedTaglibs.tld
  
  Index: permittedTaglibs.tld
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/standard/conf/permittedTaglibs.tld,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- permittedTaglibs.tld	5 Dec 2003 20:25:47 -0000	1.9
  +++ permittedTaglibs.tld	18 Oct 2004 17:17:41 -0000	1.10
  @@ -2,7 +2,7 @@
   
   <taglib xmlns="http://java.sun.com/xml/ns/j2ee"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  -    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
  +    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
       version="2.0">
     <description>
       Restricts JSP pages to the JSTL tag libraries
  
  
  
  1.10      +1 -1      jakarta-taglibs/standard/conf/scriptfree.tld
  
  Index: scriptfree.tld
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/standard/conf/scriptfree.tld,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- scriptfree.tld	5 Dec 2003 20:25:47 -0000	1.9
  +++ scriptfree.tld	18 Oct 2004 17:17:41 -0000	1.10
  @@ -2,7 +2,7 @@
   
   <taglib xmlns="http://java.sun.com/xml/ns/j2ee"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  -    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
  +    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
       version="2.0">
     <description>
       Validates JSP pages to prohibit use of scripting elements.
  
  
  
  1.29      +1 -1      jakarta-taglibs/standard/conf/sql.tld
  
  Index: sql.tld
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/standard/conf/sql.tld,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- sql.tld	4 Aug 2003 22:30:40 -0000	1.28
  +++ sql.tld	18 Oct 2004 17:17:41 -0000	1.29
  @@ -2,7 +2,7 @@
   
   <taglib xmlns="http://java.sun.com/xml/ns/j2ee"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  -    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
  +    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
       version="2.0">
       
     <description>JSTL 1.1 sql library</description>
  
  
  
  1.17      +1 -1      jakarta-taglibs/standard/conf/x.tld
  
  Index: x.tld
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/standard/conf/x.tld,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- x.tld	4 Aug 2003 22:30:40 -0000	1.16
  +++ x.tld	18 Oct 2004 17:17:41 -0000	1.17
  @@ -2,7 +2,7 @@
   
   <taglib xmlns="http://java.sun.com/xml/ns/j2ee"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  -    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
  +    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
       version="2.0">
       
     <description>JSTL 1.1 XML library</description>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: taglibs-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: taglibs-dev-help@jakarta.apache.org