forked from Kitware/CDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewMap.xsl
128 lines (117 loc) · 4.17 KB
/
viewMap.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
<xsl:include href="footer.xsl"/>
<xsl:include href="headerback.xsl"/>
<!-- Local includes -->
<xsl:include href="local/footer.xsl"/>
<xsl:include href="local/headerback.xsl"/>
<!-- HEADER -->
<xsl:output method="xml" indent="yes" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />
<xsl:template match="/">
<html>
<head>
<title><xsl:value-of select="cdash/title"/></title>
<meta name="robots" content="noindex,nofollow" />
<link rel="shortcut icon" href="favicon.ico"/>
<link rel="StyleSheet" type="text/css">
<xsl:attribute name="href"><xsl:value-of select="cdash/cssfile"/></xsl:attribute>
</link>
<script language="javascript" type="text/javascript" src="javascript/jquery-1.6.2.js" charset="utf-8"></script>
<script src="javascript/jquery.tablesorter.js" type="text/javascript" charset="utf-8"></script>
<script language="javascript" type="text/javascript" src="javascript/cdashSiteSorter.js"></script>
</head>
<body onload="load()" onunload="GUnload()">
<xsl:choose>
<xsl:when test="/cdash/uselocaldirectory=1">
<xsl:call-template name="headerback_local"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="headerback"/>
</xsl:otherwise>
</xsl:choose>
<br/>
<script type="text/javascript">
<xsl:attribute name="src">http://maps.google.com/maps?file=api&v=2&key=<xsl:value-of select="cdash/dashboard/googlemapkey"/></xsl:attribute>
</script>
<xsl:text disable-output-escaping="yes">
<script type="text/javascript">
// Creates a marker whose info window displays the letter corresponding
// to the given index.
function createMarker(point,title)
{
var marker = new GMarker(point);
GEvent.addListener(marker, "click", function()
{
marker.openInfoWindowHtml(title);
});
return marker;
}
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(37.4419, -30.00), 2);
map.addControl(new GLargeMapControl());
</xsl:text>
<xsl:for-each select="cdash/site">
<xsl:if test="string-length(latitude)>0">
var point = new GLatLng(<xsl:value-of select="latitude"/>,<xsl:value-of select="longitude"/>);
map.addOverlay(createMarker(point,'<xsl:value-of select="name"/>'));
</xsl:if>
</xsl:for-each><xsl:text disable-output-escaping="yes">
}
}
</script>
</xsl:text>
<div style="position:relative;">
<div style="float:left; padding-right:20px;">
<!-- Display the table of maintainers -->
<table id="maintainerTable" width="100%" cellspacing="0" class="tabb">
<thead>
<tr class="table-heading1">
<th id="sort_0">Site Name</th>
<th id="sort_1" >Maintainer</th>
<th id="sort_2" >Processor Speed</th>
<th id="sort_3" class="nob"># Processors</th>
</tr>
</thead>
<xsl:for-each select="cdash/site">
<tr>
<td><center>
<a>
<xsl:attribute name="href">viewSite.php?siteid=<xsl:value-of select="id"/></xsl:attribute>
<xsl:value-of select="name"/></a></center></td>
<td><center>
<xsl:if test="string-length(maintainer_name)>1">
<xsl:value-of select="maintainer_name"/>
</xsl:if>
<xsl:if test="string-length(maintainer_name)=1">
<a>
<xsl:attribute name="href">editSite.php?siteid=<xsl:value-of select="id"/></xsl:attribute>
[claim this site]
</a>
</xsl:if>
</center></td>
<td><center><xsl:value-of select="processor_speed"/>Hz</center></td>
<td><center><xsl:value-of select="numberphysicalcpus"/></center></td>
</tr>
</xsl:for-each>
</table>
</div>
<!-- Display the map -->
<div id="map" style="width: 700px; height: 400px; float:left;"></div>
</div>
<!-- FOOTER -->
<div style="clear:both; padding-top:20px"></div>
<xsl:choose>
<xsl:when test="/cdash/uselocaldirectory=1">
<xsl:call-template name="footer_local"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="footer"/>
</xsl:otherwise>
</xsl:choose>
</body>
</html>
</xsl:template>
</xsl:stylesheet>