- CGI script and index.html are moved from gluon-web to gluon-config-mode-core, the script is renamed to 'config' - gluon-web and gluon-web-model base views and i18n files are symlinked into the new path - gluon-web-theme is renamed to gluon-config-mode-theme and installs directly into the new path - all gluon-web-* models, controllers and views are moved into the new path
13 lines
321 B
Lua
13 lines
321 B
Lua
package 'gluon-web-admin'
|
|
|
|
|
|
local root = node()
|
|
if not root.target then
|
|
root.target = alias("admin")
|
|
end
|
|
|
|
entry({"admin"}, alias("admin", "info"), _("Advanced settings"), 10)
|
|
|
|
entry({"admin", "info"}, template("admin/info"), _("Information"), 1)
|
|
entry({"admin", "remote"}, model("admin/remote"), _("Remote access"), 10)
|