You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by st...@locus.apache.org on 2000/08/31 18:42:36 UTC

cvs commit: xml-cocoon/src/org/apache/cocoon/xml/util NamespacesTable.java

stefano     00/08/31 09:42:35

  Modified:    src/org/apache/cocoon/xml/util Tag: xml-cocoon2
                        NamespacesTable.java
  Log:
  more help info
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.6   +2 -2      xml-cocoon/src/org/apache/cocoon/xml/util/Attic/NamespacesTable.java
  
  Index: NamespacesTable.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/xml/util/Attic/NamespacesTable.java,v
  retrieving revision 1.1.2.5
  retrieving revision 1.1.2.6
  diff -u -r1.1.2.5 -r1.1.2.6
  --- NamespacesTable.java	2000/07/29 18:30:45	1.1.2.5
  +++ NamespacesTable.java	2000/08/31 16:42:34	1.1.2.6
  @@ -15,7 +15,7 @@
    *
    * @author <a href="mailto:fumagalli@exoffice.com">Pierpaolo Fumagalli</a>
    *         (Apache Software Foundation, Exoffice Technologies)
  - * @version CVS $Revision: 1.1.2.5 $ $Date: 2000/07/29 18:30:45 $
  + * @version CVS $Revision: 1.1.2.6 $ $Date: 2000/08/31 16:42:34 $
    */
   public class NamespacesTable {
       /** The initial namespace declaration. */
  @@ -198,7 +198,7 @@
           if (uri.length()>0) {
               // We have a URI and a prefix, check them
               if ((prefix.length()>0) &&  (!uri.equals(this.getUri(prefix)))) {
  -                throw new SAXException("URI/Prefix mismatch");
  +                throw new SAXException("URI/Prefix mismatch [" + prefix + "," + uri + "]");
               } else {
                   String temp=this.getPrefix(uri);
                   if (temp==null) throw new SAXException("URI not declared");