OLD | NEW |
1 <div class="page hidden" id="content-settings-page"> | 1 <div class="page hidden" id="content-settings-page"> |
2 <h1 i18n-content="contentSettingsPage"></h1> | 2 <h1 i18n-content="contentSettingsPage"></h1> |
3 <!-- Cookie filter tab contents --> | 3 <!-- Cookie filter tab contents --> |
4 <section> | 4 <section> |
5 <h3 i18n-content="cookies_tab_label"></h3> | 5 <h3 i18n-content="cookies_tab_label"></h3> |
6 <div> | 6 <div> |
7 <div class="radio"> | 7 <div class="radio"> |
8 <label> | 8 <label> |
9 <input type="radio" name="cookies" value="allow"> | 9 <input type="radio" name="cookies" value="allow"> |
10 <span i18n-content="cookies_allow"></span> | 10 <span i18n-content="cookies_allow"></span> |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 <input type="radio" name="javascript" value="block"> | 85 <input type="radio" name="javascript" value="block"> |
86 <span i18n-content="javascript_block"></span> | 86 <span i18n-content="javascript_block"></span> |
87 </label> | 87 </label> |
88 </div> | 88 </div> |
89 | 89 |
90 <button class="exceptions-list-button" contentType="javascript" | 90 <button class="exceptions-list-button" contentType="javascript" |
91 i18n-content="manage_exceptions"></button> | 91 i18n-content="manage_exceptions"></button> |
92 </div> | 92 </div> |
93 </section> | 93 </section> |
94 | 94 |
| 95 <!-- Handlers settings --> |
| 96 <if expr="pp_ifdef('show_handler_settings')"> |
| 97 <section id="handlers-section"> |
| 98 <h3 i18n-content="handlers_tab_label"></h3> |
| 99 <div> |
| 100 <div class="radio"> |
| 101 <label> |
| 102 <input type="radio" name="handlers" value="allow"> |
| 103 <span i18n-content="handlers_allow"></span> |
| 104 </label> |
| 105 </div> |
| 106 <div class="radio"> |
| 107 <label> |
| 108 <input type="radio" name="handlers" value="block"> |
| 109 <span i18n-content="handlers_block"></span> |
| 110 </label> |
| 111 </div> |
| 112 |
| 113 <button id="manage-handlers-button" contentType="handlers" |
| 114 i18n-content="manage_handlers"></button> |
| 115 </div> |
| 116 </section> |
| 117 </if> |
| 118 |
95 <!-- Plug-ins filter --> | 119 <!-- Plug-ins filter --> |
96 <section> | 120 <section> |
97 <h3 i18n-content="plugins_tab_label"></h3> | 121 <h3 i18n-content="plugins_tab_label"></h3> |
98 <div> | 122 <div> |
99 <div class="radio"> | 123 <div class="radio"> |
100 <label> | 124 <label> |
101 <input type="radio" name="plugins" value="allow"> | 125 <input type="radio" name="plugins" value="allow"> |
102 <span i18n-content="plugins_allow"></span> | 126 <span i18n-content="plugins_allow"></span> |
103 </label> | 127 </label> |
104 </div> | 128 </div> |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 <input type="radio" name="notifications" value="block"> | 218 <input type="radio" name="notifications" value="block"> |
195 <span i18n-content="notifications_block"></span> | 219 <span i18n-content="notifications_block"></span> |
196 </label> | 220 </label> |
197 </div> | 221 </div> |
198 | 222 |
199 <button class="exceptions-list-button" contentType="notifications" | 223 <button class="exceptions-list-button" contentType="notifications" |
200 i18n-content="manage_exceptions"></button> | 224 i18n-content="manage_exceptions"></button> |
201 </div> | 225 </div> |
202 </section> | 226 </section> |
203 </div> | 227 </div> |
OLD | NEW |