Return-Path: Mailing-List: contact cocoon-dev-help@xml.apache.org; run by ezmlm Delivered-To: mailing list cocoon-dev@xml.apache.org Received: (qmail 95755 invoked from network); 1 Jul 2000 07:21:36 -0000 Received: from unknown (HELO envision.asiaconnect.com.my) (root@202.190.60.242) by locus.apache.org with SMTP; 1 Jul 2000 07:21:36 -0000 Received: from localbar.com (IDENT:niclas@localhost [127.0.0.1]) by envision.asiaconnect.com.my (8.9.3/8.8.7) with ESMTP id PAA24176 for ; Sat, 1 Jul 2000 15:30:27 +0800 Sender: niclas@envision.asiaconnect.com.my Message-ID: <395D9E13.CBED0194@localbar.com> Date: Sat, 01 Jul 2000 15:30:27 +0800 From: Niclas Hedhman Organization: Bali Automation Sdn Bhd X-Mailer: Mozilla 4.61 [en] (X11; I; Linux 2.2.12-20 i686) X-Accept-Language: en MIME-Version: 1.0 To: cocoon-dev@xml.apache.org Subject: Re: BUG? References: <02af01bfe293$f5d8f6d0$4b02a8c0@interati.co.uk> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N Peter Anning wrote: > Cocoon 1.7.4 > > I have a custom producer that inserts xsl stylesheet and processing = > instructions into my xml before passing it to the xslt process for = > transform. These instuctions are ignored/removed if the xsl element = > attributes are in single quotes. > > ie. this fails, Cocoon just delivers XML to the browser > > href='http://mantova:8080/data/guides/xslt/guideSectionPrevalence.xslt' > type='text/xsl'?> > > > this works > > href="http://mantova:8080/data/guides/xslt/guideSectionPrevalence.xslt" > type="text/xsl"?> > > > The single quotes used to work at 1.7 > > Peter Anning XML spec says; [10] AttValue ::= '"' ([^<&"] | Reference)* '"' | "'" ([^<&'] | Reference)* "'" (Chapter 2.3) clearly indicating that both " and ' should be allowed, as long as they are matching. Niclas