2008/12/5 Olaf Meeuwissen <[EMAIL PROTECTED]>:
> Based on the lack of follow-ups, I guess not.
>
> For now I'll just have to settle for "printing" individual wiki pages
> from a browser (and maybe tweak the stylesheet for print media). That
> way, I can at least create a PDF file but it doesn't look too great.
I'm Japanese user and usually making PDF via browser's printing (no so
frequently).
It is not so bad with by using custom CSS for printing device for hiding buttons
and attachments (and also with disabling print header of browser).
/* printing styles */
@media print {
/* hide some buttons */
div.buttons, div.buttons input {
display: none;
}
/* hide attachment part */
h3#tkt-changes-hdr, ul.tkt-chg-list, li.tkt-chg-change {
display: none;
}
}
If you want to print like a book, another plugin PageToDocbook plugin
may help you.
You can create PDF like this:
wiki --(plugin)--> DocBook --(xsl)--> XSL-FO --(fop)--> PDF
It's not automated process but Japanese can be allowed.
--
Shun-ichi GOTO
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---