You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mi...@apache.org on 2004/02/17 23:10:49 UTC

cvs commit: xml-xalan/java/src/org/apache/xalan/processor StylesheetHandler.java

minchau     2004/02/17 14:10:49

  Modified:    java/src/org/apache/xalan/processor StylesheetHandler.java
  Log:
  PR: bugzilla 26217
  Submitted by:	Brian Minchau
  Reviewed by:	Henry Zongaro
  
  Programming instructions don't have a namespace, so make
  the PI with no namespace be "xalan-doc-cache-off" rather than
  "xalan:doc-cache-off"
  - Brian Minchau
  
  Revision  Changes    Path
  1.64      +3 -2      xml-xalan/java/src/org/apache/xalan/processor/StylesheetHandler.java
  
  Index: StylesheetHandler.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/processor/StylesheetHandler.java,v
  retrieving revision 1.63
  retrieving revision 1.64
  diff -u -r1.63 -r1.64
  --- StylesheetHandler.java	11 Feb 2004 18:15:51 -0000	1.63
  +++ StylesheetHandler.java	17 Feb 2004 22:10:49 -0000	1.64
  @@ -761,7 +761,8 @@
         // it binds the prefix, I'm going to make this sloppy for
         // testing purposes.
         if(
  -	 "xalan:doc-cache-off".equals(target) ||
  +        "xalan-doc-cache-off".equals(target) ||
  +        "xalan:doc-cache-off".equals(target) ||
   	   ("doc-cache-off".equals(localName) &&
   	    ns.equals("org.apache.xalan.xslt.extensions.Redirect") )
   	 )
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org