winsup/doc: Add man.xsl customization stylesheet
2015-06-17 Jon Turney <jon.turney@dronecode.org.uk> * man.xsl: New file. * Makefile.in (utils2man.stamp, api2man.stamp): Use it. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
This commit is contained in:
parent
94f16969d3
commit
e9549aef38
|
@ -1,3 +1,8 @@
|
|||
2015-06-17 Jon Turney <jon.turney@dronecode.org.uk>
|
||||
|
||||
* man.xsl: New file.
|
||||
* Makefile.in (utils2man.stamp, api2man.stamp): Use it.
|
||||
|
||||
2015-06-17 Jon Turney <jon.turney@dronecode.org.uk>
|
||||
|
||||
* Makefile.in (api2man.stamp): Add rules to build and install
|
||||
|
|
|
@ -97,8 +97,8 @@ cygwin-ug-net/cygwin-ug-net.html : $(cygwin-ug-net_SOURCES) html.xsl
|
|||
cygwin-ug-net/cygwin-ug-net.pdf : $(cygwin-ug-net_SOURCES) fo.xsl
|
||||
-$(XMLTO) pdf -o cygwin-ug-net/ -m $(srcdir)/fo.xsl $<
|
||||
|
||||
utils2man.stamp: $(cygwin-ug-net_SOURCES)
|
||||
$(XMLTO) man $<
|
||||
utils2man.stamp: $(cygwin-ug-net_SOURCES) man.xsl
|
||||
$(XMLTO) man -m ${srcdir}/man.xsl $<
|
||||
@touch $@
|
||||
|
||||
cygwin-api/cygwin-api.html : $(cygwin-api_SOURCES) html.xsl
|
||||
|
@ -107,8 +107,8 @@ cygwin-api/cygwin-api.html : $(cygwin-api_SOURCES) html.xsl
|
|||
cygwin-api/cygwin-api.pdf : $(cygwin-api_SOURCES) fo.xsl
|
||||
-$(XMLTO) pdf -o cygwin-api/ -m $(srcdir)/fo.xsl $<
|
||||
|
||||
api2man.stamp: $(cygwin-api_SOURCES)
|
||||
$(XMLTO) man $<
|
||||
api2man.stamp: $(cygwin-api_SOURCES) man.xsl
|
||||
$(XMLTO) man -m ${srcdir}/man.xsl $<
|
||||
@touch $@
|
||||
|
||||
faq/faq.html : $(FAQ_SOURCES)
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
|
||||
|
||||
<!-- don't truncate manpage titles for long function names -->
|
||||
<xsl:param name="man.th.title.max.length" select="33" />
|
||||
|
||||
<!-- don't moan about missing metadata -->
|
||||
<xsl:param name="refentry.meta.get.quietly" select="1" />
|
||||
|
||||
<!-- base URL for relative links -->
|
||||
<xsl:param name="man.base.url.for.relative.links">https://cygwin.com/cygwin-ug-net/</xsl:param>
|
||||
|
||||
</xsl:stylesheet>
|
Loading…
Reference in New Issue