2014-12-31 23:26:17 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2017-01-24 14:23:52 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2015-03-10 05:00:33 +01:00
|
|
|
<title>uBlock — Dynamic filtering rules</title>
|
2018-03-11 15:59:39 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="lib/codemirror/lib/codemirror.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="lib/codemirror/addon/merge/merge.css">
|
|
|
|
|
2014-12-31 23:26:17 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/common.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/dashboard-common.css">
|
2015-08-11 21:29:14 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/cloud-ui.css">
|
2014-12-31 23:26:17 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/dyna-rules.css">
|
2018-03-11 15:59:39 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="css/codemirror.css">
|
2014-12-31 23:26:17 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
<div id="cloudWidget" class="hide" data-cloud-entry="myRulesPane"></div>
|
|
|
|
|
2018-03-11 15:59:39 +01:00
|
|
|
<p><span data-i18n="rulesHint"></span> <a class="fa info" href="https://github.com/gorhill/uBlock/wiki/Dynamic-filtering:-rule-syntax" target="_blank"></a></p>
|
2015-02-11 17:34:51 +01:00
|
|
|
<div id="diff">
|
2018-03-11 15:59:39 +01:00
|
|
|
<div class="tools">
|
2015-02-11 19:50:44 +01:00
|
|
|
<div class="ruleActions">
|
2018-03-11 15:59:39 +01:00
|
|
|
<h3 data-i18n="rulesPermanentHeader"></h3>
|
2015-08-12 18:17:39 +02:00
|
|
|
<button type="button" class="custom" id="exportButton" data-i18n="rulesExport"></button>
|
|
|
|
<button type="button" class="custom" id="revertButton" data-i18n="rulesRevert"></button>
|
2015-02-11 19:50:44 +01:00
|
|
|
</div>
|
|
|
|
<div class="ruleActions">
|
2018-03-11 15:59:39 +01:00
|
|
|
<h3 data-i18n="rulesTemporaryHeader"></h3>
|
2015-08-12 18:17:39 +02:00
|
|
|
<button type="button" class="custom" id="commitButton" data-i18n="rulesCommit"></button>
|
|
|
|
<button type="button" class="custom" id="importButton" data-i18n="rulesImport"></button>
|
2018-03-11 15:59:39 +01:00
|
|
|
<button type="button" class="custom" id="editSaveButton" data-i18n="rulesEditSave"></button>
|
2015-02-11 19:50:44 +01:00
|
|
|
</div>
|
2018-03-21 12:24:52 +01:00
|
|
|
<div id="ruleFilter"><span class="fa"></span> <input type="text" size="32"></div>
|
2015-02-11 17:34:51 +01:00
|
|
|
</div>
|
2018-03-11 15:59:39 +01:00
|
|
|
<div class="codeMirrorContainer codeMirrorMergeContainer"></div>
|
|
|
|
</div>
|
2015-02-11 17:34:51 +01:00
|
|
|
|
2015-03-09 05:21:08 +01:00
|
|
|
<div id="templates" style="display: none;">
|
|
|
|
<input class="hidden" id="importFilePicker" type="file" accept="text/plain">
|
|
|
|
<span class="hidden" data-i18n="rulesDefaultFileName"></span>
|
2018-03-11 15:59:39 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="lib/diff/swatinem_diff.js"></script>
|
|
|
|
<script src="lib/codemirror/lib/codemirror.js"></script>
|
|
|
|
<script src="lib/codemirror/addon/merge/merge.js"></script>
|
|
|
|
<script src="lib/codemirror/addon/selection/active-line.js"></script>
|
2014-12-31 23:26:17 +01:00
|
|
|
|
2017-10-27 20:22:45 +02:00
|
|
|
<script src="js/vapi.js"></script>
|
2014-12-31 23:26:17 +01:00
|
|
|
<script src="js/vapi-common.js"></script>
|
|
|
|
<script src="js/vapi-client.js"></script>
|
|
|
|
<script src="js/udom.js"></script>
|
|
|
|
<script src="js/i18n.js"></script>
|
|
|
|
<script src="js/dashboard-common.js"></script>
|
2015-08-11 21:29:14 +02:00
|
|
|
<script src="js/cloud-ui.js"></script>
|
2014-12-31 23:26:17 +01:00
|
|
|
<script src="js/dyna-rules.js"></script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|