diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-02-26 12:49:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-26 12:49:11 +0100 |
commit | 7c6c043df7323b74e96d892568f5defcd8e7fd0f (patch) | |
tree | 903001ce25e1b6b03d447cf1ccd2aa95bfe0f8f3 /applications/luci-app-pagekitec/luasrc/model | |
parent | 507654bcc81871460bf79640788023bf2e05160f (diff) | |
parent | 36e66aeba0e3e1414544d16078d28cb65c2c961c (diff) |
Merge pull request #3686 from etactica/pk-to-js
luci-app-pagekitec: convert pagekite ui to js
Diffstat (limited to 'applications/luci-app-pagekitec/luasrc/model')
-rw-r--r-- | applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua b/applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua deleted file mode 100644 index 1abd3f79d5..0000000000 --- a/applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua +++ /dev/null @@ -1,26 +0,0 @@ -m = Map("pagekitec", translate("PageKite"), - translate([[ -<p/>Note: you need a working PageKite account, or at least, your own running front end for this form to work. -Visit <a href="https://pagekite.net/home/">your account</a> to set up a name for your -router and get a secret key for the connection. -<p/><em>Note: this web configurator only supports -some very very basic uses of pagekite.</em> -]])) - -s = m:section(TypedSection, "pagekitec", translate("PageKite")) -s.anonymous = true - -p = s:option(Value, "kitename", translate("Kite Name")) -p = s:option(Value, "kitesecret", translate("Kite Secret")) -p.password = true -p = s:option(Flag, "static", translate("Static Setup"), - translate([[Static setup, disable FE failover and DDNS updates, set this if you are running your - own frontend without a pagekite.me account]])) - -p = s:option(Flag, "simple_http", translate("Basic HTTP"), - translate([[Enable a tunnel to the local HTTP server (in most cases, this admin -site)]])) -p = s:option(Flag, "simple_ssh", translate("Basic SSH"), - translate([[Enable a tunnel to the local SSH server]])) - -return m |