vote up 3 vote down star
2

I want the DocBook documents in my SVN repository to look nice if someone looks at them in a web browser. I've started to write a CSS stylesheet, but I think that it will have significant limitations -- particularly ones regarding hyperlinks.

There is a large body of DocBook XSL stylesheets at the DocBook site , but they don't seem to be appropriate for browser rendering. I don't want to generate static documents and put them into SVN. I want them to be basically readable for other developers without much hassle.

I could write my own browser-appropriate XSL stylesheet to convert DocBook to HTML, but it seems like someone else must have already done this. I just don't know where to find it.

flag

78% accept rate

3 Answers

vote up 1 vote down

You are right, the DocBook XSL stylesheets are very heavy, and are not really suitable for running in a browser. The DocBook Wiki lists some CSS stylesheets, perhaps one of those might work for you?

The only one I have experience of is the one which XMLMind XML Editor apparently uses to present DocBook documents.

link|flag
I started going down the CSS road and it was looking good, at least after I faced the fact that IE would not recognize CSS2.1 selectors when rendering XML and rewrote the styles. But then I wanted to make DocBook <ulink> elements turn into hyperlinks, and I don't think this can be done in CSS. – Steven Huwig Sep 17 at 12:59
One of the CSS stylesheets linked from the Wiki page claims ulink rendering support on Mozilla and Opera. I don't know how it does it and whether it's using standard CSS or some extensions. badgers-in-foil.co.uk/projects/docbook-css/… – jackem Sep 17 at 17:01
I didn't look at the code but clicking on a hyperlink on the demo crashed Safari hard. :) – Steven Huwig Sep 18 at 2:38
vote up 1 vote down

[Edited because I misread the question]

You certainly wouldn't want to run the stylesheets via a browser and the PI but then you wouldn't want to do that for any reasonably complex content. Do it server side if you're running over a web server or as a batch task. Is there any way that you can interpose a server side process in svn?

DocBook is a complex 'language' and capturing even most of the subleties of DocBook is very difficult. Using the DocBook XSL is not complex at all and I really would recommend you go in that direction if you can. The stylesheets are designed to be customised and are extremely well documented by Bob Stayton in DocBook XSL: The Complete Guide.

link|flag
I really don't want to deploy anything on the SVN server since it's a company-wide service. The stylesheets also don't have to be publication- or distribution-quality -- I just want fellow developers to be able to browse to the SVN URL and not need a special tool to read the documentation. – Steven Huwig Sep 17 at 13:01
Simplified DocBook is a better characterization of the source, though I think the declared DTD is the full DocBook. – Steven Huwig Sep 17 at 13:03
I've not seen any particularly good implementations that I'd recommend. I would suspect that you might be stuck creating one yourself. I've done this myself and it's been under a day's work with a simple variant on DocBook (I'd offer them to you but they're rather special purpose). – newt Sep 17 at 13:06
I've actually started the work and am only bothering with the tags I'm using. Not very hard but it'd still be better if it already existed. I've deferred the actual styling to the W3C Core styles, so the XSLT is pretty much translating article/title to h1, section/title to h3, ulink to a href, etc. – Steven Huwig Sep 17 at 13:14
vote up 1 vote down check

After quite a bit of searching, I believe the answer is "there is not a nice XSL stylesheet for client-side DocBook rendering," besides the bespoke ones like the one I implemented.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.