Return-Path: Delivered-To: apmail-cocoon-docs-archive@www.apache.org Received: (qmail 47527 invoked from network); 12 Jul 2007 13:05:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Jul 2007 13:05:15 -0000 Received: (qmail 14341 invoked by uid 500); 12 Jul 2007 13:05:16 -0000 Delivered-To: apmail-cocoon-docs-archive@cocoon.apache.org Received: (qmail 14315 invoked by uid 500); 12 Jul 2007 13:05:16 -0000 Mailing-List: contact docs-help@cocoon.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: docs@cocoon.apache.org List-Id: Delivered-To: mailing list docs@cocoon.apache.org Received: (qmail 14304 invoked by uid 99); 12 Jul 2007 13:05:16 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Jul 2007 06:05:16 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Jul 2007 06:05:13 -0700 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 3EF9959F71 for ; Thu, 12 Jul 2007 13:04:53 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: docs@cocoon.apache.org Date: Thu, 12 Jul 2007 13:04:53 -0000 Message-ID: <20070712130453.24863.46394@eos.apache.org> Subject: [Cocoon Wiki] Update of "RemoveNamespaces" by AlexanderKlimetschek X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Cocoon Wiki" for change notification. The following page has been changed by AlexanderKlimetschek: http://wiki.apache.org/cocoon/RemoveNamespaces ------------------------------------------------------------------------------ + == Update: == + + Current Cocoon (2.2 trunk) contains a SAX-based Transformer {{{org.apache.cocoon.transformation.StripNameSpacesTransformer}}} that strips all namespaces. It's like the NamespaceStripperTransfomer mentioned below, but faster because it does not use the DOM. + + Configuration: + {{{ + + }}} + + Usage: + {{{ + + }}} + + Note: you can't configure it, it will always strip any namespace declaration in the SAX stream. + == Problem: == '''... I use namespaces and I want to remove the declarations and prefixes in my result xml ...'''