diff options
author | Sven Roederer <freifunk@it-solutions.geroedel.de> | 2019-02-03 14:13:35 +0100 |
---|---|---|
committer | Sven Roederer <freifunk@it-solutions.geroedel.de> | 2019-02-13 21:23:34 +0100 |
commit | 4654ba92c3999d84b08211f05d2ccb5ea9da731b (patch) | |
tree | 06cedf8e8badc0ce584d8bd5e97fab7476c81549 /modules/luci-mod-freifunk/htdocs/luci-static/flashing.html | |
parent | eda8f02dac3caa4d0f52cd1e860d7a392c295df3 (diff) |
treewide: move freifunk-related packages to separate repo
Even Freifunk was one of the major factory to create the LuCI-system, it's
now only a very small part of LuCI. LuCI has become a much bigger thing
and it seems that it's time to move the packages only relating to Freifunk
into it's own feed.
On the mailinglist it was discussed [1] and a repo below the general
Freifunk team on github was created.
This commit removes all packages that will be hosted in the new repo [2]
1 - http://lists.freifunk.net/pipermail/wlannews-freifunk.net/2019-February/004818.html
2 - https://github.com/freifunk/openwrt-packages
Signed-off-by: Sven Roederer <freifunk@it-solutions.geroedel.de>
Diffstat (limited to 'modules/luci-mod-freifunk/htdocs/luci-static/flashing.html')
-rw-r--r-- | modules/luci-mod-freifunk/htdocs/luci-static/flashing.html | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/modules/luci-mod-freifunk/htdocs/luci-static/flashing.html b/modules/luci-mod-freifunk/htdocs/luci-static/flashing.html deleted file mode 100644 index f9e882ff30..0000000000 --- a/modules/luci-mod-freifunk/htdocs/luci-static/flashing.html +++ /dev/null @@ -1,84 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> - <title>LuCI - System Upgrade</title> - - <style type="text/css"> - body { - background-color: #CCCCCC; - font-family: sans-serif; - font-size: 90%; - padding-left: 50%; - padding-top: 100px; - } - - h2 { - font-size: 110%; - margin: 5px 5px 0.5em 5px; - border-bottom: 1px dotted #0066CC; - color: #0066CC; - } - - p { - font-size: 95%; - margin: 15px 15px 0.5em 15px; - } - - div { - background-color: #F7F7F7; - border: 1px dotted #000000; - width: 600px; - height: 150px; - margin-left: -300px; - } - - em { - color: #555555; - } - </style> - - <script type="text/javascript"><!-- - var time_remaining = 60 * 25; - var interval = window.setInterval(function() { - if( time_remaining <= 0 ) - { - window.clearInterval(interval); - location.href = 'http://' + location.host + '/'; - } - else - { - var minutes = Math.floor(time_remaining / 60); - var seconds = time_remaining % 60; - var label = document.getElementById('time_remaining'); - - if( label ) - { - label.innerHTML = - ( minutes > 0 ? minutes + 'm ' : '' ) + - seconds + 's'; - } - } - - time_remaining = time_remaining - 1; - }, 1000); - --></script> -</head> - -<body class="lang_en"> - <div> - <h2>Performing Upgrade</h2> - - <p> - The System is flashing now. The procedure can take up to 25 minutes, - please be patient and wait until this page reloads itself. - - <br /><img src="resources/flashing.gif" style="vertical-align:middle; margin:10px" /> - - <em>Remaining time (estimated): <span id="time_remaining">unknown</span></em> - </p> - </div> -</body> - -</html> |