├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── CHANGES.adoc ├── LICENSE.txt ├── Makefile ├── README.md ├── assets ├── stylesheet.cljsinfo.css └── stylesheet.css ├── cover ├── cover.pdf ├── cover.png └── cover.svg ├── docbook-xsl ├── bin │ ├── dbtoepub │ ├── lib │ │ └── docbook.rb │ └── xslt │ │ └── obfuscate.xsl ├── callouts.xsl ├── common.xsl ├── fo-pdf.xsl ├── fop-config.xml ├── highlight.xsl ├── xslthl-config.xml └── xslthl │ ├── asciidoc-hl.xml │ ├── bourne-hl.xml │ ├── c-hl.xml │ ├── clojure-hl.xml │ ├── cpp-hl.xml │ ├── csharp-hl.xml │ ├── css-hl.xml │ ├── html-hl.xml │ ├── ini-hl.xml │ ├── java-hl.xml │ ├── javascript-hl.xml │ ├── lisp-hl.xml │ ├── perl-hl.xml │ ├── php-hl.xml │ ├── python-hl.xml │ ├── ruby-hl.xml │ └── sql2003-hl.xml ├── images ├── localhost1.png └── localhost2.png ├── requirements.txt ├── src ├── acknowledgments.adoc ├── compiler.adoc ├── index-docinfo.html ├── index.adoc ├── language-advanced.adoc └── language-basics.adoc ├── watch.sh └── xsl-styleshets ├── VERSION ├── VERSION.xsl ├── assembly ├── assemble.xsl ├── topic-maker-chunk.xsl └── topic-maker.xsl ├── common ├── af.xml ├── am.xml ├── ar.xml ├── as.xml ├── ast.xml ├── autoidx-kimber.xsl ├── autoidx-kosek.xsl ├── az.xml ├── bg.xml ├── bn.xml ├── bn_in.xml ├── bs.xml ├── ca.xml ├── charmap.xml ├── charmap.xsl ├── common.xml ├── common.xsl ├── cs.xml ├── cy.xml ├── da.xml ├── de.xml ├── el.xml ├── en.xml ├── entities.ent ├── eo.xml ├── es.xml ├── et.xml ├── eu.xml ├── fa.xml ├── fi.xml ├── fr.xml ├── ga.xml ├── gentext.xsl ├── gl.xml ├── gu.xml ├── he.xml ├── hi.xml ├── hr.xml ├── hu.xml ├── id.xml ├── insertfile.xsl ├── is.xml ├── it.xml ├── ja.xml ├── ka.xml ├── kn.xml ├── ko.xml ├── ky.xml ├── l10n.dtd ├── l10n.xml ├── l10n.xsl ├── la.xml ├── labels.xsl ├── lt.xml ├── lv.xml ├── ml.xml ├── mn.xml ├── mr.xml ├── nb.xml ├── nds.xml ├── nl.xml ├── nn.xml ├── olink.xsl ├── or.xml ├── pa.xml ├── pi.xml ├── pi.xsl ├── pl.xml ├── pt.xml ├── pt_br.xml ├── refentry.xml ├── refentry.xsl ├── ro.xml ├── ru.xml ├── sk.xml ├── sl.xml ├── sq.xml ├── sr.xml ├── sr_Latn.xml ├── stripns.xsl ├── subtitles.xsl ├── sv.xml ├── ta.xml ├── table.xsl ├── targetdatabase.dtd ├── targets.xsl ├── te.xml ├── th.xml ├── titles.xsl ├── tl.xml ├── tr.xml ├── uk.xml ├── utility.xml ├── utility.xsl ├── vi.xml ├── xh.xml ├── zh.xml ├── zh_cn.xml └── zh_tw.xml ├── eclipse ├── eclipse.xsl ├── eclipse3.xsl └── profile-eclipse.xsl ├── epub └── docbook.xsl ├── epub3 ├── chunk.xsl ├── chunkfast.xsl ├── docbook-epub.css.xml ├── docbook.xsl ├── epub3-chunk-mods.xsl ├── epub3-element-mods.xsl ├── profile-chunk.xsl ├── profile-docbook.xsl ├── titlepage.templates.xml └── titlepage.templates.xsl ├── fo ├── admon.xsl ├── annotations.xsl ├── autoidx-kimber.xsl ├── autoidx-kosek.xsl ├── autoidx-ng.xsl ├── autoidx.xsl ├── autotoc.xsl ├── axf.xsl ├── biblio-iso690.xsl ├── biblio.xsl ├── block.xsl ├── callout.xsl ├── component.xsl ├── division.xsl ├── docbook.xsl ├── ebnf.xsl ├── fo-rtf.xsl ├── fo.xsl ├── footnote.xsl ├── fop.xsl ├── fop1.xsl ├── formal.xsl ├── glossary.xsl ├── graphics.xsl ├── highlight.xsl ├── htmltbl.xsl ├── index.xsl ├── info.xsl ├── inline.xsl ├── keywords.xsl ├── lists.xsl ├── math.xsl ├── pagesetup.xsl ├── param.xml ├── param.xsl ├── passivetex.xsl ├── pi.xml ├── pi.xsl ├── profile-docbook.xsl ├── ptc.xsl ├── qandaset.xsl ├── refentry.xsl ├── sections.xsl ├── spaces.xsl ├── synop.xsl ├── table.xml ├── table.xsl ├── task.xsl ├── titlepage.templates.xml ├── titlepage.templates.xsl ├── titlepage.xsl ├── toc.xsl ├── verbatim.xsl ├── xep.xsl └── xref.xsl ├── highlighting ├── bourne-hl.xml ├── c-hl.xml ├── cmake-hl.xml ├── common.xsl ├── cpp-hl.xml ├── csharp-hl.xml ├── css21-hl.xml ├── delphi-hl.xml ├── ini-hl.xml ├── java-hl.xml ├── javascript-hl.xml ├── lua-hl.xml ├── m2-hl.xml ├── myxml-hl.xml ├── perl-hl.xml ├── php-hl.xml ├── python-hl.xml ├── ruby-hl.xml ├── sql1999-hl.xml ├── sql2003-hl.xml ├── sql92-hl.xml ├── tcl-hl.xml ├── upc-hl.xml └── xslthl-config.xml ├── html ├── admon.xsl ├── annotations.xsl ├── autoidx-kimber.xsl ├── autoidx-kosek.xsl ├── autoidx-ng.xsl ├── autoidx.xsl ├── autotoc.xsl ├── biblio-iso690.xsl ├── biblio.xsl ├── block.xsl ├── callout.xsl ├── changebars.xsl ├── chunk-changebars.xsl ├── chunk-code.xsl ├── chunk-common.xsl ├── chunk.xsl ├── chunker.xsl ├── chunkfast.xsl ├── chunktoc.xsl ├── component.xsl ├── division.xsl ├── docbook.css.xml ├── docbook.xsl ├── ebnf.xsl ├── footnote.xsl ├── formal.xsl ├── glossary.xsl ├── graphics.xsl ├── highlight.xsl ├── html-rtf.xsl ├── html.xsl ├── htmltbl.xsl ├── index.xsl ├── info.xsl ├── inline.xsl ├── keywords.xsl ├── lists.xsl ├── maketoc.xsl ├── manifest.xsl ├── math.xsl ├── oldchunker.xsl ├── onechunk.xsl ├── param.xml ├── param.xsl ├── pi.xml ├── pi.xsl ├── profile-chunk-code.xsl ├── profile-chunk.xsl ├── profile-docbook.xsl ├── profile-onechunk.xsl ├── qandaset.xsl ├── refentry.xsl ├── sections.xsl ├── synop.xsl ├── table.xsl ├── task.xsl ├── titlepage.templates.xml ├── titlepage.templates.xsl ├── titlepage.xsl ├── toc.xsl ├── verbatim.xsl └── xref.xsl ├── htmlhelp ├── htmlhelp-common.xsl ├── htmlhelp.xsl ├── profile-htmlhelp-common.xsl └── profile-htmlhelp.xsl ├── javahelp ├── javahelp.xsl └── profile-javahelp.xsl ├── lib └── lib.xsl ├── manpages ├── block.xsl ├── charmap.groff.xsl ├── docbook.xsl ├── endnotes.xsl ├── html-synop.xsl ├── info.xsl ├── inline.xsl ├── lists.xsl ├── other.xsl ├── param.xml ├── param.xsl ├── pi.xml ├── pi.xsl ├── profile-docbook.xsl ├── refentry.xsl ├── synop.xsl ├── table.xsl └── utility.xsl ├── params ├── abstract.notitle.enabled.xml ├── abstract.properties.xml ├── abstract.title.properties.xml ├── activate.external.olinks.xml ├── active.toc.xml ├── ade.extensions.xml ├── admon.graphics.extension.xml ├── admon.graphics.path.xml ├── admon.graphics.xml ├── admon.style.xml ├── admon.textlabel.xml ├── admonition.properties.xml ├── admonition.title.properties.xml ├── alignment.xml ├── annotate.toc.xml ├── annotation.css.xml ├── annotation.graphic.close.xml ├── annotation.graphic.open.xml ├── annotation.js.xml ├── annotation.support.xml ├── appendix.autolabel.xml ├── arbortext.extensions.xml ├── article.appendix.title.properties.xml ├── author.othername.in.middle.xml ├── autolayout-file.xml ├── autotoc.label.in.hyperlink.xml ├── autotoc.label.separator.xml ├── axf.extensions.xml ├── banner.before.navigation.xml ├── base.dir.xml ├── biblioentry.item.separator.xml ├── biblioentry.properties.xml ├── bibliography.collection.xml ├── bibliography.numbered.xml ├── bibliography.style.xml ├── blockquote.properties.xml ├── blurb.on.titlepage.enabled.xml ├── body.attributes.xml ├── body.bg.color.xml ├── body.end.indent.xml ├── body.font.family.xml ├── body.font.master.xml ├── body.font.size.xml ├── body.margin.bottom.xml ├── body.margin.inner.xml ├── body.margin.outer.xml ├── body.margin.top.xml ├── body.start.indent.xml ├── bookmarks.collapse.xml ├── bridgehead.in.toc.xml ├── bullet.image.xml ├── callout.defaultcolumn.xml ├── callout.graphics.extension.xml ├── callout.graphics.number.limit.xml ├── callout.graphics.path.xml ├── callout.graphics.xml ├── callout.icon.size.xml ├── callout.list.table.xml ├── callout.properties.xml ├── callout.unicode.font.xml ├── callout.unicode.number.limit.xml ├── callout.unicode.start.character.xml ├── callout.unicode.xml ├── calloutlist.properties.xml ├── callouts.extension.xml ├── chapter.autolabel.xml ├── chunk.append.xml ├── chunk.first.sections.xml ├── chunk.quietly.xml ├── chunk.section.depth.xml ├── chunk.sections.xml ├── chunk.separate.lots.xml ├── chunk.toc.xml ├── chunk.tocs.and.lots.has.title.xml ├── chunk.tocs.and.lots.xml ├── chunked.filename.prefix.xml ├── chunker.output.cdata-section-elements.xml ├── chunker.output.doctype-public.xml ├── chunker.output.doctype-system.xml ├── chunker.output.encoding.xml ├── chunker.output.indent.xml ├── chunker.output.media-type.xml ├── chunker.output.method.xml ├── chunker.output.omit-xml-declaration.xml ├── chunker.output.standalone.xml ├── citerefentry.link.xml ├── collect.xref.targets.xml ├── column.count.back.xml ├── column.count.body.xml ├── column.count.front.xml ├── column.count.index.xml ├── column.count.lot.xml ├── column.count.titlepage.xml ├── column.gap.back.xml ├── column.gap.body.xml ├── column.gap.front.xml ├── column.gap.index.xml ├── column.gap.lot.xml ├── column.gap.titlepage.xml ├── compact.list.item.spacing.xml ├── component.label.includes.part.label.xml ├── component.title.properties.xml ├── component.titlepage.properties.xml ├── contrib.inline.enabled.xml ├── crop.mark.bleed.xml ├── crop.mark.offset.xml ├── crop.mark.width.xml ├── crop.marks.xml ├── css.decoration.xml ├── css.stylesheet.dir.xml ├── css.stylesheet.xml ├── current.docid.xml ├── currentpage.marker.xml ├── custom.css.source.xml ├── default.float.class.xml ├── default.image.width.xml ├── default.table.frame.xml ├── default.table.rules.xml ├── default.table.width.xml ├── default.units.xml ├── dingbat.font.family.xml ├── disable.collapsible.xml ├── disable.incremental.xml ├── docbook.css.link.xml ├── docbook.css.source.xml ├── double.sided.xml ├── draft.mode.xml ├── draft.watermark.image.xml ├── dry-run.xml ├── dynamic.toc.xml ├── ebnf.assignment.xml ├── ebnf.statement.terminator.xml ├── ebnf.table.bgcolor.xml ├── ebnf.table.border.xml ├── eclipse.autolabel.xml ├── eclipse.plugin.id.xml ├── eclipse.plugin.name.xml ├── eclipse.plugin.provider.xml ├── editedby.enabled.xml ├── email.delimiters.enabled.xml ├── email.mailto.enabled.xml ├── emphasis.propagates.style.xml ├── entry.propagates.style.xml ├── epub.autolabel.xml ├── equation.number.properties.xml ├── equation.properties.xml ├── example.properties.xml ├── exsl.node.set.available.xml ├── feedback.href.xml ├── feedback.link.text.xml ├── feedback.with.ids.xml ├── figure.properties.xml ├── filename-prefix.xml ├── firstterm.only.link.xml ├── foil.footer.properties.xml ├── foil.header.properties.xml ├── foil.master.properties.xml ├── foil.page-sequence.properties.xml ├── foil.properties.xml ├── foil.region-after.properties.xml ├── foil.region-before.properties.xml ├── foil.region-body.properties.xml ├── foil.subtitle.properties.xml ├── foil.title.master.xml ├── foil.title.properties.xml ├── foil.title.size.xml ├── foilgroup.properties.xml ├── foilgroup.toc.xml ├── footer.column.widths.xml ├── footer.content.properties.xml ├── footer.hr.xml ├── footer.rule.xml ├── footer.table.height.xml ├── footer.table.properties.xml ├── footers.on.blank.pages.xml ├── footnote.font.size.xml ├── footnote.mark.properties.xml ├── footnote.number.format.xml ├── footnote.number.symbols.xml ├── footnote.properties.xml ├── footnote.sep.leader.properties.xml ├── fop.extensions.xml ├── fop1.extensions.xml ├── force.blank.pages.xml ├── formal.object.properties.xml ├── formal.procedures.xml ├── formal.title.placement.xml ├── formal.title.properties.xml ├── funcsynopsis.decoration.xml ├── funcsynopsis.style.xml ├── function.parens.xml ├── generate.consistent.ids.xml ├── generate.copyright.xml ├── generate.css.header.xml ├── generate.foilgroup.numbered.toc.xml ├── generate.foilgroup.toc.xml ├── generate.handoutnotes.xml ├── generate.id.attributes.xml ├── generate.index.xml ├── generate.legalnotice.link.xml ├── generate.manifest.xml ├── generate.meta.abstract.xml ├── generate.page.number.xml ├── generate.pubdate.xml ├── generate.revhistory.link.xml ├── generate.section.toc.level.xml ├── generate.speakernotes.xml ├── generate.titlepage.xml ├── generate.toc.xml ├── glossary.as.blocks.xml ├── glossary.collection.xml ├── glossary.sort.xml ├── glossdef.block.properties.xml ├── glossdef.list.properties.xml ├── glossentry.list.item.properties.xml ├── glossentry.show.acronym.xml ├── glosslist.as.blocks.xml ├── glossterm.auto.link.xml ├── glossterm.block.properties.xml ├── glossterm.list.properties.xml ├── glossterm.separation.xml ├── glossterm.width.xml ├── graphic.default.extension.xml ├── graphical.admonition.properties.xml ├── graphics.dir.xml ├── graphicsize.extension.xml ├── graphicsize.use.img.src.path.xml ├── handoutnotes.properties.xml ├── header.column.widths.xml ├── header.content.properties.xml ├── header.hr.xml ├── header.rule.xml ├── header.table.height.xml ├── header.table.properties.xml ├── headers.on.blank.pages.xml ├── hidetoc.image.xml ├── highlight.default.language.xml ├── highlight.source.xml ├── highlight.xslthl.config.xml ├── home.image.xml ├── html.append.xml ├── html.base.xml ├── html.cellpadding.xml ├── html.cellspacing.xml ├── html.cleanup.xml ├── html.ext.xml ├── html.extra.head.links.xml ├── html.head.legalnotice.link.multiple.xml ├── html.head.legalnotice.link.types.xml ├── html.longdesc.link.xml ├── html.longdesc.xml ├── html.script.type.xml ├── html.script.xml ├── html.stylesheet.type.xml ├── html.stylesheet.xml ├── htmlhelp.alias.file.xml ├── htmlhelp.autolabel.xml ├── htmlhelp.button.back.xml ├── htmlhelp.button.forward.xml ├── htmlhelp.button.hideshow.xml ├── htmlhelp.button.home.url.xml ├── htmlhelp.button.home.xml ├── htmlhelp.button.jump1.title.xml ├── htmlhelp.button.jump1.url.xml ├── htmlhelp.button.jump1.xml ├── htmlhelp.button.jump2.title.xml ├── htmlhelp.button.jump2.url.xml ├── htmlhelp.button.jump2.xml ├── htmlhelp.button.locate.xml ├── htmlhelp.button.next.xml ├── htmlhelp.button.options.xml ├── htmlhelp.button.prev.xml ├── htmlhelp.button.print.xml ├── htmlhelp.button.refresh.xml ├── htmlhelp.button.stop.xml ├── htmlhelp.button.zoom.xml ├── htmlhelp.chm.xml ├── htmlhelp.default.topic.xml ├── htmlhelp.display.progress.xml ├── htmlhelp.encoding.xml ├── htmlhelp.enhanced.decompilation.xml ├── htmlhelp.enumerate.images.xml ├── htmlhelp.force.map.and.alias.xml ├── htmlhelp.hhc.binary.xml ├── htmlhelp.hhc.folders.instead.books.xml ├── htmlhelp.hhc.section.depth.xml ├── htmlhelp.hhc.show.root.xml ├── htmlhelp.hhc.width.xml ├── htmlhelp.hhc.xml ├── htmlhelp.hhk.xml ├── htmlhelp.hhp.tail.xml ├── htmlhelp.hhp.window.xml ├── htmlhelp.hhp.windows.xml ├── htmlhelp.hhp.xml ├── htmlhelp.map.file.xml ├── htmlhelp.only.xml ├── htmlhelp.remember.window.position.xml ├── htmlhelp.show.advanced.search.xml ├── htmlhelp.show.favorities.xml ├── htmlhelp.show.menu.xml ├── htmlhelp.show.toolbar.text.xml ├── htmlhelp.title.xml ├── htmlhelp.use.hhk.xml ├── htmlhelp.window.geometry.xml ├── hyphenate.verbatim.characters.xml ├── hyphenate.verbatim.xml ├── hyphenate.xml ├── id.warnings.xml ├── ignore.image.scaling.xml ├── img.src.path.xml ├── index.div.title.properties.xml ├── index.entry.properties.xml ├── index.links.to.section.xml ├── index.method.xml ├── index.number.separator.xml ├── index.on.role.xml ├── index.on.type.xml ├── index.page.number.properties.xml ├── index.prefer.titleabbrev.xml ├── index.preferred.page.properties.xml ├── index.range.separator.xml ├── index.term.separator.xml ├── informal.object.properties.xml ├── informalequation.properties.xml ├── informalexample.properties.xml ├── informalfigure.properties.xml ├── informaltable.properties.xml ├── inherit.keywords.xml ├── inner.region.content.properties.xml ├── insert.link.page.number.xml ├── insert.olink.page.number.xml ├── insert.olink.pdf.frag.xml ├── insert.xref.page.number.xml ├── itemizedlist.label.properties.xml ├── itemizedlist.label.width.xml ├── itemizedlist.properties.xml ├── javahelp.encoding.xml ├── keep.relative.image.uris.xml ├── keyboard.nav.xml ├── l10n.gentext.default.language.xml ├── l10n.gentext.language.xml ├── l10n.gentext.use.xref.language.xml ├── l10n.lang.value.rfc.compliant.xml ├── label.from.part.xml ├── line-height.xml ├── linenumbering.everyNth.xml ├── linenumbering.extension.xml ├── linenumbering.separator.xml ├── linenumbering.width.xml ├── link.mailto.url.xml ├── list.block.properties.xml ├── list.block.spacing.xml ├── list.item.spacing.xml ├── make.clean.html.xml ├── make.graphic.viewport.xml ├── make.index.markup.xml ├── make.single.year.ranges.xml ├── make.valid.html.xml ├── make.year.ranges.xml ├── man.authors.section.enabled.xml ├── man.base.url.for.relative.links.xml ├── man.break.after.slash.xml ├── man.charmap.enabled.xml ├── man.charmap.subset.profile.english.xml ├── man.charmap.subset.profile.xml ├── man.charmap.uri.xml ├── man.charmap.use.subset.xml ├── man.copyright.section.enabled.xml ├── man.endnotes.are.numbered.xml ├── man.endnotes.list.enabled.xml ├── man.endnotes.list.heading.xml ├── man.font.funcprototype.xml ├── man.font.funcsynopsisinfo.xml ├── man.font.links.xml ├── man.font.table.headings.xml ├── man.font.table.title.xml ├── man.funcsynopsis.style.xml ├── man.hyphenate.computer.inlines.xml ├── man.hyphenate.filenames.xml ├── man.hyphenate.urls.xml ├── man.hyphenate.xml ├── man.indent.blurbs.xml ├── man.indent.lists.xml ├── man.indent.refsect.xml ├── man.indent.verbatims.xml ├── man.indent.width.xml ├── man.justify.xml ├── man.output.base.dir.xml ├── man.output.better.ps.enabled.xml ├── man.output.encoding.xml ├── man.output.in.separate.dir.xml ├── man.output.lang.in.name.enabled.xml ├── man.output.manifest.enabled.xml ├── man.output.manifest.filename.xml ├── man.output.quietly.xml ├── man.output.subdirs.enabled.xml ├── man.segtitle.suppress.xml ├── man.string.subst.map.local.post.xml ├── man.string.subst.map.local.pre.xml ├── man.string.subst.map.xml ├── man.subheading.divider.enabled.xml ├── man.subheading.divider.xml ├── man.table.footnotes.divider.xml ├── man.th.extra1.suppress.xml ├── man.th.extra2.max.length.xml ├── man.th.extra2.suppress.xml ├── man.th.extra3.max.length.xml ├── man.th.extra3.suppress.xml ├── man.th.title.max.length.xml ├── manifest.in.base.dir.xml ├── manifest.xml ├── manual.toc.xml ├── margin.note.float.type.xml ├── margin.note.properties.xml ├── margin.note.title.properties.xml ├── margin.note.width.xml ├── marker.section.level.xml ├── menuchoice.menu.separator.xml ├── menuchoice.separator.xml ├── minus.image.xml ├── mml.embedding.mode.fo.xml ├── mml.embedding.mode.xml ├── monospace.font.family.xml ├── monospace.properties.xml ├── monospace.verbatim.font.width.xml ├── monospace.verbatim.properties.xml ├── multiframe.bottom.bgcolor.xml ├── multiframe.navigation.height.xml ├── multiframe.top.bgcolor.xml ├── multiframe.xml ├── nav.separator.xml ├── nav.table.summary.xml ├── navbgcolor.xml ├── navbodywidth.xml ├── navig.graphics.extension.xml ├── navig.graphics.path.xml ├── navig.graphics.xml ├── navig.showtitles.xml ├── navtocwidth.xml ├── next.image.xml ├── no.home.image.xml ├── no.next.image.xml ├── no.prev.image.xml ├── no.toc.image.xml ├── no.up.image.xml ├── nominal.image.depth.xml ├── nominal.image.width.xml ├── nominal.table.width.xml ├── nongraphical.admonition.properties.xml ├── normal.para.spacing.xml ├── olink.base.uri.xml ├── olink.debug.xml ├── olink.doctitle.xml ├── olink.fragid.xml ├── olink.lang.fallback.sequence.xml ├── olink.outline.ext.xml ├── olink.properties.xml ├── olink.pubid.xml ├── olink.resolver.xml ├── olink.sysid.xml ├── orderedlist.label.properties.xml ├── orderedlist.label.width.xml ├── orderedlist.properties.xml ├── othercredit.like.author.enabled.xml ├── outer.region.content.properties.xml ├── output-root.xml ├── output.indent.xml ├── overlay.js.xml ├── overlay.logo.xml ├── overlay.xml ├── page.height.portrait.xml ├── page.height.xml ├── page.margin.bottom.xml ├── page.margin.inner.xml ├── page.margin.outer.xml ├── page.margin.top.xml ├── page.orientation.xml ├── page.width.portrait.xml ├── page.width.xml ├── pages.template.xml ├── paper.type.xml ├── para.propagates.style.xml ├── para.properties.xml ├── part.autolabel.xml ├── passivetex.extensions.xml ├── pgwide.properties.xml ├── phrase.propagates.style.xml ├── pixels.per.inch.xml ├── plus.image.xml ├── points.per.em.xml ├── preface.autolabel.xml ├── prefer.internal.olink.xml ├── preferred.mediaobject.role.xml ├── prev.image.xml ├── procedure.properties.xml ├── process.empty.source.toc.xml ├── process.source.toc.xml ├── profile.arch.xml ├── profile.attribute.xml ├── profile.audience.xml ├── profile.condition.xml ├── profile.conformance.xml ├── profile.lang.xml ├── profile.os.xml ├── profile.revision.xml ├── profile.revisionflag.xml ├── profile.role.xml ├── profile.security.xml ├── profile.separator.xml ├── profile.status.xml ├── profile.userlevel.xml ├── profile.value.xml ├── profile.vendor.xml ├── profile.wordsize.xml ├── punct.honorific.xml ├── qanda.defaultlabel.xml ├── qanda.in.toc.xml ├── qanda.inherit.numeration.xml ├── qanda.nested.in.toc.xml ├── qanda.title.level1.properties.xml ├── qanda.title.level2.properties.xml ├── qanda.title.level3.properties.xml ├── qanda.title.level4.properties.xml ├── qanda.title.level5.properties.xml ├── qanda.title.level6.properties.xml ├── qanda.title.properties.xml ├── qandadiv.autolabel.xml ├── rebuild-all.xml ├── refclass.suppress.xml ├── refentry.date.profile.enabled.xml ├── refentry.date.profile.xml ├── refentry.generate.name.xml ├── refentry.generate.title.xml ├── refentry.manual.fallback.profile.xml ├── refentry.manual.profile.enabled.xml ├── refentry.manual.profile.xml ├── refentry.meta.get.quietly.xml ├── refentry.pagebreak.xml ├── refentry.separator.xml ├── refentry.source.fallback.profile.xml ├── refentry.source.name.profile.enabled.xml ├── refentry.source.name.profile.xml ├── refentry.source.name.suppress.xml ├── refentry.title.properties.xml ├── refentry.version.profile.enabled.xml ├── refentry.version.profile.xml ├── refentry.version.suppress.xml ├── refentry.xref.manvolnum.xml ├── reference.autolabel.xml ├── region.after.extent.xml ├── region.before.extent.xml ├── region.inner.extent.xml ├── region.inner.properties.xml ├── region.outer.extent.xml ├── region.outer.properties.xml ├── revhistory.table.cell.properties.xml ├── revhistory.table.properties.xml ├── revhistory.title.properties.xml ├── root.filename.xml ├── root.properties.xml ├── rootid.xml ├── runinhead.default.title.end.punct.xml ├── runinhead.title.end.punct.xml ├── running.foot.properties.xml ├── s5.controls.xml ├── s5.defaultview.xml ├── s5.opera.css.xml ├── s5.outline.css.xml ├── s5.path.prefix.xml ├── s5.print.css.xml ├── s5.slides.css.xml ├── s5.slides.js.xml ├── sans.font.family.xml ├── saxon.callouts.xml ├── saxon.character.representation.xml ├── saxon.linenumbering.xml ├── saxon.tablecolumns.xml ├── script.dir.xml ├── section.autolabel.max.depth.xml ├── section.autolabel.xml ├── section.container.element.xml ├── section.label.includes.component.label.xml ├── section.level1.properties.xml ├── section.level2.properties.xml ├── section.level3.properties.xml ├── section.level4.properties.xml ├── section.level5.properties.xml ├── section.level6.properties.xml ├── section.properties.xml ├── section.title.level1.properties.xml ├── section.title.level2.properties.xml ├── section.title.level3.properties.xml ├── section.title.level4.properties.xml ├── section.title.level5.properties.xml ├── section.title.level6.properties.xml ├── section.title.properties.xml ├── segmentedlist.as.table.xml ├── sequential.links.xml ├── shade.verbatim.style.xml ├── shade.verbatim.xml ├── show.comments.xml ├── show.foil.number.xml ├── show.revisionflag.xml ├── showtoc.image.xml ├── side.float.properties.xml ├── side.region.precedence.xml ├── sidebar.float.type.xml ├── sidebar.float.width.xml ├── sidebar.properties.xml ├── sidebar.title.properties.xml ├── simplesect.in.toc.xml ├── slide.font.family.xml ├── slide.title.font.family.xml ├── slides.js.xml ├── slides.properties.xml ├── slides.titlepage.author.properties.xml ├── slides.titlepage.authorgroup.properties.xml ├── slides.titlepage.corpauthor.properties.xml ├── slides.titlepage.master.properties.xml ├── slides.titlepage.pubdate.properties.xml ├── slides.titlepage.region-body.properties.xml ├── slides.titlepage.subtitle.properties.xml ├── slides.titlepage.title.properties.xml ├── slidy.duration.xml ├── slidy.path.prefix.xml ├── slidy.slidy.css.xml ├── slidy.slidy.js.xml ├── slidy.user.css.xml ├── spacing.paras.xml ├── speakernote.properties.xml ├── speakernotes.properties.xml ├── subscript.properties.xml ├── superscript.properties.xml ├── suppress.footer.navigation.xml ├── suppress.header.navigation.xml ├── suppress.homepage.title.xml ├── suppress.navigation.xml ├── svg.embedding.mode.fo.xml ├── svg.embedding.mode.xml ├── symbol.font.family.xml ├── table.borders.with.css.xml ├── table.caption.properties.xml ├── table.cell.border.color.xml ├── table.cell.border.style.xml ├── table.cell.border.thickness.xml ├── table.cell.padding.xml ├── table.entry.padding.xml ├── table.footnote.number.format.xml ├── table.footnote.number.symbols.xml ├── table.footnote.properties.xml ├── table.frame.border.color.xml ├── table.frame.border.style.xml ├── table.frame.border.thickness.xml ├── table.properties.xml ├── table.spacer.image.xml ├── table.table.properties.xml ├── tablecolumns.extension.xml ├── target.database.document.xml ├── targets.filename.xml ├── task.properties.xml ├── template.xml ├── tex.math.delims.xml ├── tex.math.file.xml ├── tex.math.in.alt.xml ├── text.home.xml ├── text.next.xml ├── text.prev.xml ├── text.toc.xml ├── text.up.xml ├── textbgcolor.xml ├── textdata.default.encoding.xml ├── textinsert.extension.xml ├── title.font.family.xml ├── title.margin.left.xml ├── titlefoil.html.xml ├── toc.bg.color.xml ├── toc.blank.graphic.xml ├── toc.blank.image.xml ├── toc.blank.text.xml ├── toc.hide.show.xml ├── toc.html.xml ├── toc.image.xml ├── toc.indent.width.xml ├── toc.line.properties.xml ├── toc.list.type.xml ├── toc.margin.properties.xml ├── toc.max.depth.xml ├── toc.pointer.graphic.xml ├── toc.pointer.image.xml ├── toc.pointer.text.xml ├── toc.row.height.xml ├── toc.section.depth.xml ├── toc.spacer.graphic.xml ├── toc.spacer.image.xml ├── toc.spacer.text.xml ├── toc.width.xml ├── ua.js.xml ├── ulink.footnotes.xml ├── ulink.hyphenate.chars.xml ├── ulink.hyphenate.xml ├── ulink.show.xml ├── ulink.target.xml ├── up.image.xml ├── use.embed.for.svg.xml ├── use.extensions.xml ├── use.id.as.filename.xml ├── use.id.function.xml ├── use.local.olink.style.xml ├── use.role.as.xrefstyle.xml ├── use.role.for.mediaobject.xml ├── use.svg.xml ├── user.css.xml ├── variablelist.as.blocks.xml ├── variablelist.as.table.xml ├── variablelist.max.termlength.xml ├── variablelist.term.break.after.xml ├── variablelist.term.properties.xml ├── variablelist.term.separator.xml ├── verbatim.properties.xml ├── webhelp.autolabel.xml ├── webhelp.base.dir.xml ├── webhelp.common.dir.xml ├── webhelp.default.topic.xml ├── webhelp.include.search.tab.xml ├── webhelp.indexer.language.xml ├── webhelp.start.filename.xml ├── webhelp.tree.cookie.id.xml ├── wordml.template.xml ├── wrap.slidecontent.xml ├── writing.mode.xml ├── xbCollapsibleLists.js.xml ├── xbDOM.js.xml ├── xbLibrary.js.xml ├── xbStyle.js.xml ├── xep.extensions.xml ├── xep.index.item.properties.xml ├── xref.label-page.separator.xml ├── xref.label-title.separator.xml ├── xref.properties.xml ├── xref.title-page.separator.xml └── xref.with.number.and.title.xml ├── profiling ├── profile-mode.xsl ├── profile.xsl ├── strip-attributes.xsl └── xsl2profile.xsl ├── roundtrip ├── blocks-spec.xml ├── blocks2dbk.dtd ├── blocks2dbk.xsl ├── dbk2ooo.xsl ├── dbk2pages.xsl ├── dbk2wordml.xsl ├── dbk2wp.xsl ├── normalise-common.xsl ├── normalise2sections.xsl ├── pages2normalise.xsl ├── param.xml ├── param.xsl ├── sections-spec.xml ├── sections2blocks.xsl ├── specifications.xml ├── template-pages.xml ├── template.xml └── wordml2normalise.xsl ├── template ├── titlepage.xml └── titlepage.xsl ├── website ├── autolayout.xsl ├── chunk-common.xsl ├── chunk-tabular.xsl ├── chunk-website.xsl ├── head.xsl ├── makefile-dep.xsl ├── olink.xsl ├── param.xml ├── param.xsl ├── rss.xsl ├── tabular.xsl ├── toc-tabular.xsl ├── toc.xsl ├── website-common.xsl ├── website-targets.xsl ├── website.xsl └── xbel.xsl ├── xhtml-1_1 ├── admon.xsl ├── annotations.xsl ├── autoidx-kimber.xsl ├── autoidx-kosek.xsl ├── autoidx-ng.xsl ├── autoidx.xsl ├── autotoc.xsl ├── biblio-iso690.xsl ├── biblio.xsl ├── block.xsl ├── callout.xsl ├── changebars.xsl ├── chunk-changebars.xsl ├── chunk-code.xsl ├── chunk-common.xsl ├── chunk.xsl ├── chunker.xsl ├── chunkfast.xsl ├── chunktoc.xsl ├── component.xsl ├── division.xsl ├── docbook.css.xml ├── docbook.xsl ├── ebnf.xsl ├── footnote.xsl ├── formal.xsl ├── glossary.xsl ├── graphics.xsl ├── highlight.xsl ├── html-rtf.xsl ├── html.xsl ├── htmltbl.xsl ├── index.xsl ├── info.xsl ├── inline.xsl ├── keywords.xsl ├── lists.xsl ├── maketoc.xsl ├── manifest.xsl ├── math.xsl ├── oldchunker.xsl ├── onechunk.xsl ├── param.xsl ├── pi.xsl ├── profile-chunk-code.xsl ├── profile-chunk.xsl ├── profile-docbook.xsl ├── profile-onechunk.xsl ├── qandaset.xsl ├── refentry.xsl ├── sections.xsl ├── synop.xsl ├── table.xsl ├── task.xsl ├── titlepage.templates.xsl ├── titlepage.xsl ├── toc.xsl ├── verbatim.xsl └── xref.xsl ├── xhtml ├── admon.xsl ├── annotations.xsl ├── autoidx-kimber.xsl ├── autoidx-kosek.xsl ├── autoidx-ng.xsl ├── autoidx.xsl ├── autotoc.xsl ├── biblio-iso690.xsl ├── biblio.xsl ├── block.xsl ├── callout.xsl ├── changebars.xsl ├── chunk-changebars.xsl ├── chunk-code.xsl ├── chunk-common.xsl ├── chunk.xsl ├── chunker.xsl ├── chunkfast.xsl ├── chunktoc.xsl ├── component.xsl ├── division.xsl ├── docbook-no-doctype.xsl ├── docbook.css.xml ├── docbook.xsl ├── ebnf.xsl ├── footnote.xsl ├── formal.xsl ├── glossary.xsl ├── graphics.xsl ├── highlight.xsl ├── html-rtf.xsl ├── html.xsl ├── htmltbl.xsl ├── index.xsl ├── info.xsl ├── inline.xsl ├── keywords.xsl ├── lists.xsl ├── maketoc.xsl ├── manifest.xsl ├── math.xsl ├── oldchunker.xsl ├── onechunk.xsl ├── param.xsl ├── pi.xsl ├── profile-chunk-code.xsl ├── profile-chunk.xsl ├── profile-docbook.xsl ├── profile-onechunk.xsl ├── qandaset.xsl ├── refentry.xsl ├── sections.xsl ├── synop.xsl ├── table.xsl ├── task.xsl ├── titlepage.templates.xml ├── titlepage.templates.xsl ├── titlepage.xsl ├── toc.xsl ├── verbatim.xsl └── xref.xsl └── xhtml5 ├── chunk.xsl ├── chunkfast.xsl ├── docbook.css.xml ├── docbook.xsl ├── html5-chunk-mods.xsl ├── html5-element-mods.xsl ├── onechunk.xsl ├── profile-chunk.xsl ├── profile-docbook.xsl ├── xhtml-docbook.xsl ├── xhtml-profile-docbook.xsl └── xhtml2xhtml5.xsl /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: niwinz 2 | patreon: niwinz 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /playground/ 3 | .cpcache 4 | .rebel_readline_history 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "asciidoctor-fopub"] 2 | path = asciidoctor-fopub 3 | url = https://github.com/asciidoctor/asciidoctor-fopub 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | This book is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. And 2 | the primary authors are: 3 | 4 | - Andrey Antukh 5 | - Alejandro Gómez 6 | -------------------------------------------------------------------------------- /cover/cover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/clojurescript-unraveled/8a58013f9ae6c18845618597bbd58b07b4c2cd2d/cover/cover.pdf -------------------------------------------------------------------------------- /cover/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/clojurescript-unraveled/8a58013f9ae6c18845618597bbd58b07b4c2cd2d/cover/cover.png -------------------------------------------------------------------------------- /docbook-xsl/bin/xslt/obfuscate.xsl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /docbook-xsl/callouts.xsl: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 1 10 | 60 11 | 9pt 12 | 1 13 | 10 14 | .svg 15 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | images/icons/callouts/ 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /docbook-xsl/fop-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /images/localhost1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/clojurescript-unraveled/8a58013f9ae6c18845618597bbd58b07b4c2cd2d/images/localhost1.png -------------------------------------------------------------------------------- /images/localhost2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcool/clojurescript-unraveled/8a58013f9ae6c18845618597bbd58b07b4c2cd2d/images/localhost2.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ghp-import==0.4.1 2 | -------------------------------------------------------------------------------- /src/acknowledgments.adoc: -------------------------------------------------------------------------------- 1 | Special thanks to: 2 | 3 | * *J David Eisenberg*: For the huge amount of time spend in fixing all kind of errors and 4 | writing entire sections of the book, as well as making very valuable suggestions. 5 | 6 | And here is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS -- 7 | people who have submitted corrections, new ideas and generally made the 8 | _ClojureScript Unraveled_ book much better: 9 | 10 | * Anler Hernández Peral (@anler) 11 | * Diego Sevilla Ruiz (@dsevilla) 12 | * Eduardo Ferro Aldama (@eferro) 13 | * Tyler Anderson (@Tyler-Anderson) 14 | * Chris Ulrich (@chrisulrich) 15 | * Jean Hadrien Chabran (@jhchabran) 16 | * Tienson Qin (@tiensonqin) 17 | * FungusHumungus (@FungusHumungus), 18 | * Chris Charles (@ccharles) 19 | * Jearvon Dharrie (@iamjarvo) 20 | * Shaun LeBron (@shaunlebron) 21 | * Wodin (@wodin) 22 | * Crocket (@crocket) 23 | -------------------------------------------------------------------------------- /src/index-docinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /watch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | while true; do 4 | inotifywait -e close_write,moved_to \ 5 | --excludei ".git/.*$" -r . 6 | make $@; 7 | done; 8 | -------------------------------------------------------------------------------- /xsl-styleshets/epub3/docbook.xsl: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | ]> 6 | 7 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /xsl-styleshets/fo/annotations.xsl: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /xsl-styleshets/fo/autoidx-ng.xsl: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 14 | 15 | 16 | 17 | 18 | kosek 19 | 20 | 21 | -------------------------------------------------------------------------------- /xsl-styleshets/fo/keywords.xsl: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /xsl-styleshets/html/autoidx-ng.xsl: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 14 | 15 | 16 | 17 | 18 | kosek 19 | 20 | 21 | -------------------------------------------------------------------------------- /xsl-styleshets/html/manifest.xsl: -------------------------------------------------------------------------------- 1 | 5 | 6 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /xsl-styleshets/htmlhelp/htmlhelp.xsl: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /xsl-styleshets/htmlhelp/profile-htmlhelp.xsl: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /xsl-styleshets/params/abstract.notitle.enabled.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | abstract.notitle.enabled 9 | boolean 10 | 11 | 12 | abstract.notitle.enabled 13 | Suppress display of abstract titles? 14 | 15 | 16 | 17 | 18 | Description 19 | If non-zero, in output of the abstract element on titlepages, 20 | display of the abstract title is suppressed. 21 | 22 | 23 | -------------------------------------------------------------------------------- /xsl-styleshets/params/active.toc.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | active.toc 9 | boolean 10 | 11 | 12 | active.toc 13 | Active ToCs? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, JavaScript is used to keep the ToC and the current slide 25 | in sync. That is, each time the slide changes, the corresponding 26 | ToC entry will be underlined. 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/admon.graphics.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | admon.graphics 9 | boolean 10 | 11 | 12 | admon.graphics 13 | Use graphics in admonitions? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If true (non-zero), admonitions are presented in an alternate style that uses 25 | a graphic. Default graphics are provided in the distribution. 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/admonition.properties.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | admonition.properties 9 | attribute set 10 | 11 | 12 | admonition.properties 13 | To set the style for admonitions. 14 | 15 | 16 | 17 | 18 | 19 | 20 | Description 21 | How do you want admonitions styled? 22 | Set the font-size, weight, etc. to the style required 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /xsl-styleshets/params/annotate.toc.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | annotate.toc 9 | boolean 10 | 11 | 12 | annotate.toc 13 | Annotate the Table of Contents? 14 | 15 | 16 | 17 | 18 | 19 | 20 | Description 21 | 22 | If true, TOCs will be annotated. At present, this just means 23 | that the refpurpose of refentry 24 | TOC entries will be displayed. 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/autotoc.label.separator.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | autotoc.label.separator 9 | string 10 | 11 | 12 | autotoc.label.separator 13 | Separator between labels and titles in the ToC 14 | 15 | 16 | 17 | 18 | . 19 | 20 | 21 | 22 | Description 23 | 24 | String used to separate labels and titles in a table of contents. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/banner.before.navigation.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | banner.before.navigation 9 | boolean 10 | 11 | 12 | banner.before.navigation 13 | Put banner before navigation? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | FIXME 24 | 25 | 26 | -------------------------------------------------------------------------------- /xsl-styleshets/params/biblioentry.item.separator.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | biblioentry.item.separator 9 | string 10 | 11 | 12 | biblioentry.item.separator 13 | Text to separate bibliography entries 14 | 15 | 16 | 17 | . 18 | 19 | 20 | Description 21 | 22 | Text to separate bibliography entries 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /xsl-styleshets/params/bibliography.numbered.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | bibliography.numbered 9 | boolean 10 | 11 | 12 | bibliography.numbered 13 | Should bibliography entries be numbered? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero bibliography entries will be numbered 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/body.bg.color.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | body.bg.color 9 | color 10 | 11 | 12 | body.bg.color 13 | Background color for body frame 14 | 15 | 16 | 17 | 18 | #FFFFFF 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the background color used in the body column of 25 | tabular slides. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/body.margin.top.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | body.margin.top 9 | length 10 | 11 | 12 | body.margin.top 13 | To specify the size of the top margin of a page 14 | 15 | 16 | 17 | 18 | 0.5in 19 | 20 | 21 | 22 | Description 23 | 24 | The body top margin is the distance from the top of the 25 | region-before to the first line of text in the page body. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/bullet.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | bullet.image 9 | filename 10 | 11 | 12 | bullet.image 13 | Bullet image 14 | 15 | 16 | 17 | 18 | toc/bullet.png 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the bullet image used for foils in the 25 | framed ToC. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/callout.icon.size.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | callout.icon.size 9 | length 10 | 11 | 12 | callout.icon.size 13 | Specifies the size of callout marker icons 14 | 15 | 16 | 17 | 18 | 7pt 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the size of the callout marker icons. 25 | The default size is 7 points. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/chunk.section.depth.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | chunk.section.depth 9 | integer 10 | 11 | 12 | chunk.section.depth 13 | Depth to which sections should be chunked 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter sets the depth of section chunking. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/column.count.back.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | column.count.back 9 | integer 10 | 11 | 12 | column.count.back 13 | Number of columns on back matter pages 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Number of columns on back matter (appendix, glossary, etc.) pages. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/column.count.body.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | column.count.body 9 | integer 10 | 11 | 12 | column.count.body 13 | Number of columns on body pages 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Number of columns on body pages. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/column.count.front.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | column.count.front 9 | integer 10 | 11 | 12 | column.count.front 13 | Number of columns on front matter pages 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Number of columns on front matter (dedication, preface, etc.) pages. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/column.count.index.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | column.count.index 9 | integer 10 | 11 | 12 | column.count.index 13 | Number of columns on index pages 14 | 15 | 16 | 17 | 18 | 2 19 | 20 | 21 | 22 | Description 23 | 24 | Number of columns on index pages. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/column.count.lot.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | column.count.lot 9 | integer 10 | 11 | 12 | column.count.lot 13 | Number of columns on a 'List-of-Titles' page 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Number of columns on a page sequence containing the Table of Contents, 25 | List of Figures, etc. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/column.count.titlepage.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | column.count.titlepage 9 | integer 10 | 11 | 12 | column.count.titlepage 13 | Number of columns on a title page 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Number of columns on a title page 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/column.gap.back.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | column.gap.back 9 | length 10 | 11 | 12 | column.gap.back 13 | Gap between columns in back matter 14 | 15 | 16 | 17 | 18 | 12pt 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the gap between columns in back matter (if 25 | column.count.back is greater than one). 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/column.gap.body.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | column.gap.body 9 | length 10 | 11 | 12 | column.gap.body 13 | Gap between columns in the body 14 | 15 | 16 | 17 | 18 | 12pt 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the gap between columns in body matter (if 25 | column.count.body is greater than one). 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/column.gap.front.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | column.gap.front 9 | length 10 | 11 | 12 | column.gap.front 13 | Gap between columns in the front matter 14 | 15 | 16 | 17 | 18 | 12pt 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the gap between columns in front matter (if 25 | column.count.front is greater than one). 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/column.gap.index.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | column.gap.index 9 | length 10 | 11 | 12 | column.gap.index 13 | Gap between columns in the index 14 | 15 | 16 | 17 | 18 | 12pt 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the gap between columns in indexes (if 25 | column.count.index is greater than one). 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/column.gap.lot.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | column.gap.lot 9 | length 10 | 11 | 12 | column.gap.lot 13 | Gap between columns on a 'List-of-Titles' page 14 | 15 | 16 | 17 | 18 | 12pt 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the gap between columns on 'List-of-Titles' pages (if 25 | column.count.lot is greater than one). 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/crop.mark.bleed.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | crop.mark.bleed 9 | length 10 | 11 | 12 | crop.mark.bleed 13 | Length of invisible part of crop marks. 14 | 15 | 16 | 17 | 18 | 6pt 19 | 20 | 21 | 22 | Description 23 | 24 | Length of invisible part of crop marks. Crop marks are controlled by 25 | crop.marks parameter. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/crop.mark.offset.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | crop.mark.offset 9 | length 10 | 11 | 12 | crop.mark.offset 13 | Length of crop marks. 14 | 15 | 16 | 17 | 18 | 24pt 19 | 20 | 21 | 22 | Description 23 | 24 | Length of crop marks. Crop marks are controlled by 25 | crop.marks parameter. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/crop.mark.width.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | crop.mark.width 9 | length 10 | 11 | 12 | crop.mark.width 13 | Width of crop marks. 14 | 15 | 16 | 17 | 18 | 0.5pt 19 | 20 | 21 | 22 | Description 23 | 24 | Width of crop marks. Crop marks are controlled by 25 | crop.marks parameter. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/crop.marks.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | crop.marks 9 | boolean 10 | 11 | 12 | crop.marks 13 | Output crop marks? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, crop marks will be added to each page. Currently this 25 | works only with XEP if you have xep.extensions set. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/currentpage.marker.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | currentpage.marker 9 | string 10 | 11 | 12 | currentpage.marker 13 | The text symbol used to mark the current page 14 | 15 | 16 | 17 | 18 | @ 19 | 20 | 21 | 22 | Description 23 | Character to use as identifying the current page in 24 | 25 | 26 | -------------------------------------------------------------------------------- /xsl-styleshets/params/default.table.frame.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | default.table.frame 9 | string 10 | 11 | 12 | default.table.frame 13 | The default framing of tables 14 | 15 | 16 | 17 | 18 | all 19 | 20 | 21 | 22 | Description 23 | 24 | This value will be used when there is no frame attribute on the 25 | table. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/draft.watermark.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | draft.watermark.image 9 | uri 10 | 11 | 12 | draft.watermark.image 13 | The URI of the image to be used for draft watermarks 14 | 15 | 16 | 17 | 18 | images/draft.png 19 | 20 | 21 | 22 | Description 23 | 24 | The image to be used for draft watermarks. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/ebnf.table.border.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | ebnf.table.border 9 | boolean 10 | 11 | 12 | ebnf.table.border 13 | Selects border on EBNF tables 14 | 15 | 16 | 17 | 18 | 19 | 20 | Description 21 | 22 | Selects the border on EBNF tables. If non-zero, the tables have 23 | borders, otherwise they don't. 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /xsl-styleshets/params/eclipse.autolabel.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | eclipse.autolabel 9 | boolean 10 | 11 | 12 | eclipse.autolabel 13 | Should tree-like ToC use autonumbering feature? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If you want to include chapter and section numbers into ToC in 25 | the left panel, set this parameter to 1. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/eclipse.plugin.id.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | eclipse.plugin.id 9 | string 10 | 11 | 12 | eclipse.plugin.id 13 | Eclipse Help plugin id 14 | 15 | 16 | 17 | 18 | com.example.help 19 | 20 | 21 | 22 | Description 23 | 24 | Eclipse Help plugin id. You should change this id to something 25 | unique for each help. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/eclipse.plugin.name.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | eclipse.plugin.name 9 | string 10 | 11 | 12 | eclipse.plugin.name 13 | Eclipse Help plugin name 14 | 15 | 16 | 17 | 18 | DocBook Online Help Sample 19 | 20 | 21 | 22 | Description 23 | 24 | Eclipse Help plugin name. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/eclipse.plugin.provider.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | eclipse.plugin.provider 9 | string 10 | 11 | 12 | eclipse.plugin.provider 13 | Eclipse Help plugin provider name 14 | 15 | 16 | 17 | 18 | Example provider 19 | 20 | 21 | 22 | Description 23 | 24 | Eclipse Help plugin provider name. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/epub.autolabel.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | epub.autolabel 9 | boolean 10 | 11 | 12 | epub.autolabel 13 | Should tree-like ToC use autonumbering feature? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If you want to include chapter and section numbers into ToC in, 25 | set this parameter to 1. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/equation.properties.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | equation.properties 9 | attribute set 10 | 11 | 12 | equation.properties 13 | Properties associated with a equation 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | The styling for equations. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/figure.properties.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | figure.properties 9 | attribute set 10 | 11 | 12 | figure.properties 13 | Properties associated with a figure 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | The styling for figures. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/foil.footer.properties.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | foil.footer.properties 9 | attribute set 10 | 11 | 12 | foil.footer.properties 13 | Specifies properties for slides footer 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies properties for the foil footer. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/foilgroup.toc.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | foilgroup.toc 9 | boolean 10 | 11 | 12 | foilgroup.toc 13 | Put ToC on foilgroup pages? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, a ToC will be placed on foilgroup pages (after any 25 | other content). 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/footer.hr.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | footer.hr 9 | boolean 10 | 11 | 12 | footer.hr 13 | Toggle <HR> before footer 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | If non-zero, an <HR> is generated at the bottom of each web page, 24 | before the footer. 25 | 26 | 27 | -------------------------------------------------------------------------------- /xsl-styleshets/params/footer.rule.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | footer.rule 9 | boolean 10 | 11 | 12 | footer.rule 13 | Rule over footers? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, a rule will be drawn above the page footers. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/footers.on.blank.pages.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | footers.on.blank.pages 9 | boolean 10 | 11 | 12 | footers.on.blank.pages 13 | Put footers on blank pages? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, footers will be placed on blank pages. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/footnote.font.size.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | footnote.font.size 9 | length 10 | 11 | 12 | footnote.font.size 13 | The font size for footnotes 14 | 15 | 16 | 17 | 18 | pt 19 | 20 | 21 | 22 | Description 23 | 24 | The footnote font size is used for...footnotes! 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/formal.procedures.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | formal.procedures 9 | boolean 10 | 11 | 12 | formal.procedures 13 | Selects formal or informal procedures 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Formal procedures are numbered and always have a title. 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/function.parens.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | function.parens 9 | boolean 10 | 11 | 12 | function.parens 13 | Generate parens after a function? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, the formatting of a function element 25 | will include generated parentheses. 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/generate.copyright.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | generate.copyright 9 | boolean 10 | 11 | 12 | generate.copyright 13 | Specifies whether copyright is generated 14 | 15 | 16 | 17 | 18 | 1 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies whether the copyright info is generated 25 | in the footer area. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/generate.handoutnotes.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | generate.handoutnotes 9 | boolean 10 | 11 | 12 | generate.handoutnotes 13 | Specifies whether handoutnotes are generated 14 | 15 | 16 | 17 | 18 | 0 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies whether handoutnotes shall 25 | be generated to the output. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/generate.index.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | generate.index 9 | boolean 10 | 11 | 12 | generate.index 13 | Do you want an index? 14 | 15 | 16 | 17 | 18 | 19 | 20 | Description 21 | 22 | Specify if an index should be generated. 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /xsl-styleshets/params/generate.pubdate.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | generate.pubdate 9 | boolean 10 | 11 | 12 | generate.pubdate 13 | Specifies whether the pubdate is generated 14 | 15 | 16 | 17 | 18 | 1 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies whether the publication date is generated 25 | in the footer area. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/generate.speakernotes.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | generate.speakernotes 9 | boolean 10 | 11 | 12 | generate.speakernotes 13 | Specifies whether speakernotes are generated 14 | 15 | 16 | 17 | 18 | 0 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies whether speakernotes shall 25 | be generated to the output. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/generate.titlepage.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | generate.titlepage 9 | boolean 10 | 11 | 12 | generate.titlepage 13 | Specifies whether titlepage is generated 14 | 15 | 16 | 17 | 18 | 1 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies whether titlepage is generated 25 | for the presentation. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/glosslist.as.blocks.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | glosslist.as.blocks 9 | boolean 10 | 11 | 12 | glosslist.as.blocks 13 | Use blocks for glosslists? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | See glossary.as.blocks. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/glossterm.width.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | glossterm.width 9 | length 10 | 11 | 12 | glossterm.width 13 | Width of glossterm in list presentation mode 14 | 15 | 16 | 17 | 18 | 2in 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies the width reserved for glossary terms when 25 | a list presentation is used. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/handoutnotes.properties.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | handoutnotes.properties 9 | attribute set 10 | 11 | 12 | footnote.properties 13 | Properties applied to handoutnotes 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | Description 24 | 25 | This attribute set is applied to handoutnotes. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/header.hr.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | header.hr 9 | boolean 10 | 11 | 12 | header.hr 13 | Toggle <HR> after header 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | If non-zero, an <HR> is generated at the bottom of each web page, 24 | before the footer. 25 | 26 | 27 | -------------------------------------------------------------------------------- /xsl-styleshets/params/header.rule.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | header.rule 9 | boolean 10 | 11 | 12 | header.rule 13 | Rule under headers? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, a rule will be drawn below the page headers. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/headers.on.blank.pages.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | headers.on.blank.pages 9 | boolean 10 | 11 | 12 | headers.on.blank.pages 13 | Put headers on blank pages? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, headers will be placed on blank pages. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/hidetoc.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | hidetoc.image 9 | filename 10 | 11 | 12 | hidetoc.image 13 | Hide ToC image 14 | 15 | 16 | 17 | 18 | hidetoc.gif 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the hide ToC image. This is used 25 | when the ToC hide/show parameter is 26 | enabled. 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/highlight.default.language.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | highlight.default.language 9 | string 10 | 11 | 12 | highlight.default.language 13 | Default language of programlisting 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | This language is used when there is no language attribute on programlisting. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/home.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | home.image 9 | filename 10 | 11 | 12 | home.image 13 | Home image 14 | 15 | 16 | 17 | 18 | active/nav-home.png 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the home navigation icon. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/html.ext.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | html.ext 9 | string 10 | 11 | 12 | html.ext 13 | Identifies the extension of generated HTML files 14 | 15 | 16 | 17 | 18 | .html 19 | 20 | 21 | 22 | Description 23 | 24 | The extension identified by html.ext will 25 | be used as the filename extension for chunks created by this 26 | stylesheet. 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/html.stylesheet.type.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | html.stylesheet.type 9 | string 10 | 11 | 12 | html.stylesheet.type 13 | The type of the stylesheet used in the generated HTML 14 | 15 | 16 | 17 | text/css 18 | 19 | 20 | Description 21 | 22 | The type of the stylesheet to place in the HTML link tag. 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.alias.file.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.alias.file 9 | string 10 | 11 | 12 | htmlhelp.alias.file 13 | Filename of alias file. 14 | 15 | 16 | 17 | 18 | alias.h 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the alias file (used for context-sensitive help). 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.autolabel.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.autolabel 9 | boolean 10 | 11 | 12 | htmlhelp.autolabel 13 | Should tree-like ToC use autonumbering feature? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set this to non-zero to include chapter and section numbers into ToC 25 | in the left panel. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.back.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.back 9 | boolean 10 | 11 | 12 | htmlhelp.button.back 13 | Should the Back button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set to non-zero to include the Hide/Show button shown on toolbar 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.forward.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.forward 9 | boolean 10 | 11 | 12 | htmlhelp.button.forward 13 | Should the Forward button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set to non-zero to include the Forward button on the toolbar. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.hideshow.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.hideshow 9 | boolean 10 | 11 | 12 | htmlhelp.button.hideshow 13 | Should the Hide/Show button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set to non-zero to include the Hide/Show button shown on toolbar 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.home.url.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.home.url 9 | string 10 | 11 | 12 | htmlhelp.button.home.url 13 | URL address of page accessible by Home button 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | URL address of page accessible by Home button. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.home.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.home 9 | boolean 10 | 11 | 12 | htmlhelp.button.home 13 | Should the Home button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set to non-zero to include the Home button on the toolbar. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.jump1.title.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.jump1.title 9 | string 10 | 11 | 12 | htmlhelp.button.jump1.title 13 | Title of Jump1 button 14 | 15 | 16 | 17 | 18 | User1 19 | 20 | 21 | 22 | Description 23 | 24 | Title of Jump1 button. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.jump1.url.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.jump1.url 9 | string 10 | 11 | 12 | htmlhelp.button.jump1.url 13 | URL address of page accessible by Jump1 button 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | URL address of page accessible by Jump1 button. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.jump1.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.jump1 9 | boolean 10 | 11 | 12 | htmlhelp.button.jump1 13 | Should the Jump1 button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | Description 21 | Set to non-zero to include the Jump1 button on the toolbar. 22 | 23 | 24 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.jump2.title.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.jump2.title 9 | string 10 | 11 | 12 | htmlhelp.button.jump2.title 13 | Title of Jump2 button 14 | 15 | 16 | 17 | 18 | User2 19 | 20 | 21 | 22 | Description 23 | 24 | Title of Jump2 button. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.jump2.url.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.jump2.url 9 | string 10 | 11 | 12 | htmlhelp.button.jump2.url 13 | URL address of page accessible by Jump2 button 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | URL address of page accessible by Jump2 button. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.jump2.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.jump2 9 | boolean 10 | 11 | 12 | htmlhelp.button.jump2 13 | Should the Jump2 button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set to non-zero to include the Jump2 button on the toolbar. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.locate.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.locate 9 | boolean 10 | 11 | 12 | htmlhelp.button.locate 13 | Should the Locate button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If you want Locate button shown on toolbar, turn this 25 | parameter to 1. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.next.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.next 9 | boolean 10 | 11 | 12 | htmlhelp.button.next 13 | Should the Next button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set to non-zero to include the Next button on the toolbar. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.options.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.options 9 | boolean 10 | 11 | 12 | htmlhelp.button.options 13 | Should the Options button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If you want Options button shown on toolbar, turn this 25 | parameter to 1. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.prev.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.prev 9 | boolean 10 | 11 | 12 | htmlhelp.button.prev 13 | Should the Prev button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set to non-zero to include the Prev button on the toolbar. 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.print.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.print 9 | boolean 10 | 11 | 12 | htmlhelp.button.print 13 | Should the Print button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set to non-zero to include the Print button on the toolbar. 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.refresh.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.refresh 9 | boolean 10 | 11 | 12 | htmlhelp.button.refresh 13 | Should the Refresh button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set to non-zero to include the Stop button on the toolbar. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.stop.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.stop 9 | boolean 10 | 11 | 12 | htmlhelp.button.stop 13 | Should the Stop button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If you want Stop button shown on toolbar, turn this 25 | parameter to 1. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.button.zoom.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.button.zoom 9 | boolean 10 | 11 | 12 | htmlhelp.button.zoom 13 | Should the Zoom button be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set to non-zero to include the Zoom button on the toolbar. 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.chm.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.chm 9 | string 10 | 11 | 12 | htmlhelp.chm 13 | Filename of output HTML Help file. 14 | 15 | 16 | 17 | 18 | htmlhelp.chm 19 | 20 | 21 | 22 | Description 23 | 24 | Set the name of resulting CHM file 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.display.progress.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.display.progress 9 | boolean 10 | 11 | 12 | htmlhelp.display.progress 13 | Display compile progress? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set to non-zero to to display compile progress 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.hhc.section.depth.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.hhc.section.depth 9 | integer 10 | 11 | 12 | htmlhelp.hhc.section.depth 13 | Depth of TOC for sections in a left pane. 14 | 15 | 16 | 17 | 18 | 5 19 | 20 | 21 | 22 | Description 23 | 24 | Set the section depth in the left pane of HTML Help viewer. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.hhc.width.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.hhc.width 9 | integer 10 | 11 | 12 | htmlhelp.hhc.width 13 | Width of navigation pane 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies the width of the navigation pane (containing TOC and 25 | other navigation tabs) in pixels. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.hhc.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.hhc 9 | string 10 | 11 | 12 | htmlhelp.hhc 13 | Filename of TOC file. 14 | 15 | 16 | 17 | 18 | toc.hhc 19 | 20 | 21 | 22 | Description 23 | 24 | Set the name of the TOC file. The default is toc.hhc. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.hhk.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.hhk 9 | string 10 | 11 | 12 | htmlhelp.hhk 13 | Filename of index file. 14 | 15 | 16 | 17 | 18 | index.hhk 19 | 20 | 21 | 22 | Description 23 | 24 | set the name of the index file. The default is index.hhk. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.hhp.tail.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.hhp.tail 9 | string 10 | 11 | 12 | htmlhelp.hhp.tail 13 | Additional content for project file. 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If you want to include some additional parameters into project file, 25 | store appropriate part of project file into this parameter. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.hhp.window.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.hhp.window 9 | string 10 | 11 | 12 | htmlhelp.hhp.window 13 | Name of default window. 14 | 15 | 16 | 17 | 18 | Main 19 | 20 | 21 | 22 | Description 23 | 24 | Name of default window. If empty no [WINDOWS] section will be 25 | added to project file. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.hhp.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.hhp 9 | string 10 | 11 | 12 | htmlhelp.hhp 13 | Filename of project file. 14 | 15 | 16 | 17 | 18 | htmlhelp.hhp 19 | 20 | 21 | 22 | Description 23 | 24 | Change this parameter if you want different name of project 25 | file than htmlhelp.hhp. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.map.file.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.map.file 9 | string 10 | 11 | 12 | htmlhelp.map.file 13 | Filename of map file. 14 | 15 | 16 | 17 | context.h 18 | 19 | 20 | Description 21 | Set the name of map file. The default is 22 | context.h. (used for context-sensitive 23 | help). 24 | 25 | 26 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.show.favorities.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.show.favorities 9 | boolean 10 | 11 | 12 | htmlhelp.show.favorities 13 | Should the Favorites tab be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set to non-zero to include a Favorites tab in the navigation pane 25 | of the help window. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.show.menu.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.show.menu 9 | boolean 10 | 11 | 12 | htmlhelp.show.menu 13 | Should the menu bar be shown? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Set to non-zero to have an application menu bar in your HTML Help window. 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/htmlhelp.title.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | htmlhelp.title 9 | string 10 | 11 | 12 | htmlhelp.title 13 | Title of HTML Help 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Content of this parameter will be used as a title for generated 25 | HTML Help. If empty, title will be automatically taken from document. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/id.warnings.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | id.warnings 9 | boolean 10 | 11 | 12 | id.warnings 13 | Should warnings be generated for titled elements without IDs? 14 | 15 | 16 | 17 | 18 | 19 | 20 | Description 21 | If non-zero, the stylesheet will issue a warning for any element 22 | (other than the root element) which has a title but does not have an 23 | ID. 24 | 25 | 26 | -------------------------------------------------------------------------------- /xsl-styleshets/params/keyboard.nav.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | keyboard.nav 9 | boolean 10 | 11 | 12 | keyboard.nav 13 | Enable keyboard navigation? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, JavaScript is added to the slides to enable keyboard 25 | navigation. Pressing 'n', space, or return moves forward; pressing 'p' moves 26 | backward. 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/line-height.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | line-height 9 | string 10 | 11 | 12 | line-height 13 | Specify the line-height property 14 | 15 | 16 | 17 | 18 | normal 19 | 20 | 21 | 22 | Description 23 | 24 | Sets the line-height property. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/manual.toc.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | manual.toc 9 | string 10 | 11 | 12 | manual.toc 13 | An explicit TOC to be used for the TOC 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | The manual.toc identifies an explicit TOC that 25 | will be used for building the printed TOC. 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/nav.separator.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | nav.separator 9 | boolean 10 | 11 | 12 | nav.separator 13 | Output separator between navigation and body? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, a separator (<HR>) is 25 | added between the navigation links and the content of each slide. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/navbgcolor.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | navbgcolor 9 | color 10 | 11 | 12 | navbgcolor 13 | The background color of the navigation TOC 14 | 15 | 16 | 17 | 18 | #4080FF 19 | 20 | 21 | 22 | Description 23 | The background color of the navigation TOC. 24 | Only applies with the tabular presentation is being used. 25 | 26 | 27 | -------------------------------------------------------------------------------- /xsl-styleshets/params/navbodywidth.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | navbodywidth 9 | length 10 | 11 | 12 | navbodywidth 13 | Specifies the width of the navigation table body 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | The width of the body column. 24 | Only applies with the tabular presentation is being used. 25 | 26 | 27 | -------------------------------------------------------------------------------- /xsl-styleshets/params/navtocwidth.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | navtocwidth 9 | length 10 | 11 | 12 | navtocwidth 13 | Specifies the width of the navigation table TOC 14 | 15 | 16 | 17 | 18 | 220 19 | 20 | 21 | 22 | Description 23 | The width, in pixels, of the navigation column. 24 | Only applies with the tabular presentation is being used. 25 | 26 | 27 | -------------------------------------------------------------------------------- /xsl-styleshets/params/next.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | next.image 9 | filename 10 | 11 | 12 | next.image 13 | Right-arrow image 14 | 15 | 16 | 17 | 18 | active/nav-next.png 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the right-pointing navigation arrow. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/no.home.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | no.home.image 9 | filename 10 | 11 | 12 | no.home.image 13 | Inactive home image 14 | 15 | 16 | 17 | 18 | inactive/nav-home.png 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the inactive home navigation icon. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/no.next.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | no.next.image 9 | filename 10 | 11 | 12 | no.next.image 13 | Inactive right-arrow image 14 | 15 | 16 | 17 | 18 | inactive/nav-next.png 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the inactive right-pointing navigation arrow. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/no.prev.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | no.prev.image 9 | filename 10 | 11 | 12 | no.prev.image 13 | Inactive left-arrow image 14 | 15 | 16 | 17 | 18 | inactive/nav-prev.png 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the inactive left-pointing navigation arrow. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/no.toc.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | no.toc.image 9 | filename 10 | 11 | 12 | no.toc.image 13 | Inactive ToC image 14 | 15 | 16 | 17 | 18 | inactive/nav-toc.png 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the inactive ToC navigation icon. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/no.up.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | no.up.image 9 | filename 10 | 11 | 12 | no.up.image 13 | Inactive up-arrow image 14 | 15 | 16 | 17 | 18 | inactive/nav-up.png 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the inactive upward-pointing navigation arrow. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/nominal.image.depth.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | nominal.image.depth 9 | length 10 | 11 | 12 | nominal.image.depth 13 | Nominal image depth 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | See nominal.image.width. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/olink.fragid.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | olink.fragid 9 | string 10 | 11 | 12 | olink.fragid 13 | Names the fragment identifier portion of an OLink resolver query 14 | 15 | 16 | 17 | fragid= 18 | 19 | 20 | Description 21 | The fragment identifier portion of an olink target. 22 | 23 | 24 | -------------------------------------------------------------------------------- /xsl-styleshets/params/olink.outline.ext.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | olink.outline.ext 9 | string 10 | 11 | 12 | olink.outline.ext 13 | The extension of OLink outline files 14 | 15 | 16 | 17 | 18 | .olink 19 | 20 | 21 | 22 | Description 23 | 24 | The extension to be expected for OLink outline files 25 | Bob has this parameter as dead. Please don't use 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/olink.pubid.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | olink.pubid 9 | string 10 | 11 | 12 | olink.pubid 13 | Names the public identifier portion of an OLink resolver query 14 | 15 | 16 | 17 | 18 | pubid 19 | 20 | 21 | 22 | Description 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/olink.resolver.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | olink.resolver 9 | string 10 | 11 | 12 | olink.resolver 13 | The root name of the OLink resolver (usually a script) 14 | 15 | 16 | 17 | /cgi-bin/olink 18 | 19 | 20 | Description 21 | FIXME: 22 | 23 | 24 | -------------------------------------------------------------------------------- /xsl-styleshets/params/olink.sysid.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | olink.sysid 9 | string 10 | 11 | 12 | olink.sysid 13 | Names the system identifier portion of an OLink resolver query 14 | 15 | 16 | 17 | 18 | sysid 19 | 20 | 21 | 22 | Description 23 | 24 | FIXME 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/overlay.js.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | overlay.js 9 | filename 10 | 11 | 12 | overlay.js 13 | Overlay JavaScript file 14 | 15 | 16 | 17 | 18 | overlay.js 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the overlay JavaScript file. It's unlikely 25 | that you will ever need to change this parameter. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/overlay.logo.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | overlay.logo 9 | uri 10 | 11 | 12 | overlay.logo 13 | Logo to overlay on ToC frame 14 | 15 | 16 | 17 | 18 | http://docbook.sourceforge.net/release/buttons/slides-1.png 19 | 20 | 21 | 22 | Description 23 | 24 | If this URI is non-empty, JavaScript is used to overlay the 25 | specified image on the ToC frame. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/page.margin.bottom.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | page.margin.bottom 9 | length 10 | 11 | 12 | page.margin.bottom 13 | The bottom margin of the page 14 | 15 | 16 | 17 | 18 | 0.5in 19 | 20 | 21 | 22 | Description 23 | 24 | The bottom page margin is the distance from the bottom of the region-after 25 | to the physical bottom of the page. 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/page.margin.top.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | page.margin.top 9 | length 10 | 11 | 12 | page.margin.top 13 | The top margin of the page 14 | 15 | 16 | 17 | 18 | 0.5in 19 | 20 | 21 | 22 | Description 23 | 24 | The top page margin is the distance from the physical top of the 25 | page to the top of the region-before. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/plus.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | plus.image 9 | filename 10 | 11 | 12 | plus.image 13 | Plus image 14 | 15 | 16 | 17 | 18 | toc/closed.png 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the plus image; the image used in a 25 | dynamic ToC to indicate that a section 26 | can be expanded. 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/prev.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | prev.image 9 | filename 10 | 11 | 12 | prev.image 13 | Left-arrow image 14 | 15 | 16 | 17 | 18 | active/nav-prev.png 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the left-pointing navigation arrow. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/profile.separator.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | profile.separator 9 | string 10 | 11 | 12 | profile.separator 13 | Separator character for compound profile values 14 | 15 | 16 | 17 | 18 | ; 19 | 20 | 21 | 22 | Description 23 | 24 | Separator character used for compound profile values. See profile.arch 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/punct.honorific.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | punct.honorific 9 | string 10 | 11 | 12 | punct.honorific 13 | Punctuation after an honorific in a personal name. 14 | 15 | 16 | 17 | 18 | . 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies the punctuation that should be added after an 25 | honorific in a personal name. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/qandadiv.autolabel.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | qandadiv.autolabel 9 | boolean 10 | 11 | 12 | qandadiv.autolabel 13 | Are divisions in QAndASets enumerated? 14 | 15 | 16 | 17 | 18 | 19 | 20 | Description 21 | 22 | If non-zero, unlabeled qandadivs will be enumerated. 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /xsl-styleshets/params/refentry.separator.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | refentry.separator 9 | boolean 10 | 11 | 12 | refentry.separator 13 | Generate a separator between consecutive RefEntry elements? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If true, a separator will be generated between consecutive 25 | reference pages. 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/region.after.extent.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | region.after.extent 9 | length 10 | 11 | 12 | region.after.extent 13 | Specifies the height of the footer. 14 | 15 | 16 | 17 | 18 | 0.4in 19 | 20 | 21 | 22 | Description 23 | 24 | The region after extent is the height of the area where footers 25 | are printed. 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/region.before.extent.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | region.before.extent 9 | length 10 | 11 | 12 | region.before.extent 13 | Specifies the height of the header 14 | 15 | 16 | 17 | 18 | 0.4in 19 | 20 | 21 | 22 | Description 23 | 24 | The region before extent is the height of the area where headers 25 | are printed. 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/s5.controls.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | s5.controls 9 | boolean 10 | 11 | 12 | s5.controls 13 | Specifies whether S5 controls are visible 14 | 15 | 16 | 17 | 18 | 0 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies whether S5 navigation controls are 25 | visible by default. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/s5.opera.css.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | s5.opera.css 9 | filename 10 | 11 | 12 | s5.opera.css 13 | Specifies the name of the S5 Opera-specific CSS file 14 | 15 | 16 | 17 | 18 | opera.css 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies the name of the S5 Opera-specific 25 | CSS file. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/s5.outline.css.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | s5.outline.css 9 | filename 10 | 11 | 12 | s5.outline.css 13 | Specifies the name of the S5 outline CSS file 14 | 15 | 16 | 17 | 18 | outline.css 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies the name of the S5 outline CSS file. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/s5.print.css.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | s5.print.css 9 | filename 10 | 11 | 12 | s5.print.css 13 | Specifies the name of the S5 print CSS file 14 | 15 | 16 | 17 | 18 | print.css 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies the name of the S5 print CSS file. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/s5.slides.css.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | s5.slides.css 9 | filename 10 | 11 | 12 | s5.slides.css 13 | Specifies the name of the S5 slides CSS file 14 | 15 | 16 | 17 | 18 | slides.css 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies the name of the S5 slides CSS file. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/s5.slides.js.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | s5.slides.js 9 | filename 10 | 11 | 12 | s5.slides.js 13 | Specifies the name of the S5 slides JavaScript file 14 | 15 | 16 | 17 | 18 | slides.js 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies the name of the S5 slides JavaScript 25 | file. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/sans.font.family.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | sans.font.family 9 | string 10 | 11 | 12 | sans.font.family 13 | The default sans-serif font family 14 | 15 | 16 | 17 | 18 | sans-serif 19 | 20 | 21 | 22 | Description 23 | 24 | The default sans-serif font family. At the present, this isn't 25 | actually used by the stylesheets. 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/saxon.callouts.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | saxon.callouts 9 | boolean 10 | 11 | 12 | saxon.callouts 13 | Enable the callout extension 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | The callouts extension processes areaset 25 | elements in ProgramListingCO and other text-based 26 | callout elements. 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /xsl-styleshets/params/section.autolabel.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | section.autolabel 9 | boolean 10 | 11 | 12 | section.autolabel 13 | Are sections enumerated? 14 | 15 | 16 | 17 | 18 | 19 | 20 | Description 21 | 22 | If true (non-zero), unlabeled sections will be enumerated. 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /xsl-styleshets/params/segmentedlist.as.table.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | segmentedlist.as.table 9 | boolean 10 | 11 | 12 | segmentedlist.as.table 13 | Format segmented lists as tables? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, segmentedlists will be formatted as 25 | tables. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/sequential.links.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | sequential.links 9 | boolean 10 | 11 | 12 | sequential.links 13 | Make sequentional links? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | FIXME 24 | 25 | 26 | -------------------------------------------------------------------------------- /xsl-styleshets/params/show.foil.number.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | show.foil.number 9 | boolean 10 | 11 | 12 | show.foil.number 13 | Show foil number on each foil? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, on each slide there will be its number. Currently 25 | not supported in all output formats. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/simplesect.in.toc.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | simplesect.in.toc 9 | boolean 10 | 11 | 12 | simplesect.in.toc 13 | Should simplesect elements appear in the TOC? 14 | 15 | 16 | 17 | 18 | 19 | 20 | Description 21 | 22 | If non-zero, simplesects will be included in the TOC. 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /xsl-styleshets/params/slides.js.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | slides.js 9 | filename 10 | 11 | 12 | slides.js 13 | Slides overlay file 14 | 15 | 16 | 17 | 18 | slides.js 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the slides JavaScript file. It's unlikely 25 | that you will ever need to change this parameter. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/slidy.slidy.css.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | slidy.slidy.css 9 | filename 10 | 11 | 12 | slidy.slidy.css 13 | Specifies the name of the main Slidy CSS file 14 | 15 | 16 | 17 | 18 | styles/slidy.css 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies the name of the main Slidy CSS file. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/slidy.slidy.js.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | slidy.slidy.js 9 | filename 10 | 11 | 12 | slidy.slidy.js 13 | Specifies the name of the Slidy JavaScript file 14 | 15 | 16 | 17 | 18 | scripts/slidy.js 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies the name of the Slidy JavaScript file. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/slidy.user.css.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | slidy.user.css 9 | filename 10 | 11 | 12 | slidy.user.css 13 | Specifies the name of the Slidy user CSS file 14 | 15 | 16 | 17 | 18 | styles/w3c-blue.css 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies the name of the Slidy user CSS file. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/speakernotes.properties.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | speakernotes.properties 9 | attribute set 10 | 11 | 12 | footnote.properties 13 | Properties applied to speakernotes 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | Description 24 | 25 | This attribute set is applied to speakernotes. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/suppress.footer.navigation.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | suppress.footer.navigation 9 | boolean 10 | 11 | 12 | suppress.footer.navigation 13 | Disable footer navigation 14 | 15 | 16 | 17 | 0 18 | 19 | 20 | Description 21 | 22 | 23 | If non-zero, footer navigation will be suppressed. 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /xsl-styleshets/params/suppress.header.navigation.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | suppress.header.navigation 9 | boolean 10 | 11 | 12 | suppress.header.navigation 13 | Disable header navigation 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, header navigation will be suppressed. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/suppress.homepage.title.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | suppress.homepage.title 9 | boolean 10 | 11 | 12 | suppress.homepage.title 13 | Suppress title on homepage? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | FIXME:If non-zero, the title on the homepage is suppressed? 24 | 25 | 26 | -------------------------------------------------------------------------------- /xsl-styleshets/params/suppress.navigation.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | suppress.navigation 9 | boolean 10 | 11 | 12 | suppress.navigation 13 | Disable header and footer navigation 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | 25 | If non-zero, header and footer navigation will be suppressed. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/table.borders.with.css.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | table.borders.with.css 9 | boolean 10 | 11 | 12 | table.borders.with.css 13 | Use CSS to specify table, row, and cell borders? 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | If non-zero, CSS will be used to draw table borders. 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/table.entry.padding.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | table.entry.padding 9 | length 10 | 11 | 12 | table.entry.padding 13 | 14 | 15 | 16 | 17 | 18 | 2pt 19 | 20 | 21 | 22 | Description 23 | 24 | FIXME: 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/template.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | [[NAME]] 9 | 10 | 11 | 12 | [[NAME]] 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | FIXME: 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/text.home.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | text.home 9 | string 10 | 11 | 12 | text.home 13 | Home 14 | 15 | 16 | 17 | 18 | Home 19 | 20 | 21 | 22 | Description 23 | 24 | FIXME: 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/text.next.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | text.next 9 | string 10 | 11 | 12 | text.next 13 | FIXME: 14 | 15 | 16 | 17 | 18 | Next 19 | 20 | 21 | 22 | Description 23 | 24 | FIXME: 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/text.prev.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | text.prev 9 | string 10 | 11 | 12 | text.prev 13 | FIXME: 14 | 15 | 16 | 17 | 18 | Prev 19 | 20 | 21 | 22 | Description 23 | 24 | FIXME: 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/text.toc.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | text.toc 9 | string 10 | 11 | 12 | text.toc 13 | FIXME: 14 | 15 | 16 | 17 | 18 | ToC 19 | 20 | 21 | 22 | Description 23 | 24 | FIXME: 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/text.up.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | text.up 9 | string 10 | 11 | 12 | text.up 13 | FIXME: 14 | 15 | 16 | 17 | 18 | Up 19 | 20 | 21 | 22 | Description 23 | 24 | FIXME: 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/textbgcolor.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | textbgcolor 9 | color 10 | 11 | 12 | textbgcolor 13 | The background color of the table body 14 | 15 | 16 | 17 | 18 | white 19 | 20 | 21 | 22 | Description 23 | The background color of the table body. 24 | Only applies with the tabular presentation is being used. 25 | 26 | 27 | -------------------------------------------------------------------------------- /xsl-styleshets/params/titlefoil.html.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | titlefoil.html 9 | filename 10 | 11 | 12 | titlefoil.html 13 | Name of title foil HTML file 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Sets the filename used for the slides titlepage. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/toc.bg.color.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | toc.bg.color 9 | color 10 | 11 | 12 | toc.bg.color 13 | Background color for ToC frame 14 | 15 | 16 | 17 | 18 | #FFFFFF 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the background color used in the ToC frame. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/toc.html.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | toc.html 9 | filename 10 | 11 | 12 | toc.html 13 | Name of ToC HTML file 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Description 23 | 24 | Sets the filename used for the table of contents page. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/toc.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | toc.image 9 | filename 10 | 11 | 12 | toc.image 13 | ToC image 14 | 15 | 16 | 17 | 18 | active/nav-toc.png 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the ToC navigation icon. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/toc.max.depth.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | toc.max.depth 9 | integer 10 | 11 | 12 | toc.max.depth 13 | How many levels should be created for each TOC? 14 | 15 | 16 | 17 | 8 18 | 19 | 20 | Description 21 | 22 | Specifies the maximal depth of TOC on all levels. 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /xsl-styleshets/params/toc.section.depth.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | toc.section.depth 9 | integer 10 | 11 | 12 | toc.section.depth 13 | How deep should recursive sections appear 14 | in the TOC? 15 | 16 | 17 | 18 | 2 19 | 20 | 21 | Description 22 | 23 | Specifies the depth to which recursive sections should appear in the 24 | TOC. 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/toc.width.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | toc.width 9 | length 10 | 11 | 12 | toc.width 13 | Width of ToC frame 14 | 15 | 16 | 17 | 18 | 250 19 | 20 | 21 | 22 | 23 | Description 24 | 25 | Specifies the width of the ToC frame in pixels. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/ua.js.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | ua.js 9 | filename 10 | 11 | 12 | ua.js 13 | UA JavaScript file 14 | 15 | 16 | 17 | 18 | ua.js 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the UA JavaScript file. It's unlikely 25 | that you will ever need to change this parameter. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/up.image.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | up.image 9 | filename 10 | 11 | 12 | up.image 13 | Up-arrow image 14 | 15 | 16 | 17 | 18 | active/nav-up.png 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the upward-pointing navigation arrow. 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/params/user.css.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | user.css 9 | filename 10 | 11 | 12 | user.css 13 | Specifies the path to user-supplied CSS 14 | 15 | 16 | 17 | 18 | user.css 19 | 20 | 21 | 22 | Description 23 | 24 | This parameter specifies the path from where the 25 | CSS styling is read. This file can be used to 26 | add additional styling to the slides. 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/params/webhelp.autolabel.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | webhelp.autolabel 9 | boolean 10 | 11 | 12 | webhelp.autolabel 13 | Should tree-like ToC use autonumbering feature? 14 | 15 | 16 | 17 | 18 | 0 19 | 20 | 21 | 22 | Description 23 | To include chapter and section numbers the table of contents pane, set this parameter to 1. 24 | 25 | 26 | -------------------------------------------------------------------------------- /xsl-styleshets/params/webhelp.include.search.tab.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | webhelp.include.search.tab 9 | boolean 10 | 11 | 12 | webhelp.include.search.tab 13 | Should the webhelp output include a Search tab? 14 | 15 | 16 | 17 | 18 | 1 19 | 20 | 21 | 22 | Description 23 | Set this parameter to 0 to suppress the search tab from webhelp output. 24 | 25 | 26 | -------------------------------------------------------------------------------- /xsl-styleshets/params/xbDOM.js.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | xbDOM.js 9 | filename 10 | 11 | 12 | xbDOM.js 13 | xbDOM JavaScript file 14 | 15 | 16 | 17 | 18 | xbDOM.js 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the xbDOM JavaScript file. It's unlikely 25 | that you will ever need to change this parameter. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/xbLibrary.js.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | xbLibrary.js 9 | filename 10 | 11 | 12 | xbLibrary.js 13 | xbLibrary JavaScript file 14 | 15 | 16 | 17 | 18 | xbLibrary.js 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the xbLibrary JavaScript file. It's unlikely 25 | that you will ever need to change this parameter. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/xbStyle.js.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | xbStyle.js 9 | filename 10 | 11 | 12 | xbStyle.js 13 | xbStyle JavaScript file 14 | 15 | 16 | 17 | 18 | xbStyle.js 19 | 20 | 21 | 22 | Description 23 | 24 | Specifies the filename of the xbStyle JavaScript file. It's unlikely 25 | that you will ever need to change this parameter. 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /xsl-styleshets/params/xref.properties.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | xref.properties 9 | attribute set 10 | 11 | 12 | xref.properties 13 | Properties associated with cross-reference text 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | Description 24 | 25 | This attribute set is used to set properties 26 | on cross reference text. 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /xsl-styleshets/profiling/strip-attributes.xsl: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/roundtrip/blocks-spec.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /xsl-styleshets/roundtrip/param.xsl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /xsl-styleshets/website/chunk-tabular.xsl: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /xsl-styleshets/website/chunk-website.xsl: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /xsl-styleshets/website/website-targets.xsl: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /xsl-styleshets/xhtml-1_1/autoidx-ng.xsl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 15 | 16 | 17 | 18 | 19 | kosek 20 | 21 | 22 | -------------------------------------------------------------------------------- /xsl-styleshets/xhtml/autoidx-ng.xsl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 15 | 16 | 17 | 18 | 19 | kosek 20 | 21 | 22 | -------------------------------------------------------------------------------- /xsl-styleshets/xhtml5/docbook.xsl: -------------------------------------------------------------------------------- 1 | 2 | 4 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | --------------------------------------------------------------------------------