diff options
Diffstat (limited to 'modules/luci-base/luasrc/view/header.htm')
-rw-r--r-- | modules/luci-base/luasrc/view/header.htm | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/modules/luci-base/luasrc/view/header.htm b/modules/luci-base/luasrc/view/header.htm deleted file mode 100644 index cffe9482ca..0000000000 --- a/modules/luci-base/luasrc/view/header.htm +++ /dev/null @@ -1,38 +0,0 @@ -<%# - Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008-2019 Jo-Philipp Wich <jo@mein.io> - Licensed to the public under the Apache License 2.0. --%> - -<% - if not luci.dispatcher.context.template_header_sent then - include("themes/" .. theme .. "/header") - luci.dispatcher.context.template_header_sent = true - end - - local applyconf = luci.config and luci.config.apply -%> - -<script type="text/javascript" src="<%=resource%>/promis.min.js"></script> -<script type="text/javascript" src="<%=resource%>/luci.js"></script> -<script type="text/javascript"> - L = new LuCI(<%= luci.http.write_json({ - token = token, - media = media, - resource = resource, - scriptname = luci.http.getenv("SCRIPT_NAME"), - pathinfo = luci.http.getenv("PATH_INFO"), - documentroot = luci.http.getenv("DOCUMENT_ROOT"), - requestpath = luci.dispatcher.context.requestpath, - dispatchpath = luci.dispatcher.context.path, - pollinterval = luci.config.main.pollinterval or 5, - ubuspath = luci.config.main.ubuspath or '/ubus/', - sessionid = luci.dispatcher.context.authsession, - nodespec = luci.dispatcher.context.dispatched, - apply_rollback = math.max(applyconf and applyconf.rollback or 90, 90), - apply_holdoff = math.max(applyconf and applyconf.holdoff or 4, 1), - apply_timeout = math.max(applyconf and applyconf.timeout or 5, 1), - apply_display = math.max(applyconf and applyconf.display or 1.5, 1), - rollback_token = rollback_token - }) %>); -</script> |