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>
|
2020-12-06 17:24:04 +01:00
|
|
|
<link rel="stylesheet" href="lib/codemirror/lib/codemirror.css">
|
|
|
|
<link rel="stylesheet" href="lib/codemirror/addon/merge/merge.css">
|
2018-03-11 15:59:39 +01:00
|
|
|
|
2020-12-06 17:24:04 +01:00
|
|
|
<link rel="stylesheet" href="css/themes/default.css">
|
|
|
|
<link rel="stylesheet" href="css/common.css">
|
|
|
|
<link rel="stylesheet" href="css/fa-icons.css">
|
|
|
|
<link rel="stylesheet" href="css/dashboard-common.css">
|
|
|
|
<link rel="stylesheet" href="css/cloud-ui.css">
|
|
|
|
<link rel="stylesheet" href="css/dyna-rules.css">
|
|
|
|
<link rel="stylesheet" href="css/codemirror.css">
|
2014-12-31 23:26:17 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2018-03-28 22:15:50 +02:00
|
|
|
<div class="body">
|
|
|
|
<div id="cloudWidget" class="hide" data-cloud-entry="myRulesPane"></div>
|
2020-12-06 17:24:04 +01:00
|
|
|
<p class="vverbose"><span data-i18n="rulesHint"></span> <a class="fa-icon info" href="https://github.com/gorhill/uBlock/wiki/Dynamic-filtering:-rule-syntax" target="_blank">info-circle</a></p>
|
2018-03-28 22:15:50 +02:00
|
|
|
<div id="diff">
|
|
|
|
<div class="tools">
|
|
|
|
<div class="ruleActions">
|
2020-04-25 16:19:08 +02:00
|
|
|
<div class="fieldset-header" data-i18n="rulesPermanentHeader"></div>
|
2022-01-31 00:35:26 +01:00
|
|
|
<button type="button" class="iconified" id="exportButton"><span class="fa-icon">upload-alt</span><span data-i18n="rulesExport">_</span><span class="hover"></span></button>
|
|
|
|
<button type="button" class="iconified" id="revertButton"><span class="fa-icon">arrow-right</span><span data-i18n="rulesRevert">_</span><span class="hover"></span></button>
|
2018-03-28 22:15:50 +02:00
|
|
|
</div>
|
|
|
|
<div class="ruleActions">
|
2020-04-25 16:19:08 +02:00
|
|
|
<div class="fieldset-header" data-i18n="rulesTemporaryHeader"></div>
|
2022-01-31 00:35:26 +01:00
|
|
|
<button type="button" class="iconified" id="commitButton"><span class="fa-icon fa-icon-hflipped">arrow-right</span><span data-i18n="rulesCommit">_</span><span class="hover"></span></button>
|
|
|
|
<button type="button" class="iconified" id="importButton"><span class="fa-icon">download-alt</span><span data-i18n="rulesImport">_</span><span class="hover"></span></button>
|
|
|
|
<button type="button" class="iconified preferred disabled" id="editSaveButton"><span class="fa-icon">save</span><span data-i18n="rulesEditSave">_</span><span class="hover"></span></button>
|
2020-08-24 18:39:07 +02:00
|
|
|
</div>
|
2015-02-11 19:50:44 +01:00
|
|
|
</div>
|
2015-02-11 17:34:51 +01:00
|
|
|
</div>
|
2018-03-11 15:59:39 +01:00
|
|
|
</div>
|
2022-01-31 00:35:26 +01:00
|
|
|
<div id="ruleFilter">
|
|
|
|
<span><span class="fa-icon">filter</span> <input type="search" size="16"></span> <span data-i18n="rulesSort"></span> <select><option value="0" selected data-i18n="rulesSortByType"><option value="1" data-i18n="rulesSortBySource"><option value="2" data-i18n="rulesSortByDestination"></select> <span id="diffCollapse" class="fa-icon">double-angle-up</span>
|
|
|
|
</div>
|
2020-04-25 16:19:08 +02:00
|
|
|
<div class="codeMirrorContainer codeMirrorMergeContainer"></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>
|
2019-06-20 00:28:44 +02:00
|
|
|
|
2020-04-11 00:17:12 +02:00
|
|
|
<script src="js/fa-icons.js"></script>
|
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>
|
2021-07-25 16:55:35 +02:00
|
|
|
<script src="js/dyna-rules.js" type="module"></script>
|
2014-12-31 23:26:17 +01:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|