atom feed46 messages in org.oasis-open.lists.docbook-appsRe: [docbook-apps] Simpler XHTML output
FromSent OnAttachments
Rene HacheApr 21, 2005 7:01 pm 
Larry GarfieldApr 21, 2005 11:46 pm 
Bob StaytonApr 21, 2005 11:57 pm 
Larry GarfieldApr 22, 2005 12:16 am 
Rene HacheApr 22, 2005 8:15 am 
Dave PawsonApr 22, 2005 10:26 am 
Rene HacheApr 22, 2005 11:28 am 
Bob StaytonApr 22, 2005 12:31 pm 
Rene HacheApr 25, 2005 8:33 am 
Jirka KosekApr 25, 2005 8:42 am.bin
Justus PiaterApr 25, 2005 9:30 am 
Dave PawsonApr 25, 2005 9:40 am 
Rene HacheApr 25, 2005 9:54 am 
Jirka KosekApr 25, 2005 9:55 am.bin
Dave PawsonApr 25, 2005 9:58 am 
Jirka KosekApr 25, 2005 10:08 am.bin
Dave PawsonApr 25, 2005 10:25 am 
Bob StaytonApr 25, 2005 10:40 am 
Dave PawsonApr 25, 2005 10:46 am 
Rene HacheApr 25, 2005 2:19 pm 
Rene HacheApr 25, 2005 2:22 pm 
Larry GarfieldApr 25, 2005 5:24 pm 
Larry GarfieldApr 25, 2005 5:28 pm 
Chris JohnsonApr 25, 2005 5:49 pm 
Bob StaytonApr 25, 2005 5:52 pm 
Rene HacheApr 25, 2005 6:35 pm 
Larry GarfieldApr 26, 2005 6:14 am 
Justus PiaterApr 26, 2005 6:58 am 
Rene HacheApr 26, 2005 7:06 am 
Justus PiaterApr 26, 2005 7:08 am 
Norman WalshApr 26, 2005 8:35 am.pgp
Colin Paul AdamsApr 26, 2005 8:44 am 
Dave PawsonApr 26, 2005 8:47 am 
Dave PawsonApr 26, 2005 8:48 am 
Norman WalshApr 26, 2005 8:52 am.pgp
John L. ClarkApr 26, 2005 1:52 pm.pgp
Peter RingApr 27, 2005 2:31 am 
Rene HacheApr 28, 2005 9:16 pm 
Dave PawsonApr 29, 2005 11:45 am 
Larry GarfieldApr 29, 2005 10:04 pm 
Rene HacheApr 30, 2005 12:25 am 
M.-A. DARCHEApr 30, 2005 8:27 am 
Larry GarfieldMay 2, 2005 9:04 pm 
Dave PawsonMay 3, 2005 10:10 am 
Rene HacheMay 3, 2005 11:47 am 
Larry GarfieldMay 4, 2005 10:41 pm 
Subject:Re: [docbook-apps] Simpler XHTML output
From:Rene Hache (rene@gmail.com)
Date:May 3, 2005 11:47:45 am
List:org.oasis-open.lists.docbook-apps

Larry,

I can do you one better, as it's online now. Not the prettiest page I've ever done, but it demonstrates what I'm talking about.

http://www.star-fleet.com/library/handbook/

Note how the TOC on the index page is "normal", while the TOCs on each chapter page float right with an alternate background color.

I've thinking about this, and I believe that we can do much better in terms of output, with simpler code. Remember that I was suggesting that each XHTML page have four ID divs: header, navigation, content and footer.

To me, what should go in the navigation div is a nested list, and from that list we could create a either a left, right or horizontal menu bar. We could also create a next/previous link in there, but the point is that we could create a entire DocBook navigation rather easily, without much code.

For example, code would output like the example below (please note that we could do this for as many levels of depth that we wanted.)

<div id="navigation"> <ul> <li>Chapter Name <ul> <li>Section Name</li> <li>Section Name</li> </li> </ul> </div>

Anyway, to me this makes more sense: it's totally doable (to use a real technical term!), plus you can generate CSS drop down lists from that code. For examples of how you can style lists, check this site: http://css.maxdesign.com.a u/index.htm

Thanks, Rene