-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComputationForTippedEmplSch.xsl
71 lines (61 loc) · 2.84 KB
/
ComputationForTippedEmplSch.xsl
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
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" indent="yes" />
<xsl:strip-space elements="*" />
<xsl:include href="PopulateTemplate.xsl"/>
<xsl:include href="AddHeader.xsl"/>
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:param name="AOVSSData" select="$RtnDoc/ComputationForTippedEmplSch" />
<xsl:template name="ShowAOVSS">
</xsl:template>
<xsl:param name="depDocTitle">
<xsl:call-template name="PopulateDisplayName"><xsl:with-param name="TargetNode" select="$AOVSSData" /></xsl:call-template>
</xsl:param>
<!-- Main template -->
<xsl:template match="/">
<html>
<head>
<title><xsl:value-of select="$depDocTitle" /></title>
<!-- No Browser Caching -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- No Proxy Caching -->
<meta http-equiv="Cache-Control" content="private" />
<!-- Define Character Set -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="Author" content="Chris Sinderson" />
<meta name="Description" content= "{$depDocTitle}" />
<script language="JavaScript" src="{$ScriptPath}/FormDisplay.js" type="text/javascript"></script>
<xsl:call-template name="InitJS"></xsl:call-template>
<style type="text/css">
<xsl:if test="not($Print) or $Print=''">
<xsl:call-template name="AddOnStyle"></xsl:call-template>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesDep"/>
</head>
<body class="styBodyClass" >
<xsl:call-template name="DocumentHeaderDependency"></xsl:call-template>
<div class="styDepTitleLine">
<span class="styDepTitle" style="width:76mm">
<xsl:value-of select="$depDocTitle" />
</span>
</div>
<!--Adding template for left over data -->
<xsl:call-template name="PopulateDepCommonLeftover"><xsl:with-param name="TargetNode" select="$AOVSSData" /></xsl:call-template>
<div class="styTopSectionLine">
<div style="float:left;clear:none;"><span class="styTopSectionLineLbl">Explanation:</span></div>
<div class="styExplanationLine">
<xsl:call-template name="PopulateText">
<xsl:with-param name="TargetNode" select="$AOVSSData/Explanation"/>
</xsl:call-template>
</div>
</div>
<xsl:call-template name="ShowAOVSS" />
<br/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>