diff options
Diffstat (limited to 'html/options.html')
-rw-r--r-- | html/options.html | 38 |
1 files changed, 31 insertions, 7 deletions
diff --git a/html/options.html b/html/options.html index 2e8317c..14b7d44 100644 --- a/html/options.html +++ b/html/options.html @@ -1,18 +1,41 @@ -<!doctype html> +<!DOCTYPE html> <!-- + SPDX-License-Identifier: GPL-3.0-or-later OR CC-BY-SA-4.0 + + Extension's settings page + This file is part of Haketilo. - Function: Extension's settings page. + Copyright (C) 2021 Wojtek Kosior <koszko@koszko.org> + + File is dual-licensed. You can choose either GPLv3+, CC BY-SA or both. + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. - Copyright (C) 2021 Wojtek Kosior - Redistribution terms are gathered in the `copyright' file. + I, Wojtek Kosior, thereby promise not to sue for violation of this file's + licenses. Although I request that you do not make use this code in a + proprietary program, I am not going to enforce this in court. --> <html> <head> <meta charset="utf-8"/> <title>Haketilo options</title> +#COPY_FILE html/reset.css <link type="text/css" rel="stylesheet" href="reset.css" /> +#COPY_FILE html/base.css <link type="text/css" rel="stylesheet" href="base.css" /> +#COPY_FILE html/table.css <link type="text/css" rel="stylesheet" href="table.css" /> <style> body { @@ -272,7 +295,7 @@ </div> <button id="add_page_but" type="button"> Add page </button> <br/> - <IMPORT html/default_blocking_policy.html /> +#INCLUDE html/default_blocking_policy.html </div> <div id="bags" class="tab"> <div class="table_wrapper tight_table has_bottom_line has_upper_line"> @@ -383,13 +406,14 @@ <div id="import_window" class="hide popup" position="absolute"> <div class="popup_frame"> <h2> Settings import </h2> - <IMPORT html/import_frame.html /> +#INCLUDE html/import_frame.html </div> </div> <a id="file_downloader" class="hide"></a> <form id="file_opener_form" style="visibility: hidden;"> <input type="file" id="file_opener"></input> - </form>_OPTIONSSCRIPTS_ + </form> +#LOADJS html/options_main.js </body> </html> |