Return-Path: Delivered-To: apmail-forrest-dev-archive@www.apache.org Received: (qmail 94859 invoked from network); 1 Oct 2005 15:35:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 1 Oct 2005 15:35:31 -0000 Received: (qmail 28900 invoked by uid 500); 1 Oct 2005 15:35:30 -0000 Delivered-To: apmail-forrest-dev-archive@forrest.apache.org Received: (qmail 28697 invoked by uid 500); 1 Oct 2005 15:35:29 -0000 Mailing-List: contact dev-help@forrest.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@forrest.apache.org List-Id: Delivered-To: mailing list dev@forrest.apache.org Received: (qmail 28686 invoked by uid 99); 1 Oct 2005 15:35:29 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Oct 2005 08:35:29 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [194.217.242.86] (HELO anchor-post-36.mail.demon.net) (194.217.242.86) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Oct 2005 08:35:33 -0700 Received: from kegcl.demon.co.uk ([194.222.194.80]) by anchor-post-36.mail.demon.net with esmtp (Exim 4.42) id 1ELjOC-000Oiv-Ln for dev@forrest.apache.org; Sat, 01 Oct 2005 15:35:05 +0000 Subject: Re: Cleaning up html-processing From: Kevin To: dev@forrest.apache.org In-Reply-To: <12910221548.20051001120150@soethe.net> References: <12910221548.20051001120150@soethe.net> Content-Type: text/plain Date: Sat, 01 Oct 2005 16:36:40 +0100 Message-Id: <1128181000.4059.16.camel@k2.flat5> Mime-Version: 1.0 X-Mailer: Evolution 2.0.2 (2.0.2-3) Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Sat, 2005-10-01 at 12:01 +0200, Ferdinand Soethe wrote: > After cleaning up a couple of rough edges in processing > and skinning table-elements in html-files I'm now stuck with the > problem of a border="1"-attribute appearing in table's that have a > class attribute in the source. > > Searching for border, border="1" and table in all the way downwards > from webapp I found no more likely culprits, trying to follow the > pipelines I got stuck (see my previous post). > > Can anybody tell me where that border="1" is coming from? Don't think there is. The border effect is achieved by setting the background colour in profile.css and using a cellspacing="1" on all ForrestTable classes. profile.css.xslt: .ForrestTable { background-color: ;} generates profile.css: .ForrestTable { background-color: #ccc;} (do a forrest site and play with this color) document2html.xsl:
generates output html. I may not have the full story but it's along those lines. Kevin > (I'm using a current head, did build clean and build and did a Forrest > clean before testing it) > > Thanks > Ferdinand Soethe >