Skip to content
Snippets Groups Projects
Commit c9db3f0a authored by Dean Camera's avatar Dean Camera
Browse files

Fix AS7 integration, include modified Docbook HV1 transforms.

parent f2af5324
Branches
Tags
No related merge requests found
......@@ -12,3 +12,4 @@
Documentation/
LUFA/StudioIntegration/ProjectGenerator/*
LUFA/StudioIntegration/DocBook/*
!LUFA/StudioIntegration/Docbook/mshelp/*
......@@ -12,6 +12,7 @@
* - Added new PROGMEM variant send functions to the CDC class device driver (thanks to Stefan Hellermann)
* - Added new PROGMEM variant send functions to the CDC class host driver
* - Added additional Arduino Uno board definitions for the main processor reset (thanks to NicoHood)
* - Added modified DocBook transforms to generate Atmel Studio 6/7 internal help documentation (thanks to Morten Engelhardt Olsen)
*
* <b>Changed:</b>
* - Core:
......
This is a modified/updated version of the Microsoft HV1 Docbook transform, written by Morten Engelhardt Olsen,
Originally posted at http://sourceforge.net/p/docbook/feature-requests/461/, this has been further updated by Morten to make it compatible with more recent DocBook versions.
---------------------------
/ This documentation system \
\ is udderly ridiculous! /
---------------------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:d="http://docbook.org/ns/docbook"
xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="xsl d"
version="1.0">
<xsl:import href="../xhtml/chunk.xsl"/>
<xsl:import href="../xhtml/highlight.xsl"/>
<!--
Based on the normal xhtml templates, all overrides applicable to
xhtml is applicable to HV1.
-->
<xsl:import href="hv1-common.xsl"/>
<!--
Choose if links should be generated using ms-xhelp (default) or
the more verbose ms.help type. The latter requires product.name,
product.version and product.locale to be set
-->
<xsl:param name="use.mshelp.links" select="0"/>
<!--
Name of target product. If specified then each page is
marked with this product. This is usualy set during
install time.
-->
<xsl:param name="product.name" select="''" />
<!--
Name of target version. If specified then each page is
marked with this version. This is usualy set during
install time.
-->
<xsl:param name="product.version" select="''" />
<!--
Locale for the help. Should always be set
-->
<xsl:param name="product.locale" select="'en-US'" />
<!--
Self branding. Gives access for chunks to load
it's own branding package during runtime
-->
<xsl:param name="topic.selfbrand" select="1"/>
<!-- Use doctitle for olinks -->
<xsl:param name="olink.doctitle" select="'yes'" />
<!-- Enable source code highlighting-->
<xsl:param name="highlight.source" select="1"/>
</xsl:stylesheet>
This diff is collapsed.
Copy the Microsoft HV1 Docbook transform contents into this directory (i.e. with the XSLT files in the current folder). The HV1 transform proposal can be found at http://sourceforge.net/p/docbook/feature-requests/461/ .
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment