From martin.gautier at myrnham.co.uk Sat Dec 3 18:09:52 2005 From: martin.gautier at myrnham.co.uk (martin.gautier@myrnham.co.uk) Date: Sat Dec 3 17:51:02 2005 Subject: [docbook-css] Outline Side Panel v0.1 Message-ID: http://www.badgers-in-foil.co.uk/projects/docbook-css/outliner/ Seems to be incompatible with Firefox v1.5. I'd imagine this is related solely with the install.rdf file (and xpi) setting the max version to 1.0 Any chance for an update? Given the source I could do this (assuming I found out how to create the xpi) Cheers Mart ____________________________________________________ Martin Gautier Director Myrnham Associates Ph: +44 1548 898010 Fax: +44 702 0967 322 email: martin.gautier@myrnham.co.uk Web: http://www.myrnham.co.uk/ From martin.gautier at myrnham.co.uk Sat Dec 3 18:10:57 2005 From: martin.gautier at myrnham.co.uk (martin.gautier@myrnham.co.uk) Date: Sat Dec 3 17:51:50 2005 Subject: [docbook-css] Docbook-css with Firefox v1.5 Message-ID: Seems to break the image rendering cleverness and the correct display of numbered lists :o( Mart ____________________________________________________ Martin Gautier Director Myrnham Associates Ph: +44 1548 898010 Fax: +44 702 0967 322 email: martin.gautier@myrnham.co.uk Web: http://www.myrnham.co.uk/ From dave at badgers-in-foil.co.uk Sun Dec 4 00:14:26 2005 From: dave at badgers-in-foil.co.uk (David Holroyd) Date: Sun Dec 4 00:14:40 2005 Subject: [docbook-css] Docbook-css with Firefox v1.5 In-Reply-To: References: Message-ID: <20051204001425.GA9087@badgers-in-foil.co.uk> On Sat, Dec 03, 2005 at 06:10:57PM +0000, martin.gautier@myrnham.co.uk wrote: > Seems to break the image rendering cleverness and the correct display of > numbered lists I've just spent the last hour-and-some trying to cajole FF1.5 into doing something resonable with . The best I was able to achieve was using the now-functional 'content: counter(...)' syntax. Unfortunately, I can't work out how to get the generated content to appear as a 'marker', so there's always a line-break inbetween the 's number, and the first child (for example). It looks like whatever magic was previously done by the -moz-counter-reset CSS property has moved into the implementation details of HTML
    elements, and is therefore unreachable by simple CSS :( This patch makes images work again in FF 1.5: ----8<---- --- db-bindings.xml 7 Oct 2005 21:02:39 -0000 1.8 +++ db-bindings.xml 4 Dec 2005 00:11:31 -0000 @@ -110,8 +110,10 @@ var img = document.getAnonymousNodes(this)[0]; var file = this.selectImage(); + img.src = file; // HACK: using img.src=file 'inline' doesn't seem to work // but it does when called from a setTimeout() + // [the above now seems to work in Firefox 1.5 though] var f = function() { img.src = file; } setTimeout(f, 0); ---->8---- dave -- http://david.holroyd.me.uk/ From dave at badgers-in-foil.co.uk Sun Dec 4 00:30:31 2005 From: dave at badgers-in-foil.co.uk (David Holroyd) Date: Sun Dec 4 00:30:41 2005 Subject: [docbook-css] Outline Side Panel v0.1 In-Reply-To: References: Message-ID: <20051204003030.GB9087@badgers-in-foil.co.uk> On Sat, Dec 03, 2005 at 06:09:52PM +0000, martin.gautier@myrnham.co.uk wrote: > http://www.badgers-in-foil.co.uk/projects/docbook-css/outliner/ > > Seems to be incompatible with Firefox v1.5. > > I'd imagine this is related solely with the install.rdf file (and xpi) > setting the max version to 1.0 Doing a very quick test, that seems to be the case. Thanks for reminding me to check that latest Firefox! > Any chance for an update? I've uploaded an XPI with the max version changed to 1.5. > Given the source I could do this (assuming I found out how to create the > xpi) The XPI is actually just a ZIP file with the extension changed -- you can open / create XPIs with any standard ZIP utility :) ta, dave -- http://david.holroyd.me.uk/ From martin.gautier at myrnham.co.uk Sun Dec 4 10:17:09 2005 From: martin.gautier at myrnham.co.uk (martin.gautier@myrnham.co.uk) Date: Sun Dec 4 09:58:43 2005 Subject: [docbook-css] Outline Side Panel v0.1 In-Reply-To: <20051204003030.GB9087@badgers-in-foil.co.uk> Message-ID: >> The XPI is actually just a ZIP file with the extension changed Oh yeah. I remember that's the case now. Thanks for the update... Mart From martin.gautier at myrnham.co.uk Sun Dec 4 13:59:11 2005 From: martin.gautier at myrnham.co.uk (martin.gautier@myrnham.co.uk) Date: Sun Dec 4 13:40:40 2005 Subject: [docbook-css] Docbook-css with Firefox v1.5 In-Reply-To: <20051204001425.GA9087@badgers-in-foil.co.uk> Message-ID: >> This patch makes images work again in FF 1.5: Not for me :o( >> db-bindings.xml 7 Oct 2005 21:02:39 -0000 1.8 This file seems newer than mine. Is there a CVS tree to pull from? Mart From dave at badgers-in-foil.co.uk Sun Dec 4 14:12:24 2005 From: dave at badgers-in-foil.co.uk (David Holroyd) Date: Sun Dec 4 14:13:27 2005 Subject: [docbook-css] Docbook-css with Firefox v1.5 In-Reply-To: References: <20051204001425.GA9087@badgers-in-foil.co.uk> Message-ID: <20051204141223.GC17241@badgers-in-foil.co.uk> On Sun, Dec 04, 2005 at 01:59:11PM +0000, martin.gautier@myrnham.co.uk wrote: > >> This patch makes images work again in FF 1.5: > > Not for me :o( Oops, sorry! > >> db-bindings.xml 7 Oct 2005 21:02:39 -0000 1.8 > > This file seems newer than mine. Is there a CVS tree to pull from? Yes, see the description here, http://sourceforge.net/cvs/?group_id=21935 The files are in the tree here, http://cvs.sourceforge.net/viewcvs.py/docbook/css/xml/docbook/ so you should check-out the module 'css/xml/docbook', I think. Let me know if this makes a difference. ta, dave -- http://david.holroyd.me.uk/ From martin.gautier at myrnham.co.uk Sun Dec 4 16:37:44 2005 From: martin.gautier at myrnham.co.uk (martin.gautier@myrnham.co.uk) Date: Sun Dec 4 16:19:02 2005 Subject: [docbook-css] Docbook-css with Firefox v1.5 In-Reply-To: <20051204141223.GC17241@badgers-in-foil.co.uk> Message-ID: >> so you should check-out the module 'css/xml/docbook', I think. I pulled out mozilla.css and db-bindings.xml which has done the trick. Thanks. Mart