-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
160 lines (159 loc) · 5.95 KB
/
index.html
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>IFG-Anfragen</title>
<link rel="stylesheet" href="ifganfragen.css">
</head>
<body>
<a id="auswahl-button" class="button" href="#auswahl">Institutionen wählen</a>
<h2>
Wie vielen IFG-Anfragen wird stattgegeben?
</h2>
<div class="clearfix"></div>
<div id="auswahl" class="auswahl" style="display:none">
<a class="close" href="#"></a>
<div class="clearfix"></div>
<ul class="auswahl-liste">
<li>
<label><input type="checkbox" name="show" value="BK"><span>Kanzleramt</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BMAS"><span>Arbeitsministerium</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="AA"><span>Auswärtiges Amt</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BMI"><span>Innenministerium</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BMJV"><span>Justizministerium</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BMF"><span>Finanzministerium</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BMWi"><span>Wirtschaftsministerium</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BMEL"><span>Verbraucherschutzministerium</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BMVg"><span>Verteidigungsministerium</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BMFSFJ"><span>Familienministerium</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BMG"><span>Gesundheitsministerium</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BMVI"><span>Verkehrsministerium</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BMUB"><span>Umweltministerium</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BMBF"><span>Bildungsministerium</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BKM"><span>Beauftragter für Kultur und Medien</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BMZ"><span>Entwicklungsministerium</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BPA"><span>Bundespresseamt</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BPrA"><span>Bundespräsidialamt</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BT"><span>Bundestag</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BR"><span>Bundesrat</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BBank"><span>Bundesbank</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BfDI"><span>Datenschutz/Informationsfreiheit</span></label>
</li>
<li>
<label><input type="checkbox" name="show" value="BRH"><span>Bundesrechnungshof</span></label>
</li>
</ul>
<div class="clearfix"></div>
<a class="button grey" id="choose-all" href="#">alle wählen</a> <a class="button grey" id="choose-none" href="#">keine wählen</a>
<div class="clearfix"></div>
</div>
<div id="vis"></div>
<script src="js/d3.v3.min.js" type="text/javascript"></script>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/underscore.min.js" type="text/javascript"></script>
<script src="js/backbone.min.js" type="text/javascript"></script>
<script type="text/javascript">
var IFGVis = IFGVis || {};
IFGVis.colors = {
"BK": "#593A68",
"BMAS": "#005D9F",
"AA": "#0A3456",
"BMI": "#4E4F2C",
"BMJV": "#C43BBE",
"BMF": "#0099C6",
"BMWi": "#0C5144",
"BMEL": "#427C89",
"BMVg": "#C6A70E",
"BMFSFJ": "#AAAA11",
"BMG": "#2BAA2B",
"BMVI": "#27234D",
"BMUB": "#14998F",
"BMBF": "#004889",
"BKM": "#8553A5",
"BMZ": "#007EAA",
"BPA": "#312783",
"BPrA": "#67D805",
"BT": "#00676D",
"BR": "#0101DF",
"BBank": "#FF7F00",
"BfDI": "#B77322",
"BRH": "#E2E207",
'BVerfG': "#E2E207",
};
IFGVis.labels = {
"BK": "Kanzleramt",
"BMAS": "Arbeitsministerium",
"AA": "Auswärtiges Amt",
"BMI": "Innenministerium",
"BMJV": "Justizministerium",
"BMF": "Finanzministerium",
"BMWi": "Wirtschaftsministerium",
"BMEL": "Verbraucherschutzministerium",
"BMVg": "Verteidigungsministerium",
"BMFSFJ": "Familienministerium",
"BMG": "Gesundheitsministerium",
"BMVI": "Verkehrsministerium",
"BMUB": "Umweltministerium",
"BMBF": "Bildungsministerium",
"BKM": "Beauftragter für Kultur und Medien",
"BMZ": "Entwicklungsministerium",
"BPA": "Bundespresseamt",
"BPrA": "Bundespräsidialamt",
"BT": "Bundestag",
"BR": "Bundesrat",
"BBank": "Bundesbank",
"BfDI": "Datenschutz- und Informationsfreiheitsbeauftragter",
"BRH": "Bundesrechnungshof",
'BVerfG': 'Bundesverfassungsgericht'
};
IFGVis.defaultInstitution = 'BMF';
IFGVis.helpDotSize = 10;
IFGVis.dotSizeNeedsHelp = 5;
IFGVis.maxDotSize = 50;
</script>
<!-- <script src="data.js" type="text/javascript"></script> -->
<script id="ifg" src="js/ifg.js" type="text/javascript"></script>
</body>
</html>