Welcome to mirror list, hosted at ThFree Co, Russian Federation.

header.tpl « templates « phphtmllib « DOM « templates « frames « HTML « Converters « phpDocumentor « PhpDocumentor-1.3.2 « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d6261906454f69204c48089b46faf74729417f6 (plain)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml">
		<head>
			<!-- template designed by Marco Von Ballmoos  -->
			<title>{$title}</title>
			<link rel="stylesheet" href="{$subdir}media/stylesheet.css" />
			{if $top2 || $top3}
			<script src="{$subdir}media/lib/classTree.js"></script>
			{/if}
			{if $top2}
			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
			{/if}
			{if $top3 || $top2}
			<script language="javascript" type="text/javascript">
				var imgPlus = new Image();
				var imgMinus = new Image();
				imgPlus.src = "{$subdir}media/images/plus.png";
				imgMinus.src = "{$subdir}media/images/minus.png";
				
				function showNode(Node){ldelim}
							switch(navigator.family){ldelim}
								case 'nn4':
									// Nav 4.x code fork...
							var oTable = document.layers["span" + Node];
							var oImg = document.layers["img" + Node];
									break;
								case 'ie4':
									// IE 4/5 code fork...
							var oTable = document.all["span" + Node];
							var oImg = document.all["img" + Node];
									break;
								case 'gecko':
									// Standards Compliant code fork...
							var oTable = document.getElementById("span" + Node);
							var oImg = document.getElementById("img" + Node);
									break;
							{rdelim}
					oImg.src = imgMinus.src;
					oTable.style.display = "block";
				{rdelim}
				
				function hideNode(Node){ldelim}
							switch(navigator.family){ldelim}
								case 'nn4':
									// Nav 4.x code fork...
							var oTable = document.layers["span" + Node];
							var oImg = document.layers["img" + Node];
									break;
								case 'ie4':
									// IE 4/5 code fork...
							var oTable = document.all["span" + Node];
							var oImg = document.all["img" + Node];
									break;
								case 'gecko':
									// Standards Compliant code fork...
							var oTable = document.getElementById("span" + Node);
							var oImg = document.getElementById("img" + Node);
									break;
							{rdelim}
					oImg.src = imgPlus.src;
					oTable.style.display = "none";
				{rdelim}
				
				function nodeIsVisible(Node){ldelim}
							switch(navigator.family){ldelim}
								case 'nn4':
									// Nav 4.x code fork...
							var oTable = document.layers["span" + Node];
									break;
								case 'ie4':
									// IE 4/5 code fork...
							var oTable = document.all["span" + Node];
									break;
								case 'gecko':
									// Standards Compliant code fork...
							var oTable = document.getElementById("span" + Node);
									break;
							{rdelim}
					return (oTable && oTable.style.display == "block");
				{rdelim}
				
				function toggleNodeVisibility(Node){ldelim}
					if (nodeIsVisible(Node)){ldelim}
						hideNode(Node);
					{rdelim}else{ldelim}
						showNode(Node);
					{rdelim}
				{rdelim}
			</script>
			{/if}
		</head>
		<body>
			{if $top3}<div class="page-body">{/if}