summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js
diff options
context:
space:
mode:
authorMichele Primavera <primavera@elmod.it>2020-01-21 12:49:51 +0100
committerMichele Primavera <primavera@elmod.it>2020-01-22 08:50:49 +0100
commit04183da9997bceb2f1cf922a15bd665d96e54a2a (patch)
tree85e5e64a62751d487ef233cf9b55e5057410c706 /applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js
parent1c49bda198ef33c0423777a966e6c6ab477da34b (diff)
luci-app-ser2net: add app supporting ser2net (JS)
Signed-off-by: Michele Primavera <primavera@elmod.it>
Diffstat (limited to 'applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js')
-rw-r--r--applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js78
1 files changed, 78 insertions, 0 deletions
diff --git a/applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js b/applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js
new file mode 100644
index 0000000000..105f591c49
--- /dev/null
+++ b/applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js
@@ -0,0 +1,78 @@
+'use strict';
+'require form';
+
+return L.view.extend({
+ render: function() {
+ var m, s, o;
+
+ m = new form.Map('ser2net', 'ser2net');
+
+ s = m.section(form.TypedSection, "proxy", _("Proxies"));
+ s.anonymous = true;
+ s.addremove = true;
+
+ o = s.option(form.Flag, "enabled", _("Enabled"));
+ o.rmempty = false;
+
+ o = s.option(form.Value, "port", _("Service port"), _("The TCP port to listen on."));
+ o.rmempty = false;
+ o.default = 5000;
+
+ o = s.option(form.ListValue, "protocol", _("Protocol"), _("The protocol to listen to."));
+ o.rmempty = false;
+ o.value("raw", _("Raw"));
+ o.value("rawlp", _("Rawlp"));
+ o.value("telnet", _("Telnet"));
+ o.value("off", _("Off"));
+ o.default = "raw";
+
+ o = s.option(form.Value, "timeout", _("Timeout"), _("The amount of seconds of inactivity before a disconnect occurs.<br/>A value of zero means wait indefinitely."));
+ o.rmempty = false;
+ o.default = 0;
+
+ o = s.option(form.Value, "device", _("Device"), _("The name of the device to connect to.<br/>This must be in the form of /dev/<device>."));
+ o.rmempty = false;
+ o.default = "/dev/ttyUSB0";
+
+ o = s.option(form.ListValue, "baudrate", _("Baud rate"), _("The speed the device port should operate at."));
+ o.rmempty = false;
+ o.value(300);
+ o.value(1200);
+ o.value(2400);
+ o.value(4800);
+ o.value(9600);
+ o.value(19200);
+ o.value(38400);
+ o.value(57600);
+ o.value(115200);
+ o.default = 9600;
+
+ o = s.option(form.ListValue, "databits", _("Data bits"));
+ o.rmempty = false;
+ o.value(8);
+ o.value(7);
+ o.default = 8;
+
+ o = s.option(form.ListValue, "parity", _("Parity"));
+ o.rmempty = false;
+ o.value("none", _("None"));
+ o.value("even", _("Even"));
+ o.value("odd", _("Odd"));
+ o.default = "none";
+
+ o = s.option(form.ListValue, "stopbits", _("Stop bits"));
+ o.rmempty = false;
+ o.value(1);
+ o.value(2);
+ o.default = 1;
+
+ s.option(form.Flag, "rtscts", _("Use RTS and CTS lines"));
+ s.option(form.Flag, "local", _("Ignore modem control signals"));
+ s.option(form.Flag, "remctl", _("Allow the RFC 2217 protocol"));
+ s.option(form.DynamicList, "options", _("Extra options"));
+ s.option(form.Value, "led_tx", _("TX LED configuration"));
+ s.option(form.Value, "led_rx", _("RX LED configuration"));
+
+ return m.render();
+ }
+});