You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2001/10/03 19:06:32 UTC

cvs commit: xml-xalan/c/src/XSLT NamespacesHandler.cpp

dbertoni    01/10/03 10:06:32

  Modified:    c/src/XSLT NamespacesHandler.cpp
  Log:
  Always exclude namespace by URI, not prefix.
  
  Revision  Changes    Path
  1.17      +1 -1      xml-xalan/c/src/XSLT/NamespacesHandler.cpp
  
  Index: NamespacesHandler.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/NamespacesHandler.cpp,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- NamespacesHandler.cpp	2001/09/26 21:30:23	1.16
  +++ NamespacesHandler.cpp	2001/10/03 17:06:32	1.17
  @@ -588,7 +588,7 @@
   			// check that first...
   			if (equals(thePrefix, theElementPrefix) == false &&
   				m_activePrefixes.find(thePrefix) == m_activePrefixes.end() &&
  -				(m_excludedResultPrefixes.find(thePrefix) != m_excludedResultPrefixes.end() ||
  +				(isExcludedNamespaceURI(theURI) == true ||
   				 m_extensionNamespaceURIs.find(theURI) != m_extensionNamespaceURIs.end()))
   			{
   				// It's excluded, so remove it...
  
  
  

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