Skip to content

Commit b5fdac9

Browse files
committed
first commit
1 parent f489461 commit b5fdac9

File tree

99 files changed

+232216
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+232216
-0
lines changed

1p-filters.html

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5+
<title>HTTP Switchboard — Ubiquitous rules</title>
6+
<link rel="stylesheet" type="text/css" href="css/common.css">
7+
<link rel="stylesheet" type="text/css" href="css/dashboard-common.css">
8+
<style>
9+
div > p:first-child {
10+
margin-top: 0;
11+
}
12+
div > p:last-child {
13+
margin-bottom: 0;
14+
}
15+
.dim {
16+
color: #444;
17+
}
18+
.userFilters {
19+
font-size: smaller;
20+
width: 48em;
21+
height: 40em;
22+
white-space: nowrap;
23+
}
24+
</style>
25+
</head>
26+
27+
<body>
28+
29+
<div>
30+
<p data-i18n="1pFormatHint"></p>
31+
<p><button id="importUserFiltersFromFile" data-i18n="1pImport"></button> &emsp; <button id="exportUserFiltersToFile" data-i18n="1pExport"></button></p>
32+
<textarea class="userFilters" id="userFilters"></textarea>
33+
<p><button id="userFiltersApply" disabled="true" data-i18n="1pApplyChanges"></button></p>
34+
</div>
35+
36+
<script src="lib/jquery-2.min.js"></script>
37+
<script src="js/i18n.js"></script>
38+
<script src="js/dashboard-common.js"></script>
39+
<script src="js/messaging-client.js"></script>
40+
<script src="js/1p-filters.js"></script>
41+
42+
</body>
43+
</html>

3p-filters.html

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5+
<title>HTTP Switchboard — Ubiquitous rules</title>
6+
<link rel="stylesheet" type="text/css" href="css/common.css">
7+
<link rel="stylesheet" type="text/css" href="css/dashboard-common.css">
8+
<style>
9+
div > p:first-child {
10+
margin-top: 0;
11+
}
12+
div > p:last-child {
13+
margin-bottom: 0;
14+
}
15+
ul {
16+
padding: 0;
17+
list-style-type: none;
18+
}
19+
ul > li {
20+
margin: 0 0 0 1em;
21+
}
22+
.dim {
23+
color: #444;
24+
}
25+
.userUbiquitousHosts {
26+
font-size: smaller;
27+
width: 36em;
28+
height: 16em;
29+
white-space: nowrap;
30+
}
31+
</style>
32+
</head>
33+
34+
<body>
35+
36+
<p id="3pListsOfBlockedHostsPrompt2"></p>
37+
<ul id="blacklistTemplate" style="display:none">
38+
<li class="blacklistDetails"><input type="checkbox">&thinsp;<a href="" type="text/plain"></a>:
39+
<span class="dim" data-i18n="3pListsOfBlockedHostsPerListStats"></span>
40+
</ul>
41+
<ul id="blacklists" style="margin:0.5em 0 0 0;padding-left:1em;list-style-type:none">
42+
<li style="margin-top:0.75em"><input type="checkbox" id="parseAllABPHideFilters"><span data-i18n="3pParseAllABPHideFiltersPrompt1"></span>
43+
<span class="dim" id="3pParseAllABPHideFiltersPrompt2"></span>
44+
<button class="whatisthis"></button>
45+
<div class="whatisthis-expandable para" data-i18n="3pParseAllABPHideFiltersInfo"></div>
46+
<li style="margin-top:0.75em"><button id="blacklistsApply" disabled="true" data-i18n="3pApplyChanges"></button>
47+
</ul>
48+
49+
<script src="lib/jquery-2.min.js"></script>
50+
<script src="js/i18n.js"></script>
51+
<script src="js/dashboard-common.js"></script>
52+
<script src="js/messaging-client.js"></script>
53+
<script src="js/3p-filters.js"></script>
54+
55+
</body>
56+
</html>

0 commit comments

Comments
 (0)