-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
90 lines (71 loc) · 2.91 KB
/
index.php
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
require_once('php/backend.php');
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>EIOLCA | Pick a sector</title>
<script src="js/jquery-1.5.1.js" type="text/javascript"></script>
<script src="js/jquery-ui-1.8.9.custom.min.js" type="text/javascript"></script>
<script src="js/jquery.ba-hashchange.min.js" type="text/javascript"></script>
<script src="js/jquery.tmpl.min.js" type="text/javascript"></script>
<script src="js/backend.js" type="text/javascript"></script>
<script src="js/tooltip.js" type="text/javascript"></script>
<script src="js/visualization.js" type="text/javascript"></script>
<script src="js/sector-picker.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="css/custom-theme/jquery-ui-1.8.11.custom.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" type="text/css" href="css/vis.css"/>
<link rel="stylesheet" type="text/css" href="css/selector.css"/>
</head>
<body>
<?php include('pageTop.php'); ?>
<div id="selector_page" class="page_container">
<!--
<div class="aBox"id="chooseMetric">
<h2>Choose Metric</h2>
<select id="metricSelect"></select>
</div>
-->
<div class="aBox"id="searchBySector">
<h2>Search by Sector</h2>
<div id="searchbg">
<input type="text" id="sectorAutocomplete" value="Begin typing a sector" onfocus="this.select()">
</div>
</div>
<div class="aBox" id="browseByCategory">
<h2>Browse by Category</h2>
<div class="catTriColumn"></div>
<div class="catTriColumn"></div>
<div class="catTriColumn"></div>
<div class="cleardiv"></div>
</div>
</div>
<div id="sector_page" class="page_container">
<div id="container" class="aBox" sec_path=" <?php echo $sec_path ?>">
<h2 id="sectorName">Sector: <?php echo $sec_name ?></h2>
<div class="cleardiv"></div>
<div>
<a href=""><button id="back_button">Return To Sector Menu</button></a>
<button id="change_metric_button">Change Metric</button>
<div id="metric_picker_box">
<div>
<div class="metric_col first"></div>
<div class="metric_col"></div>
<div class="cleardiv"></div>
</div>
</div> <!-- end metric picker box -->
</div>
<h4>Top 5 Sources</h4>
<div id="top_categories"></div>
<h4>Economic Pathway</h4>
<div id="vizcontainer" sec_id="<?php echo $sec_id ?>"></div>
</div>
</div>
<script id="metric_list_item_template" type="text/html">
<li><a class="hoverable" href="#vis=186&metric=${id}">${name}</a> </li>
</script>
</body>
</html>