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 20184 invoked from network); 6 Apr 2000 08:15:51 -0000 Received: from unknown (HELO aquarium.politel.com) (195.219.34.1) by locus.apache.org with SMTP; 6 Apr 2000 08:15:51 -0000 Message-ID: From: "Eric SCHAEFFER" To: References: Subject: Re: template weirdness Date: Thu, 6 Apr 2000 10:16:08 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N There was a bug in Xerces and the HTML serializers : the MAP tag wasn't correctly declared. It is corrected on CVS. For the 1.0.3 dist, change this : org/apache/xml/serialize/HTMLdtd.java : l 509 : defineElement( "MAP", EMPTY | ALLOWED_HEAD ); change to defineElement( "MAP", ALLOWED_HEAD ); And all should be all right... Eric. ----- Original Message ----- From: Mike Engelhart To: Cocoon Dev Sent: Thursday, April 06, 2000 5:56 AM Subject: template weirdness > I may just be losing my mind but this template: > > > > href="/earthsaver.html"> > href="/news.html"> > href="/philosophy.html"> > href="/index.html"> > href="/xsp/car/index.xml"> > href="/xsp/hotel/index.xml"> > href="/xsp/air/index.xml"> > > > > when called like this from a separate stylesheet that includes the above > code: > > > > > Will not put the closing tag in my HTML output. The only reason I > noticed this is I was testing some javascript in Netscape and all my > imagemaps stopped working...Very bizarre and i'm hoping I'm just not seeing > something very obvious. I tried making the area tags have closing /> > instead of a separate tag and that didn't work either. > any idea on where to look for a problem like this? > > Mike >