> From: Reinhard Poetz [mailto:[EMAIL PROTECTED]]
> Is there a difference in performance - your solution compared > to a working > "exclude-result-prefixes"-attribute? Depends on whether you want to add a new stylesheet or modify the existing one (if any). While on the second choice (using xsl:element with local-name() in all templates that handle elements and attributes) performance should not change notisably; essentially this and exclude-result-prefixes do the same thing. > Did you try it with Cocoon? If yes, which version do you use? Nope I haven't. > > My stylesheet: > > <xsl:stylesheet > version="1.0" > xmlns:xsl="http://www.w3.org/1999/XSL/Transform" > xmlns:f="http://www.poetz.cc/forms" > xmlns:l="http://www.poetz.cc/linking" > xmlns:cinclude="http://apache.org/cocoon/include/1.0" > xmlns:dc="http://purl.org/dc/elements/1.1/" > xmlns:rss="http://purl.org/rss/1.0/" > xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" > exclude-result-prefixes="f"> Yes, the above will only remove namespace prefixes bound to http://www.poetz.cc/forms To filter all prefixes out modify the exclude-result-prefixes attribute to exclude-result-prefixes="f l cinclude dc rss rdf" Hth, Manos --------------------------------------------------------------------- Please check that your question has not already been answered in the FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html> To unsubscribe, e-mail: <[EMAIL PROTECTED]> For additional commands, e-mail: <[EMAIL PROTECTED]>