File: html.xsl.in

package info (click to toggle)
zendframework 1.12.9%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 133,584 kB
  • sloc: xml: 1,311,829; php: 570,173; sh: 170; makefile: 125; sql: 121
file content (59 lines) | stat: -rw-r--r-- 2,321 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE entities
[    
    <!-- Add translated specific definitions and snippets -->
    <!ENTITY % language-snippets SYSTEM "./ref/language-snippets.xml">
    %language-snippets;

    <!-- Fallback to English definitions and snippets (in case of missing translation) -->
    <!ENTITY % language-snippets.default SYSTEM "../en/ref/language-snippets.xml">
    %language-snippets.default;
]>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
                xmlns:fo="http://www.w3.org/1999/XSL/Format"   
				version="1.0">

<xsl:import href="@DOCBOOK_XSL@"/>
	<xsl:param name="use.extensions">0</xsl:param>
	<xsl:param name="use.id.as.filename">1</xsl:param>
	<xsl:param name="base.dir">./</xsl:param>
	<xsl:param name="chunk.fast">1</xsl:param>
	<xsl:param name="make.valid.html">1</xsl:param>
	<xsl:param name="section.autolabel">1</xsl:param>
	<xsl:param name="generate.index">1</xsl:param>
	<xsl:param name="section.label.includes.component.label">1</xsl:param>
	<xsl:param name="chunker.output.indent">yes</xsl:param>
	<xsl:param name="chunker.output.encoding">UTF-8</xsl:param>
	<xsl:param name="chunk.first.sections">0</xsl:param>
	<xsl:param name="chunk.tocs.and.lots">0</xsl:param>
	<xsl:param name="html.extra.head.links">1</xsl:param>
	<xsl:param name="generate.manifest">1</xsl:param>
	<xsl:param name="admon.graphics">1</xsl:param>
	<xsl:param name="admon.style"></xsl:param>
	<xsl:param name="html.stylesheet">dbstyle.css</xsl:param>
	<xsl:param name="header.rule">0</xsl:param>
	<xsl:param name="footer.rule">0</xsl:param>
          <xsl:param name="htmlhelp.chm" select="'Zend_Framework_&lang;.chm'"/>
          <xsl:param name="htmlhelp.hhc.binary" select="0"/>
          <xsl:param name="htmlhelp.hhc.folders.instead.books" select="0"/>
          <xsl:param name="toc.section.depth" select="4"/>

<xsl:template name="user.header.navigation">
  <!-- stuff put here appears before the top navigation area -->
</xsl:template>

<xsl:template name="user.footer.navigation">
  <!-- stuff put here appears after the bottom navigation area -->
  <xsl:element name="div">
    <xsl:attribute name="class">revinfo</xsl:attribute>
    <xsl:value-of select="//pubdate[1]"/>
  </xsl:element>
</xsl:template>


</xsl:stylesheet>
<!--
vim:se ts=2 sw=2 et:
-->