├── .buildpath ├── .cproject ├── .gitignore ├── .project ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── THANKYOU ├── applications ├── luci-app-adblock │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── adblock.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── adblock │ │ │ │ ├── blacklist_tab.lua │ │ │ │ ├── configuration_tab.lua │ │ │ │ ├── overview_tab.lua │ │ │ │ └── whitelist_tab.lua │ │ └── view │ │ │ └── adblock │ │ │ ├── blocklist.htm │ │ │ ├── config_css.htm │ │ │ ├── logread.htm │ │ │ ├── query.htm │ │ │ └── runtime.htm │ ├── po │ │ ├── it │ │ │ └── adblock.po │ │ ├── ja │ │ │ └── adblock.po │ │ ├── pt-br │ │ │ └── adblock.po │ │ ├── ru │ │ │ └── adblock.po │ │ ├── sv │ │ │ └── adblock.po │ │ ├── templates │ │ │ └── adblock.pot │ │ ├── zh-cn │ │ │ └── adblock.po │ │ └── zh-tw │ │ │ └── adblock.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-adblock ├── luci-app-advanced-reboot │ ├── Makefile │ ├── README.md │ ├── luasrc │ │ ├── controller │ │ │ └── advanced_reboot.lua │ │ └── view │ │ │ └── advanced_reboot │ │ │ ├── advanced_reboot.htm │ │ │ ├── alternative_reboot.htm │ │ │ └── power_off.htm │ └── po │ │ ├── ru │ │ └── advanced-reboot.po │ │ ├── sv │ │ └── advanced-reboot.po │ │ └── templates │ │ └── advanced-reboot.pot ├── luci-app-ahcp │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── ahcp.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── ahcp.lua │ │ └── view │ │ │ ├── admin_status │ │ │ └── index │ │ │ │ └── ahcp.htm │ │ │ └── ahcp_status.htm │ ├── po │ │ ├── ca │ │ │ └── ahcp.po │ │ ├── cs │ │ │ └── ahcp.po │ │ ├── de │ │ │ └── ahcp.po │ │ ├── el │ │ │ └── ahcp.po │ │ ├── en │ │ │ └── ahcp.po │ │ ├── es │ │ │ └── ahcp.po │ │ ├── fr │ │ │ └── ahcp.po │ │ ├── he │ │ │ └── ahcp.po │ │ ├── hu │ │ │ └── ahcp.po │ │ ├── it │ │ │ └── ahcp.po │ │ ├── ja │ │ │ └── ahcp.po │ │ ├── ms │ │ │ └── ahcp.po │ │ ├── no │ │ │ └── ahcp.po │ │ ├── pl │ │ │ └── ahcp.po │ │ ├── pt-br │ │ │ └── ahcp.po │ │ ├── pt │ │ │ └── ahcp.po │ │ ├── ro │ │ │ └── ahcp.po │ │ ├── ru │ │ │ └── ahcp.po │ │ ├── sk │ │ │ └── ahcp.po │ │ ├── sv │ │ │ └── ahcp.po │ │ ├── templates │ │ │ └── ahcp.pot │ │ ├── tr │ │ │ └── ahcp.po │ │ ├── uk │ │ │ └── ahcp.po │ │ ├── vi │ │ │ └── ahcp.po │ │ ├── zh-cn │ │ │ └── ahcp.po │ │ └── zh-tw │ │ │ └── ahcp.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-ahcp ├── luci-app-aria2 │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── aria2.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── aria2.lua │ │ └── view │ │ │ └── aria2 │ │ │ └── overview_status.htm │ ├── po │ │ ├── pt-br │ │ │ └── aria2.po │ │ ├── ru │ │ │ └── aria2.po │ │ ├── sv │ │ │ └── aria2.po │ │ ├── templates │ │ │ └── aria2.pot │ │ ├── zh-cn │ │ │ └── aria2.po │ │ └── zh-tw │ │ │ └── aria2.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-aria2 ├── luci-app-arpbind │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── arpbind.lua │ │ └── model │ │ │ └── cbi │ │ │ └── arpbind.lua │ ├── po │ │ └── zh-cn │ │ │ └── arpbind.po │ └── root │ │ └── etc │ │ ├── hotplug.d │ │ └── iface │ │ │ └── 50-arpbind │ │ ├── init.d │ │ └── arpbind │ │ └── uci-defaults │ │ └── luci-arpbind ├── luci-app-asterisk │ ├── Makefile │ ├── luasrc │ │ ├── asterisk.lua │ │ ├── asterisk │ │ │ └── cc_idd.lua │ │ ├── controller │ │ │ └── asterisk.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ ├── asterisk-dialplans.lua │ │ │ │ ├── asterisk-iax-connections.lua │ │ │ │ ├── asterisk-meetme.lua │ │ │ │ ├── asterisk-mod-app.lua │ │ │ │ ├── asterisk-mod-cdr.lua │ │ │ │ ├── asterisk-mod-chan.lua │ │ │ │ ├── asterisk-mod-codec.lua │ │ │ │ ├── asterisk-mod-format.lua │ │ │ │ ├── asterisk-mod-func.lua │ │ │ │ ├── asterisk-mod-pbx.lua │ │ │ │ ├── asterisk-mod-res-feature.lua │ │ │ │ ├── asterisk-mod-res.lua │ │ │ │ ├── asterisk-sip-connections.lua │ │ │ │ ├── asterisk-voice.lua │ │ │ │ ├── asterisk.lua │ │ │ │ └── asterisk │ │ │ │ ├── dialplan_out.lua │ │ │ │ ├── dialplans.lua │ │ │ │ ├── dialzones.lua │ │ │ │ ├── meetme.lua │ │ │ │ ├── meetme_settings.lua │ │ │ │ ├── phone_sip.lua │ │ │ │ ├── phones.lua │ │ │ │ ├── trunk_sip.lua │ │ │ │ ├── trunks.lua │ │ │ │ ├── voicemail.lua │ │ │ │ └── voicemail_settings.lua │ │ └── view │ │ │ └── asterisk │ │ │ ├── cbi │ │ │ └── cell.htm │ │ │ ├── dialplans.htm │ │ │ └── dialzones.htm │ ├── po │ │ ├── ca │ │ │ └── asterisk.po │ │ ├── cs │ │ │ └── asterisk.po │ │ ├── de │ │ │ └── asterisk.po │ │ ├── el │ │ │ └── asterisk.po │ │ ├── en │ │ │ └── asterisk.po │ │ ├── es │ │ │ └── asterisk.po │ │ ├── fr │ │ │ └── asterisk.po │ │ ├── he │ │ │ └── asterisk.po │ │ ├── hu │ │ │ └── asterisk.po │ │ ├── it │ │ │ └── asterisk.po │ │ ├── ja │ │ │ └── asterisk.po │ │ ├── ms │ │ │ └── asterisk.po │ │ ├── no │ │ │ └── asterisk.po │ │ ├── pl │ │ │ └── asterisk.po │ │ ├── pt-br │ │ │ └── asterisk.po │ │ ├── pt │ │ │ └── asterisk.po │ │ ├── ro │ │ │ └── asterisk.po │ │ ├── ru │ │ │ └── asterisk.po │ │ ├── sk │ │ │ └── asterisk.po │ │ ├── sv │ │ │ └── asterisk.po │ │ ├── templates │ │ │ └── asterisk.pot │ │ ├── tr │ │ │ └── asterisk.po │ │ ├── uk │ │ │ └── asterisk.po │ │ ├── vi │ │ │ └── asterisk.po │ │ ├── zh-cn │ │ │ └── asterisk.po │ │ └── zh-tw │ │ │ └── asterisk.po │ └── root │ │ └── etc │ │ ├── config │ │ └── asterisk │ │ └── uci-defaults │ │ └── 40_luci-asterisk ├── luci-app-attendedsysupgrade │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── attendedsysupgrade.lua │ │ └── view │ │ │ └── attendedsysupgrade.htm │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── 40_luci-attendedsysupgrade │ │ ├── usr │ │ └── share │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── attendedsysupgrade.json │ │ └── www │ │ └── luci-static │ │ └── resources │ │ └── attendedsysupgrade.js ├── luci-app-bcp38 │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── bcp38.lua │ │ └── model │ │ │ └── cbi │ │ │ └── bcp38.lua │ ├── po │ │ ├── ru │ │ │ └── bcp38.po │ │ ├── sv │ │ │ └── bcp38.po │ │ ├── templates │ │ │ └── bcp38.pot │ │ ├── zh-cn │ │ │ └── bcp38.po │ │ └── zh-tw │ │ │ └── bcp38.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 60_luci-bcp38 ├── luci-app-clamav │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── clamav.lua │ │ └── model │ │ │ └── cbi │ │ │ └── clamav.lua │ └── po │ │ ├── ja │ │ └── clamav.po │ │ ├── ru │ │ └── clamav.po │ │ ├── sv │ │ └── clamav.po │ │ ├── templates │ │ └── clamav.pot │ │ └── zh-cn │ │ └── clamav.po ├── luci-app-commands │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── commands.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── commands.lua │ │ └── view │ │ │ ├── commands.htm │ │ │ └── commands_public.htm │ └── po │ │ ├── ca │ │ └── commands.po │ │ ├── cs │ │ └── commands.po │ │ ├── de │ │ └── commands.po │ │ ├── el │ │ └── commands.po │ │ ├── en │ │ └── commands.po │ │ ├── es │ │ └── commands.po │ │ ├── fr │ │ └── commands.po │ │ ├── he │ │ └── commands.po │ │ ├── hu │ │ └── commands.po │ │ ├── it │ │ └── commands.po │ │ ├── ja │ │ └── commands.po │ │ ├── ms │ │ └── commands.po │ │ ├── no │ │ └── commands.po │ │ ├── pl │ │ └── commands.po │ │ ├── pt-br │ │ └── commands.po │ │ ├── pt │ │ └── commands.po │ │ ├── ro │ │ └── commands.po │ │ ├── ru │ │ └── commands.po │ │ ├── sk │ │ └── commands.po │ │ ├── sv │ │ └── commands.po │ │ ├── templates │ │ └── commands.pot │ │ ├── tr │ │ └── commands.po │ │ ├── uk │ │ └── commands.po │ │ ├── vi │ │ └── commands.po │ │ ├── zh-cn │ │ └── commands.po │ │ └── zh-tw │ │ └── commands.po ├── luci-app-coovachilli │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── coovachilli.lua │ │ └── model │ │ │ └── cbi │ │ │ ├── coovachilli.lua │ │ │ ├── coovachilli_auth.lua │ │ │ ├── coovachilli_network.lua │ │ │ └── coovachilli_radius.lua │ ├── po │ │ ├── ca │ │ │ └── coovachilli.po │ │ ├── cs │ │ │ └── coovachilli.po │ │ ├── de │ │ │ └── coovachilli.po │ │ ├── el │ │ │ └── coovachilli.po │ │ ├── en │ │ │ └── coovachilli.po │ │ ├── es │ │ │ └── coovachilli.po │ │ ├── fr │ │ │ └── coovachilli.po │ │ ├── he │ │ │ └── coovachilli.po │ │ ├── hu │ │ │ └── coovachilli.po │ │ ├── it │ │ │ └── coovachilli.po │ │ ├── ja │ │ │ └── coovachilli.po │ │ ├── ms │ │ │ └── coovachilli.po │ │ ├── no │ │ │ └── coovachilli.po │ │ ├── pl │ │ │ └── coovachilli.po │ │ ├── pt-br │ │ │ └── coovachilli.po │ │ ├── pt │ │ │ └── coovachilli.po │ │ ├── ro │ │ │ └── coovachilli.po │ │ ├── ru │ │ │ └── coovachilli.po │ │ ├── sk │ │ │ └── coovachilli.po │ │ ├── sv │ │ │ └── coovachilli.po │ │ ├── templates │ │ │ └── coovachilli.pot │ │ ├── tr │ │ │ └── coovachilli.po │ │ ├── uk │ │ │ └── coovachilli.po │ │ ├── vi │ │ │ └── coovachilli.po │ │ ├── zh-cn │ │ │ └── coovachilli.po │ │ └── zh-tw │ │ │ └── coovachilli.po │ └── root │ │ └── etc │ │ └── config │ │ └── coovachilli ├── luci-app-cshark │ ├── Makefile │ └── luasrc │ │ ├── controller │ │ └── cshark.lua │ │ ├── model │ │ └── cbi │ │ │ └── admin_network │ │ │ └── cshark.lua │ │ └── view │ │ └── cshark.htm ├── luci-app-ddns │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── ddns.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── ddns │ │ │ │ ├── detail.lua │ │ │ │ ├── global.lua │ │ │ │ ├── hints.lua │ │ │ │ └── overview.lua │ │ ├── tools │ │ │ └── ddns.lua │ │ └── view │ │ │ ├── admin_status │ │ │ └── index │ │ │ │ └── ddns.htm │ │ │ └── ddns │ │ │ ├── detail_logview.htm │ │ │ ├── detail_lvalue.htm │ │ │ ├── detail_value.htm │ │ │ ├── global_value.htm │ │ │ ├── overview_doubleline.htm │ │ │ ├── overview_enabled.htm │ │ │ ├── overview_startstop.htm │ │ │ ├── overview_status.htm │ │ │ └── system_status.htm │ ├── po │ │ ├── ca │ │ │ └── ddns.po │ │ ├── cs │ │ │ └── ddns.po │ │ ├── de │ │ │ └── ddns.po │ │ ├── el │ │ │ └── ddns.po │ │ ├── es │ │ │ └── ddns.po │ │ ├── fr │ │ │ └── ddns.po │ │ ├── he │ │ │ └── ddns.po │ │ ├── hu │ │ │ └── ddns.po │ │ ├── it │ │ │ └── ddns.po │ │ ├── ja │ │ │ └── ddns.po │ │ ├── no │ │ │ └── ddns.po │ │ ├── pl │ │ │ └── ddns.po │ │ ├── pt-br │ │ │ └── ddns.po │ │ ├── pt │ │ │ └── ddns.po │ │ ├── ro │ │ │ └── ddns.po │ │ ├── ru │ │ │ └── ddns.po │ │ ├── sv │ │ │ └── ddns.po │ │ ├── templates │ │ │ └── ddns.pot │ │ ├── tr │ │ │ └── ddns.po │ │ ├── uk │ │ │ └── ddns.po │ │ ├── vi │ │ │ └── ddns.po │ │ ├── zh-cn │ │ │ └── ddns.po │ │ └── zh-tw │ │ │ └── ddns.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-ddns ├── luci-app-diag-core │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── luci_diag.lua │ │ └── view │ │ │ └── diag │ │ │ ├── index.htm │ │ │ └── network_config_index.htm │ └── po │ │ ├── ca │ │ └── diag_core.po │ │ ├── cs │ │ └── diag_core.po │ │ ├── de │ │ └── diag_core.po │ │ ├── el │ │ └── diag_core.po │ │ ├── en │ │ └── diag_core.po │ │ ├── es │ │ └── diag_core.po │ │ ├── fr │ │ └── diag_core.po │ │ ├── he │ │ └── diag_core.po │ │ ├── hu │ │ └── diag_core.po │ │ ├── it │ │ └── diag_core.po │ │ ├── ja │ │ └── diag_core.po │ │ ├── ms │ │ └── diag_core.po │ │ ├── no │ │ └── diag_core.po │ │ ├── pl │ │ └── diag_core.po │ │ ├── pt-br │ │ └── diag_core.po │ │ ├── pt │ │ └── diag_core.po │ │ ├── ro │ │ └── diag_core.po │ │ ├── ru │ │ └── diag_core.po │ │ ├── sk │ │ └── diag_core.po │ │ ├── sv │ │ └── diag_core.po │ │ ├── templates │ │ └── diag_core.pot │ │ ├── tr │ │ └── diag_core.po │ │ ├── uk │ │ └── diag_core.po │ │ ├── vi │ │ └── diag_core.po │ │ ├── zh-cn │ │ └── diag_core.po │ │ └── zh-tw │ │ └── diag_core.po ├── luci-app-dns2socks │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── dns2socks.lua │ │ └── model │ │ │ └── cbi │ │ │ └── dns2socks.lua │ ├── po │ │ └── zh-cn │ │ │ └── dns2socks.po │ └── root │ │ └── etc │ │ ├── config │ │ └── dns2socks │ │ ├── init.d │ │ └── dns2socks │ │ └── uci-defaults │ │ └── luci-dns2socks ├── luci-app-dnscrypt-proxy │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── dnscrypt-proxy.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── dnscrypt-proxy │ │ │ │ ├── cfg_dnsmasq_tab.lua │ │ │ │ ├── cfg_resolvcrypt_tab.lua │ │ │ │ ├── configuration_tab.lua │ │ │ │ └── overview_tab.lua │ │ └── view │ │ │ └── dnscrypt-proxy │ │ │ ├── config_css.htm │ │ │ ├── logread.htm │ │ │ ├── res_options.htm │ │ │ └── view_reslist.htm │ ├── po │ │ ├── ja │ │ │ └── dnscrypt-proxy.po │ │ ├── ru │ │ │ └── dnscrypt-proxy.po │ │ └── templates │ │ │ └── dnscrypt-proxy.pot │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 60_luci-dnscrypt-proxy ├── luci-app-dump1090 │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── dump1090.lua │ │ └── model │ │ │ └── cbi │ │ │ └── dump1090.lua │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-dump1090 ├── luci-app-dynapoint │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── dynapoint.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── dynapoint.lua │ │ └── view │ │ │ └── dynapoint │ │ │ ├── cbi_checkbox.htm │ │ │ └── cbi_color.htm │ ├── po │ │ ├── de │ │ │ └── dynapoint.po │ │ ├── ja │ │ │ └── dynapoint.po │ │ ├── pt-br │ │ │ └── dynapoint.po │ │ ├── ru │ │ │ └── dynapoint.po │ │ └── templates │ │ │ └── dynapoint.pot │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-dynapoint ├── luci-app-e2guardian │ ├── Makefile │ └── luasrc │ │ ├── controller │ │ └── e2guardian.lua │ │ └── model │ │ └── cbi │ │ └── e2guardian.lua ├── luci-app-firewall │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── firewall.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── firewall │ │ │ │ ├── custom.lua │ │ │ │ ├── forward-details.lua │ │ │ │ ├── forwards.lua │ │ │ │ ├── rule-details.lua │ │ │ │ ├── rules.lua │ │ │ │ ├── zone-details.lua │ │ │ │ └── zones.lua │ │ ├── tools │ │ │ └── firewall.lua │ │ └── view │ │ │ └── firewall │ │ │ ├── cbi_addforward.htm │ │ │ ├── cbi_addrule.htm │ │ │ └── cbi_addsnat.htm │ └── po │ │ ├── ca │ │ └── firewall.po │ │ ├── cs │ │ └── firewall.po │ │ ├── de │ │ └── firewall.po │ │ ├── el │ │ └── firewall.po │ │ ├── en │ │ └── firewall.po │ │ ├── es │ │ └── firewall.po │ │ ├── fr │ │ └── firewall.po │ │ ├── he │ │ └── firewall.po │ │ ├── hu │ │ └── firewall.po │ │ ├── it │ │ └── firewall.po │ │ ├── ja │ │ └── firewall.po │ │ ├── ko │ │ └── firewall.po │ │ ├── ms │ │ └── firewall.po │ │ ├── no │ │ └── firewall.po │ │ ├── pl │ │ └── firewall.po │ │ ├── pt-br │ │ └── firewall.po │ │ ├── pt │ │ └── firewall.po │ │ ├── ro │ │ └── firewall.po │ │ ├── ru │ │ └── firewall.po │ │ ├── sk │ │ └── firewall.po │ │ ├── sv │ │ └── firewall.po │ │ ├── templates │ │ └── firewall.pot │ │ ├── tr │ │ └── firewall.po │ │ ├── uk │ │ └── firewall.po │ │ ├── vi │ │ └── firewall.po │ │ ├── zh-cn │ │ └── firewall.po │ │ └── zh-tw │ │ └── firewall.po ├── luci-app-freifunk-diagnostics │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── freifunk │ │ │ │ └── diag.lua │ │ └── view │ │ │ └── freifunk │ │ │ └── diagnostics.htm │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-freifunk-diagnostics ├── luci-app-freifunk-policyrouting │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── freifunk │ │ │ │ └── policy-routing.lua │ │ └── model │ │ │ └── cbi │ │ │ └── freifunk │ │ │ └── policyrouting.lua │ └── po │ │ ├── ca │ │ └── freifunk-policyrouting.po │ │ ├── cs │ │ └── freifunk-policyrouting.po │ │ ├── de │ │ └── freifunk-policyrouting.po │ │ ├── el │ │ └── freifunk-policyrouting.po │ │ ├── en │ │ └── freifunk-policyrouting.po │ │ ├── es │ │ └── freifunk-policyrouting.po │ │ ├── fr │ │ └── freifunk-policyrouting.po │ │ ├── he │ │ └── freifunk-policyrouting.po │ │ ├── hu │ │ └── freifunk-policyrouting.po │ │ ├── it │ │ └── freifunk-policyrouting.po │ │ ├── ja │ │ └── freifunk-policyrouting.po │ │ ├── ms │ │ └── freifunk-policyrouting.po │ │ ├── no │ │ └── freifunk-policyrouting.po │ │ ├── pl │ │ └── freifunk-policyrouting.po │ │ ├── pt-br │ │ └── freifunk-policyrouting.po │ │ ├── pt │ │ └── freifunk-policyrouting.po │ │ ├── ro │ │ └── freifunk-policyrouting.po │ │ ├── ru │ │ └── freifunk-policyrouting.po │ │ ├── sk │ │ └── freifunk-policyrouting.po │ │ ├── sv │ │ └── freifunk-policyrouting.po │ │ ├── templates │ │ └── freifunk-policyrouting.pot │ │ ├── tr │ │ └── freifunk-policyrouting.po │ │ ├── uk │ │ └── freifunk-policyrouting.po │ │ ├── vi │ │ └── freifunk-policyrouting.po │ │ ├── zh-cn │ │ └── freifunk-policyrouting.po │ │ └── zh-tw │ │ └── freifunk-policyrouting.po ├── luci-app-freifunk-widgets │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── freifunk │ │ │ │ └── widgets.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── freifunk │ │ │ │ └── widgets │ │ │ │ ├── heightwidth.lua │ │ │ │ ├── html.lua │ │ │ │ ├── iframe.lua │ │ │ │ ├── rssfeed.lua │ │ │ │ ├── search.lua │ │ │ │ ├── widget.lua │ │ │ │ └── widgets_overview.lua │ │ └── view │ │ │ └── freifunk │ │ │ └── widgets │ │ │ ├── clear │ │ │ └── main.htm │ │ │ ├── html │ │ │ └── main.htm │ │ │ ├── iframe │ │ │ └── main.htm │ │ │ ├── rssfeed │ │ │ └── main.htm │ │ │ └── search │ │ │ └── main.htm │ └── root │ │ ├── etc │ │ └── config │ │ │ └── freifunk-widgets │ │ └── lib │ │ └── upgrade │ │ └── keep.d │ │ └── freifunk-widgets ├── luci-app-fwknopd │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── fwknopd.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── fwknopd.lua │ │ └── view │ │ │ └── fwknopd-qr.htm │ ├── po │ │ ├── en │ │ │ └── fwknopd.po │ │ ├── pt-br │ │ │ └── fwknopd.po │ │ ├── ru │ │ │ └── fwknopd.po │ │ └── templates │ │ │ └── fwknopd.pot │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── 40_luci-fwknopd │ │ └── usr │ │ └── sbin │ │ └── gen-qr.sh ├── luci-app-hd-idle │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── hd_idle.lua │ │ └── model │ │ │ └── cbi │ │ │ └── hd_idle.lua │ ├── po │ │ ├── ca │ │ │ └── hd_idle.po │ │ ├── cs │ │ │ └── hd_idle.po │ │ ├── de │ │ │ └── hd_idle.po │ │ ├── el │ │ │ └── hd_idle.po │ │ ├── en │ │ │ └── hd_idle.po │ │ ├── es │ │ │ └── hd_idle.po │ │ ├── fr │ │ │ └── hd_idle.po │ │ ├── he │ │ │ └── hd_idle.po │ │ ├── hu │ │ │ └── hd_idle.po │ │ ├── it │ │ │ └── hd_idle.po │ │ ├── ja │ │ │ └── hd_idle.po │ │ ├── ms │ │ │ └── hd_idle.po │ │ ├── no │ │ │ └── hd_idle.po │ │ ├── pl │ │ │ └── hd_idle.po │ │ ├── pt-br │ │ │ └── hd_idle.po │ │ ├── pt │ │ │ └── hd_idle.po │ │ ├── ro │ │ │ └── hd_idle.po │ │ ├── ru │ │ │ └── hd_idle.po │ │ ├── sk │ │ │ └── hd_idle.po │ │ ├── sv │ │ │ └── hd_idle.po │ │ ├── templates │ │ │ └── hd_idle.pot │ │ ├── tr │ │ │ └── hd_idle.po │ │ ├── uk │ │ │ └── hd_idle.po │ │ ├── vi │ │ │ └── hd_idle.po │ │ ├── zh-cn │ │ │ └── hd_idle.po │ │ └── zh-tw │ │ │ └── hd_idle.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-hd_idle ├── luci-app-ltqtapi │ ├── Makefile │ └── luasrc │ │ ├── controller │ │ └── ltqtapi.lua │ │ ├── model │ │ └── cbi │ │ │ └── luci_ltqtapi │ │ │ ├── account.lua │ │ │ └── contact.lua │ │ └── view │ │ ├── admin_status │ │ └── index │ │ │ └── telephony.htm │ │ └── telephony_status.htm ├── luci-app-lxc │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── cbi │ │ │ ├── green.gif │ │ │ ├── purple.gif │ │ │ └── red.gif │ ├── luasrc │ │ ├── controller │ │ │ └── lxc.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── lxc.lua │ │ └── view │ │ │ └── lxc.htm │ └── root │ │ └── etc │ │ └── config │ │ └── lxc ├── luci-app-meshwizard │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── meshwizard.lua │ │ └── model │ │ │ └── cbi │ │ │ └── freifunk │ │ │ └── meshwizard.lua │ ├── po │ │ ├── ca │ │ │ └── meshwizard.po │ │ ├── cs │ │ │ └── meshwizard.po │ │ ├── de │ │ │ └── meshwizard.po │ │ ├── el │ │ │ └── meshwizard.po │ │ ├── en │ │ │ └── meshwizard.po │ │ ├── es │ │ │ └── meshwizard.po │ │ ├── fr │ │ │ └── meshwizard.po │ │ ├── he │ │ │ └── meshwizard.po │ │ ├── hu │ │ │ └── meshwizard.po │ │ ├── it │ │ │ └── meshwizard.po │ │ ├── ja │ │ │ └── meshwizard.po │ │ ├── ms │ │ │ └── meshwizard.po │ │ ├── no │ │ │ └── meshwizard.po │ │ ├── pl │ │ │ └── meshwizard.po │ │ ├── pt-br │ │ │ └── meshwizard.po │ │ ├── pt │ │ │ └── meshwizard.po │ │ ├── ro │ │ │ └── meshwizard.po │ │ ├── ru │ │ │ └── meshwizard.po │ │ ├── sk │ │ │ └── meshwizard.po │ │ ├── sv │ │ │ └── meshwizard.po │ │ ├── templates │ │ │ └── meshwizard.pot │ │ ├── tr │ │ │ └── meshwizard.po │ │ ├── uk │ │ │ └── meshwizard.po │ │ ├── vi │ │ │ └── meshwizard.po │ │ ├── zh-cn │ │ │ └── meshwizard.po │ │ └── zh-tw │ │ │ └── meshwizard.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── meshwizard ├── luci-app-minidlna │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── minidlna.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── minidlna.lua │ │ └── view │ │ │ ├── admin_status │ │ │ └── index │ │ │ │ └── minidlna.htm │ │ │ └── minidlna_status.htm │ ├── po │ │ ├── ca │ │ │ └── minidlna.po │ │ ├── cs │ │ │ └── minidlna.po │ │ ├── de │ │ │ └── minidlna.po │ │ ├── el │ │ │ └── minidlna.po │ │ ├── en │ │ │ └── minidlna.po │ │ ├── es │ │ │ └── minidlna.po │ │ ├── fr │ │ │ └── minidlna.po │ │ ├── he │ │ │ └── minidlna.po │ │ ├── hu │ │ │ └── minidlna.po │ │ ├── it │ │ │ └── minidlna.po │ │ ├── ja │ │ │ └── minidlna.po │ │ ├── ms │ │ │ └── minidlna.po │ │ ├── no │ │ │ └── minidlna.po │ │ ├── pl │ │ │ └── minidlna.po │ │ ├── pt-br │ │ │ └── minidlna.po │ │ ├── pt │ │ │ └── minidlna.po │ │ ├── ro │ │ │ └── minidlna.po │ │ ├── ru │ │ │ └── minidlna.po │ │ ├── sk │ │ │ └── minidlna.po │ │ ├── sv │ │ │ └── minidlna.po │ │ ├── templates │ │ │ └── minidlna.pot │ │ ├── tr │ │ │ └── minidlna.po │ │ ├── uk │ │ │ └── minidlna.po │ │ ├── vi │ │ │ └── minidlna.po │ │ ├── zh-cn │ │ │ └── minidlna.po │ │ └── zh-tw │ │ │ └── minidlna.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-minidlna ├── luci-app-mjpg-streamer │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── mjpg-streamer.lua │ │ └── model │ │ │ └── cbi │ │ │ └── mjpg-streamer.lua │ ├── po │ │ ├── ja │ │ │ └── mjpg-streamer.po │ │ ├── pt-br │ │ │ └── mjpg-streamer.po │ │ ├── ru │ │ │ └── mjpg-streamer.po │ │ ├── templates │ │ │ └── mjpg-streamer.pot │ │ └── zh-cn │ │ │ └── mjpg-streamer.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-mjpg-streamer ├── luci-app-mwan3 │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── mwan3.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── mwan │ │ │ │ ├── globalsconfig.lua │ │ │ │ ├── interface.lua │ │ │ │ ├── interfaceconfig.lua │ │ │ │ ├── member.lua │ │ │ │ ├── memberconfig.lua │ │ │ │ ├── notify.lua │ │ │ │ ├── policy.lua │ │ │ │ ├── policyconfig.lua │ │ │ │ ├── rule.lua │ │ │ │ └── ruleconfig.lua │ │ └── view │ │ │ ├── admin_status │ │ │ └── index │ │ │ │ └── mwan.htm │ │ │ └── mwan │ │ │ ├── overview_status_interface.htm │ │ │ ├── status_detail.htm │ │ │ ├── status_diagnostics.htm │ │ │ ├── status_interface.htm │ │ │ └── status_troubleshooting.htm │ ├── po │ │ ├── ja │ │ │ └── mwan3.po │ │ ├── ru │ │ │ └── mwan3.po │ │ ├── templates │ │ │ └── mwan3.pot │ │ ├── zh-cn │ │ │ └── mwan3.po │ │ └── zh-tw │ │ │ └── mwan3.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 60_luci-mwan3 ├── luci-app-n2n_v2 │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── n2n_v2.lua │ │ └── model │ │ │ └── cbi │ │ │ └── n2n_v2.lua │ ├── po │ │ └── zh-cn │ │ │ └── n2n_v2.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── luci-n2n_v2 ├── luci-app-ngrokc │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── ngrokc.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── ngrokc │ │ │ │ ├── detail.lua │ │ │ │ └── overview.lua │ │ └── view │ │ │ └── ngrokc │ │ │ ├── ngrokc_script.htm │ │ │ ├── overview_enabled.htm │ │ │ └── overview_value.htm │ ├── po │ │ └── zh-cn │ │ │ └── ngrokc.po │ └── root │ │ └── etc │ │ ├── config │ │ └── ngrokc │ │ ├── init.d │ │ └── ngrokc │ │ └── uci-defaults │ │ └── luci-app-ngrokc ├── luci-app-nlbwmon │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── nlbw.chart.min.js │ ├── luasrc │ │ ├── controller │ │ │ └── nlbw.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── nlbw │ │ │ │ └── config.lua │ │ └── view │ │ │ └── nlbw │ │ │ ├── backup.htm │ │ │ └── display.htm │ ├── po │ │ ├── ja │ │ │ └── nlbwmon.po │ │ ├── ru │ │ │ └── nlbwmon.po │ │ ├── templates │ │ │ └── nlbwmon.pot │ │ └── zh-cn │ │ │ └── nlbwmon.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-nlbwmon ├── luci-app-noddos │ ├── Makefile │ ├── htdocs │ │ └── cgi-bin │ │ │ └── clientdetails │ ├── luasrc │ │ ├── controller │ │ │ └── noddos.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── noddos.lua │ │ └── view │ │ │ └── noddos │ │ │ └── clients.htm │ ├── po │ │ ├── ja │ │ │ └── noddos.po │ │ ├── ru │ │ │ └── noddos.po │ │ └── templates │ │ │ └── noddos.pot │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-noddos ├── luci-app-ntpc │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── ntpc.lua │ │ └── model │ │ │ └── cbi │ │ │ └── ntpc │ │ │ ├── ntpc.lua │ │ │ └── ntpcmini.lua │ └── po │ │ ├── ca │ │ └── ntpc.po │ │ ├── cs │ │ └── ntpc.po │ │ ├── de │ │ └── ntpc.po │ │ ├── el │ │ └── ntpc.po │ │ ├── en │ │ └── ntpc.po │ │ ├── es │ │ └── ntpc.po │ │ ├── fr │ │ └── ntpc.po │ │ ├── he │ │ └── ntpc.po │ │ ├── hu │ │ └── ntpc.po │ │ ├── it │ │ └── ntpc.po │ │ ├── ja │ │ └── ntpc.po │ │ ├── ms │ │ └── ntpc.po │ │ ├── no │ │ └── ntpc.po │ │ ├── pl │ │ └── ntpc.po │ │ ├── pt-br │ │ └── ntpc.po │ │ ├── pt │ │ └── ntpc.po │ │ ├── ro │ │ └── ntpc.po │ │ ├── ru │ │ └── ntpc.po │ │ ├── sk │ │ └── ntpc.po │ │ ├── sv │ │ └── ntpc.po │ │ ├── templates │ │ └── ntpc.pot │ │ ├── tr │ │ └── ntpc.po │ │ ├── uk │ │ └── ntpc.po │ │ ├── vi │ │ └── ntpc.po │ │ ├── zh-cn │ │ └── ntpc.po │ │ └── zh-tw │ │ └── ntpc.po ├── luci-app-ocserv │ ├── Makefile │ └── luasrc │ │ ├── controller │ │ └── ocserv.lua │ │ ├── model │ │ └── cbi │ │ │ └── ocserv │ │ │ ├── main.lua │ │ │ ├── user-config.lua │ │ │ └── users.lua │ │ └── view │ │ ├── admin_status │ │ └── index │ │ │ └── ocserv.htm │ │ └── ocserv_status.htm ├── luci-app-olsr-services │ ├── Makefile │ └── luasrc │ │ ├── controller │ │ └── services.lua │ │ └── view │ │ └── freifunk-services │ │ └── services.htm ├── luci-app-olsr-viz │ ├── Makefile │ ├── htdocs │ │ ├── cgi-bin │ │ │ ├── olsr-viz.sh │ │ │ └── vizdata.sh │ │ └── luci-static │ │ │ └── resources │ │ │ ├── olsr-viz.js │ │ │ └── olsr-viz │ │ │ ├── dot_down.gif │ │ │ ├── dot_good.gif │ │ │ ├── dot_ok.gif │ │ │ ├── dot_weak.gif │ │ │ ├── node-hna-mini.gif │ │ │ └── node-mini.gif │ └── luasrc │ │ ├── controller │ │ └── olsr-viz.lua │ │ └── view │ │ └── olsr-viz │ │ └── olsr-viz.htm ├── luci-app-olsr │ ├── Makefile │ ├── htdocs │ │ ├── cgi-bin-nodes.html │ │ └── cgi-bin-status.html │ ├── luasrc │ │ ├── controller │ │ │ ├── olsr.lua │ │ │ ├── olsr4.lua │ │ │ └── olsr6.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── olsr │ │ │ │ ├── olsrd.lua │ │ │ │ ├── olsrd6.lua │ │ │ │ ├── olsrddisplay.lua │ │ │ │ ├── olsrdhna.lua │ │ │ │ ├── olsrdhna6.lua │ │ │ │ ├── olsrdiface.lua │ │ │ │ ├── olsrdiface6.lua │ │ │ │ ├── olsrdplugins.lua │ │ │ │ └── olsrdplugins6.lua │ │ ├── tools │ │ │ └── olsr.lua │ │ └── view │ │ │ └── status-olsr │ │ │ ├── common_js.htm │ │ │ ├── error_olsr.htm │ │ │ ├── hna.htm │ │ │ ├── interfaces.htm │ │ │ ├── legend.htm │ │ │ ├── mid.htm │ │ │ ├── neighbors.htm │ │ │ ├── overview.htm │ │ │ ├── routes.htm │ │ │ ├── smartgw.htm │ │ │ └── topology.htm │ ├── po │ │ ├── ca │ │ │ └── olsr.po │ │ ├── cs │ │ │ └── olsr.po │ │ ├── de │ │ │ └── olsr.po │ │ ├── el │ │ │ └── olsr.po │ │ ├── en │ │ │ └── olsr.po │ │ ├── es │ │ │ └── olsr.po │ │ ├── fr │ │ │ └── olsr.po │ │ ├── he │ │ │ └── olsr.po │ │ ├── hu │ │ │ └── olsr.po │ │ ├── it │ │ │ └── olsr.po │ │ ├── ja │ │ │ └── olsr.po │ │ ├── ms │ │ │ └── olsr.po │ │ ├── no │ │ │ └── olsr.po │ │ ├── pl │ │ │ └── olsr.po │ │ ├── pt-br │ │ │ └── olsr.po │ │ ├── pt │ │ │ └── olsr.po │ │ ├── ro │ │ │ └── olsr.po │ │ ├── ru │ │ │ └── olsr.po │ │ ├── sk │ │ │ └── olsr.po │ │ ├── sv │ │ │ └── olsr.po │ │ ├── templates │ │ │ └── olsr.pot │ │ ├── tr │ │ │ └── olsr.po │ │ ├── uk │ │ │ └── olsr.po │ │ ├── vi │ │ │ └── olsr.po │ │ ├── zh-cn │ │ │ └── olsr.po │ │ └── zh-tw │ │ │ └── olsr.po │ └── root │ │ └── etc │ │ ├── config │ │ └── luci_olsr │ │ └── uci-defaults │ │ └── 40_luci-olsr ├── luci-app-openvpn │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── openvpn.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ ├── openvpn-advanced.lua │ │ │ │ ├── openvpn-basic.lua │ │ │ │ └── openvpn.lua │ │ └── view │ │ │ └── openvpn │ │ │ ├── cbi-select-input-add.htm │ │ │ └── pageswitch.htm │ ├── po │ │ ├── ca │ │ │ └── openvpn.po │ │ ├── cs │ │ │ └── openvpn.po │ │ ├── de │ │ │ └── openvpn.po │ │ ├── el │ │ │ └── openvpn.po │ │ ├── en │ │ │ └── openvpn.po │ │ ├── es │ │ │ └── openvpn.po │ │ ├── fr │ │ │ └── openvpn.po │ │ ├── he │ │ │ └── openvpn.po │ │ ├── hu │ │ │ └── openvpn.po │ │ ├── it │ │ │ └── openvpn.po │ │ ├── ja │ │ │ └── openvpn.po │ │ ├── ms │ │ │ └── openvpn.po │ │ ├── no │ │ │ └── openvpn.po │ │ ├── pl │ │ │ └── openvpn.po │ │ ├── pt-br │ │ │ └── openvpn.po │ │ ├── pt │ │ │ └── openvpn.po │ │ ├── ro │ │ │ └── openvpn.po │ │ ├── ru │ │ │ └── openvpn.po │ │ ├── sk │ │ │ └── openvpn.po │ │ ├── sv │ │ │ └── openvpn.po │ │ ├── templates │ │ │ └── openvpn.pot │ │ ├── tr │ │ │ └── openvpn.po │ │ ├── uk │ │ │ └── openvpn.po │ │ ├── vi │ │ │ └── openvpn.po │ │ ├── zh-cn │ │ │ └── openvpn.po │ │ └── zh-tw │ │ │ └── openvpn.po │ └── root │ │ └── etc │ │ └── config │ │ └── openvpn_recipes ├── luci-app-p910nd │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── p910nd.lua │ │ └── model │ │ │ └── cbi │ │ │ └── p910nd.lua │ ├── po │ │ ├── ca │ │ │ └── p910nd.po │ │ ├── cs │ │ │ └── p910nd.po │ │ ├── de │ │ │ └── p910nd.po │ │ ├── el │ │ │ └── p910nd.po │ │ ├── en │ │ │ └── p910nd.po │ │ ├── es │ │ │ └── p910nd.po │ │ ├── fr │ │ │ └── p910nd.po │ │ ├── he │ │ │ └── p910nd.po │ │ ├── hu │ │ │ └── p910nd.po │ │ ├── it │ │ │ └── p910nd.po │ │ ├── ja │ │ │ └── p910nd.po │ │ ├── ms │ │ │ └── p910nd.po │ │ ├── no │ │ │ └── p910nd.po │ │ ├── pl │ │ │ └── p910nd.po │ │ ├── pt-br │ │ │ └── p910nd.po │ │ ├── pt │ │ │ └── p910nd.po │ │ ├── ro │ │ │ └── p910nd.po │ │ ├── ru │ │ │ └── p910nd.po │ │ ├── sk │ │ │ └── p910nd.po │ │ ├── sv │ │ │ └── p910nd.po │ │ ├── templates │ │ │ └── p910nd.pot │ │ ├── tr │ │ │ └── p910nd.po │ │ ├── uk │ │ │ └── p910nd.po │ │ ├── vi │ │ │ └── p910nd.po │ │ ├── zh-cn │ │ │ └── p910nd.po │ │ └── zh-tw │ │ │ └── p910nd.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-p910nd ├── luci-app-polipo │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── polipo.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── polipo.lua │ │ └── view │ │ │ └── polipo_status.htm │ ├── po │ │ ├── ca │ │ │ └── polipo.po │ │ ├── cs │ │ │ └── polipo.po │ │ ├── de │ │ │ └── polipo.po │ │ ├── el │ │ │ └── polipo.po │ │ ├── en │ │ │ └── polipo.po │ │ ├── es │ │ │ └── polipo.po │ │ ├── fr │ │ │ └── polipo.po │ │ ├── he │ │ │ └── polipo.po │ │ ├── hu │ │ │ └── polipo.po │ │ ├── it │ │ │ └── polipo.po │ │ ├── ja │ │ │ └── polipo.po │ │ ├── ms │ │ │ └── polipo.po │ │ ├── no │ │ │ └── polipo.po │ │ ├── pl │ │ │ └── polipo.po │ │ ├── pt-br │ │ │ └── polipo.po │ │ ├── pt │ │ │ └── polipo.po │ │ ├── ro │ │ │ └── polipo.po │ │ ├── ru │ │ │ └── polipo.po │ │ ├── sk │ │ │ └── polipo.po │ │ ├── sv │ │ │ └── polipo.po │ │ ├── templates │ │ │ └── polipo.pot │ │ ├── tr │ │ │ └── polipo.po │ │ ├── uk │ │ │ └── polipo.po │ │ ├── vi │ │ │ └── polipo.po │ │ ├── zh-cn │ │ │ └── polipo.po │ │ └── zh-tw │ │ │ └── polipo.po │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── 40_luci-polipo │ │ └── usr │ │ └── sbin │ │ └── polipo_purge ├── luci-app-privoxy │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── privoxy.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── privoxy.lua │ │ └── view │ │ │ └── privoxy │ │ │ ├── detail_logview.htm │ │ │ └── detail_startstop.htm │ ├── po │ │ ├── de │ │ │ └── privoxy.po │ │ ├── pt-br │ │ │ └── privoxy.po │ │ ├── ru │ │ │ └── privoxy.po │ │ ├── sv │ │ │ └── privoxy.po │ │ ├── templates │ │ │ └── privoxy.pot │ │ └── zh-cn │ │ │ └── privoxy.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-privoxy ├── luci-app-qos-guoguo │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── qos_guoguo.lua │ │ └── model │ │ │ └── cbi │ │ │ └── qos_guoguo │ │ │ ├── download.lua │ │ │ ├── general.lua │ │ │ └── upload.lua │ ├── po │ │ └── zh-cn │ │ │ └── qos_guoguo.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── luci-qos_guoguo ├── luci-app-qos │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── qos.lua │ │ └── model │ │ │ └── cbi │ │ │ └── qos │ │ │ └── qos.lua │ └── po │ │ ├── ca │ │ └── qos.po │ │ ├── cs │ │ └── qos.po │ │ ├── de │ │ └── qos.po │ │ ├── el │ │ └── qos.po │ │ ├── en │ │ └── qos.po │ │ ├── es │ │ └── qos.po │ │ ├── fr │ │ └── qos.po │ │ ├── he │ │ └── qos.po │ │ ├── hu │ │ └── qos.po │ │ ├── it │ │ └── qos.po │ │ ├── ja │ │ └── qos.po │ │ ├── ms │ │ └── qos.po │ │ ├── no │ │ └── qos.po │ │ ├── pl │ │ └── qos.po │ │ ├── pt-br │ │ └── qos.po │ │ ├── pt │ │ └── qos.po │ │ ├── ro │ │ └── qos.po │ │ ├── ru │ │ └── qos.po │ │ ├── sk │ │ └── qos.po │ │ ├── sv │ │ └── qos.po │ │ ├── templates │ │ └── qos.pot │ │ ├── tr │ │ └── qos.po │ │ ├── uk │ │ └── qos.po │ │ ├── vi │ │ └── qos.po │ │ ├── zh-cn │ │ └── qos.po │ │ └── zh-tw │ │ └── qos.po ├── luci-app-radicale │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── radicale.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── radicale.lua │ │ └── view │ │ │ └── radicale │ │ │ ├── btn_startstop.htm │ │ │ └── tabmap_nsections.htm │ ├── po │ │ ├── de │ │ │ └── radicale.po │ │ ├── pt-br │ │ │ └── radicale.po │ │ ├── ru │ │ │ └── radicale.po │ │ ├── sv │ │ │ └── radicale.po │ │ └── templates │ │ │ └── radicale.pot │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-radicale ├── luci-app-redsocks2 │ ├── Makefile │ ├── ipkg │ │ └── postinst │ ├── luasrc │ │ ├── controller │ │ │ └── redsocks2.lua │ │ └── model │ │ │ └── cbi │ │ │ └── redsocks2 │ │ │ ├── advanced.lua │ │ │ └── general.lua │ ├── po │ │ └── zh-cn │ │ │ └── redsocks2.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── redsocks2 │ │ ├── init.d │ │ │ └── redsocks2 │ │ └── uci-defaults │ │ │ └── luci-redsocks2 │ │ └── usr │ │ └── share │ │ └── redsocks2 │ │ └── firewall.include ├── luci-app-rp-pppoe-server │ ├── Makefile │ └── luasrc │ │ ├── controller │ │ └── rp-pppoe-server.lua │ │ └── model │ │ └── cbi │ │ └── rp-pppoe-server.lua ├── luci-app-samba │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── samba.lua │ │ └── model │ │ │ └── cbi │ │ │ └── samba.lua │ └── po │ │ ├── ca │ │ └── samba.po │ │ ├── cs │ │ └── samba.po │ │ ├── de │ │ └── samba.po │ │ ├── el │ │ └── samba.po │ │ ├── en │ │ └── samba.po │ │ ├── es │ │ └── samba.po │ │ ├── fr │ │ └── samba.po │ │ ├── he │ │ └── samba.po │ │ ├── hu │ │ └── samba.po │ │ ├── it │ │ └── samba.po │ │ ├── ja │ │ └── samba.po │ │ ├── ms │ │ └── samba.po │ │ ├── no │ │ └── samba.po │ │ ├── pl │ │ └── samba.po │ │ ├── pt-br │ │ └── samba.po │ │ ├── pt │ │ └── samba.po │ │ ├── ro │ │ └── samba.po │ │ ├── ru │ │ └── samba.po │ │ ├── sk │ │ └── samba.po │ │ ├── sv │ │ └── samba.po │ │ ├── templates │ │ └── samba.pot │ │ ├── tr │ │ └── samba.po │ │ ├── uk │ │ └── samba.po │ │ ├── vi │ │ └── samba.po │ │ ├── zh-cn │ │ └── samba.po │ │ └── zh-tw │ │ └── samba.po ├── luci-app-shadowsocks-libev │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── shadowsocks-libev.lua │ │ ├── model │ │ │ ├── cbi │ │ │ │ └── shadowsocks-libev │ │ │ │ │ ├── instance-details.lua │ │ │ │ │ ├── instances.lua │ │ │ │ │ ├── rules.lua │ │ │ │ │ └── servers.lua │ │ │ └── shadowsocks-libev.lua │ │ └── view │ │ │ └── shadowsocks-libev │ │ │ └── add_instance.htm │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-shadowsocks-libev ├── luci-app-shairplay │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── shairplay.lua │ │ └── model │ │ │ └── cbi │ │ │ └── shairplay.lua │ ├── po │ │ ├── ja │ │ │ └── shairplay.po │ │ ├── pt-br │ │ │ └── shairplay.po │ │ ├── ru │ │ │ └── shairplay.po │ │ └── templates │ │ │ └── shairplay.pot │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-shairplay ├── luci-app-siitwizard │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── siitwizard.lua │ │ └── model │ │ │ └── cbi │ │ │ └── siitwizard.lua │ └── root │ │ └── etc │ │ └── config │ │ └── siit ├── luci-app-simple-adblock │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── simpleadblock.lua │ │ └── model │ │ │ └── cbi │ │ │ └── simpleadblock.lua │ ├── po │ │ ├── ja │ │ │ └── simple-adblock.po │ │ ├── pt-br │ │ │ └── simple-adblock.po │ │ ├── pt │ │ │ └── simple-adblock.po │ │ ├── ru │ │ │ └── simple-adblock.po │ │ ├── sv │ │ │ └── simple-adblock.po │ │ └── templates │ │ │ └── simple-adblock.pot │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-simple-adblock ├── luci-app-splash │ ├── Makefile │ ├── README │ ├── htdocs │ │ ├── cgi-bin │ │ │ └── splash │ │ │ │ └── splash.sh │ │ └── luci │ │ │ └── splash │ │ │ └── index.html │ ├── luasrc │ │ ├── controller │ │ │ └── splash │ │ │ │ └── splash.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── splash │ │ │ │ ├── splash.lua │ │ │ │ └── splashtext.lua │ │ └── view │ │ │ ├── admin_status │ │ │ └── splash.htm │ │ │ ├── splash │ │ │ ├── blocked.htm │ │ │ └── splash.htm │ │ │ └── splash_splash │ │ │ ├── index.htm │ │ │ └── splash.htm │ ├── po │ │ ├── ca │ │ │ └── splash.po │ │ ├── cs │ │ │ └── splash.po │ │ ├── de │ │ │ └── splash.po │ │ ├── el │ │ │ └── splash.po │ │ ├── en │ │ │ └── splash.po │ │ ├── es │ │ │ └── splash.po │ │ ├── fr │ │ │ └── splash.po │ │ ├── he │ │ │ └── splash.po │ │ ├── hu │ │ │ └── splash.po │ │ ├── it │ │ │ └── splash.po │ │ ├── ja │ │ │ └── splash.po │ │ ├── ms │ │ │ └── splash.po │ │ ├── no │ │ │ └── splash.po │ │ ├── pl │ │ │ └── splash.po │ │ ├── pt-br │ │ │ └── splash.po │ │ ├── pt │ │ │ └── splash.po │ │ ├── ro │ │ │ └── splash.po │ │ ├── ru │ │ │ └── splash.po │ │ ├── sk │ │ │ └── splash.po │ │ ├── sv │ │ │ └── splash.po │ │ ├── templates │ │ │ └── splash.pot │ │ ├── tr │ │ │ └── splash.po │ │ ├── uk │ │ │ └── splash.po │ │ ├── vi │ │ │ └── splash.po │ │ ├── zh-cn │ │ │ └── splash.po │ │ └── zh-tw │ │ │ └── splash.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ ├── luci_splash │ │ │ └── luci_splash_leases │ │ ├── hotplug.d │ │ │ └── iface │ │ │ │ └── 25-splash │ │ └── init.d │ │ │ └── luci_splash │ │ └── usr │ │ └── sbin │ │ └── luci-splash ├── luci-app-squid │ ├── Makefile │ └── luasrc │ │ ├── controller │ │ └── squid.lua │ │ └── model │ │ └── cbi │ │ └── squid.lua ├── luci-app-statistics │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── luci_statistics │ │ │ │ └── luci_statistics.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── luci_statistics │ │ │ │ ├── apcups.lua │ │ │ │ ├── collectd.lua │ │ │ │ ├── conntrack.lua │ │ │ │ ├── contextswitch.lua │ │ │ │ ├── cpu.lua │ │ │ │ ├── cpufreq.lua │ │ │ │ ├── csv.lua │ │ │ │ ├── df.lua │ │ │ │ ├── disk.lua │ │ │ │ ├── dns.lua │ │ │ │ ├── email.lua │ │ │ │ ├── entropy.lua │ │ │ │ ├── exec.lua │ │ │ │ ├── interface.lua │ │ │ │ ├── iptables.lua │ │ │ │ ├── irq.lua │ │ │ │ ├── iwinfo.lua │ │ │ │ ├── load.lua │ │ │ │ ├── memory.lua │ │ │ │ ├── netlink.lua │ │ │ │ ├── network.lua │ │ │ │ ├── nut.lua │ │ │ │ ├── olsrd.lua │ │ │ │ ├── openvpn.lua │ │ │ │ ├── ping.lua │ │ │ │ ├── processes.lua │ │ │ │ ├── rrdtool.lua │ │ │ │ ├── sensors.lua │ │ │ │ ├── splash_leases.lua │ │ │ │ ├── tcpconns.lua │ │ │ │ ├── thermal.lua │ │ │ │ ├── unixsock.lua │ │ │ │ └── uptime.lua │ │ ├── statistics │ │ │ ├── datatree.lua │ │ │ ├── i18n.lua │ │ │ ├── rrdtool.lua │ │ │ └── rrdtool │ │ │ │ ├── colors.lua │ │ │ │ └── definitions │ │ │ │ ├── apcups.lua │ │ │ │ ├── conntrack.lua │ │ │ │ ├── contextswitch.lua │ │ │ │ ├── cpu.lua │ │ │ │ ├── cpufreq.lua │ │ │ │ ├── df.lua │ │ │ │ ├── disk.lua │ │ │ │ ├── dns.lua │ │ │ │ ├── entropy.lua │ │ │ │ ├── interface.lua │ │ │ │ ├── iptables.lua │ │ │ │ ├── irq.lua │ │ │ │ ├── iwinfo.lua │ │ │ │ ├── load.lua │ │ │ │ ├── memory.lua │ │ │ │ ├── netlink.lua │ │ │ │ ├── nut.lua │ │ │ │ ├── olsrd.lua │ │ │ │ ├── openvpn.lua │ │ │ │ ├── ping.lua │ │ │ │ ├── processes.lua │ │ │ │ ├── sensors.lua │ │ │ │ ├── splash_leases.lua │ │ │ │ ├── tcpconns.lua │ │ │ │ ├── thermal.lua │ │ │ │ └── uptime.lua │ │ └── view │ │ │ ├── admin_statistics │ │ │ └── index.htm │ │ │ └── public_statistics │ │ │ └── graph.htm │ ├── po │ │ ├── ca │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── cs │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── de │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── el │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── en │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── es │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── fr │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── he │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── hu │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── it │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── ja │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── ms │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── no │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── pl │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── pt-br │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── pt │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── ro │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── ru │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── sk │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── sv │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── templates │ │ │ ├── rrdtool.pot │ │ │ └── statistics.pot │ │ ├── tr │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── uk │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── vi │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ ├── zh-cn │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ │ └── zh-tw │ │ │ ├── rrdtool.po │ │ │ └── statistics.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── luci_statistics │ │ ├── init.d │ │ │ └── luci_statistics │ │ └── uci-defaults │ │ │ └── 40_luci-statistics │ │ └── usr │ │ └── bin │ │ └── stat-genconfig ├── luci-app-syncdial │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── syncdial.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── syncdial.lua │ │ └── view │ │ │ └── syncdial │ │ │ └── redial_button.htm │ └── root │ │ ├── bin │ │ └── genwancfg │ │ └── etc │ │ ├── config │ │ └── syncdial │ │ ├── hotplug.d │ │ └── iface │ │ │ └── 01-mvifcreate │ │ └── uci-defaults │ │ └── 50-luci-syncdial ├── luci-app-tinyproxy │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── tinyproxy.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── tinyproxy.lua │ │ └── view │ │ │ └── tinyproxy_status.htm │ └── po │ │ ├── ca │ │ └── tinyproxy.po │ │ ├── cs │ │ └── tinyproxy.po │ │ ├── de │ │ └── tinyproxy.po │ │ ├── el │ │ └── tinyproxy.po │ │ ├── en │ │ └── tinyproxy.po │ │ ├── es │ │ └── tinyproxy.po │ │ ├── fr │ │ └── tinyproxy.po │ │ ├── he │ │ └── tinyproxy.po │ │ ├── hu │ │ └── tinyproxy.po │ │ ├── it │ │ └── tinyproxy.po │ │ ├── ja │ │ └── tinyproxy.po │ │ ├── ms │ │ └── tinyproxy.po │ │ ├── no │ │ └── tinyproxy.po │ │ ├── pl │ │ └── tinyproxy.po │ │ ├── pt-br │ │ └── tinyproxy.po │ │ ├── pt │ │ └── tinyproxy.po │ │ ├── ro │ │ └── tinyproxy.po │ │ ├── ru │ │ └── tinyproxy.po │ │ ├── sk │ │ └── tinyproxy.po │ │ ├── sv │ │ └── tinyproxy.po │ │ ├── templates │ │ └── tinyproxy.pot │ │ ├── tr │ │ └── tinyproxy.po │ │ ├── uk │ │ └── tinyproxy.po │ │ ├── vi │ │ └── tinyproxy.po │ │ ├── zh-cn │ │ └── tinyproxy.po │ │ └── zh-tw │ │ └── tinyproxy.po ├── luci-app-transmission │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── transmission.lua │ │ └── model │ │ │ └── cbi │ │ │ └── transmission.lua │ ├── po │ │ ├── ca │ │ │ └── transmission.po │ │ ├── cs │ │ │ └── transmission.po │ │ ├── de │ │ │ └── transmission.po │ │ ├── el │ │ │ └── transmission.po │ │ ├── en │ │ │ └── transmission.po │ │ ├── es │ │ │ └── transmission.po │ │ ├── fr │ │ │ └── transmission.po │ │ ├── he │ │ │ └── transmission.po │ │ ├── hu │ │ │ └── transmission.po │ │ ├── it │ │ │ └── transmission.po │ │ ├── ja │ │ │ └── transmission.po │ │ ├── ms │ │ │ └── transmission.po │ │ ├── no │ │ │ └── transmission.po │ │ ├── pl │ │ │ └── transmission.po │ │ ├── pt-br │ │ │ └── transmission.po │ │ ├── pt │ │ │ └── transmission.po │ │ ├── ro │ │ │ └── transmission.po │ │ ├── ru │ │ │ └── transmission.po │ │ ├── sk │ │ │ └── transmission.po │ │ ├── sv │ │ │ └── transmission.po │ │ ├── templates │ │ │ └── transmission.pot │ │ ├── tr │ │ │ └── transmission.po │ │ ├── uk │ │ │ └── transmission.po │ │ ├── vi │ │ │ └── transmission.po │ │ ├── zh-cn │ │ │ └── transmission.po │ │ └── zh-tw │ │ │ └── transmission.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-transmission ├── luci-app-travelmate │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── travelmate.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── travelmate │ │ │ │ ├── cfg_firewall_tab.lua │ │ │ │ ├── cfg_network_tab.lua │ │ │ │ ├── cfg_wireless_tab.lua │ │ │ │ ├── configuration_tab.lua │ │ │ │ ├── overview_tab.lua │ │ │ │ ├── wifi_add.lua │ │ │ │ ├── wifi_delete.lua │ │ │ │ ├── wifi_edit.lua │ │ │ │ └── wifi_order.lua │ │ └── view │ │ │ └── travelmate │ │ │ ├── ap_qr.htm │ │ │ ├── config_css.htm │ │ │ ├── logread.htm │ │ │ ├── runtime.htm │ │ │ ├── stations.htm │ │ │ └── wifi_scan.htm │ ├── po │ │ ├── ja │ │ │ └── travelmate.po │ │ ├── pt-br │ │ │ └── travelmate.po │ │ ├── ru │ │ │ └── travelmate.po │ │ └── templates │ │ │ └── travelmate.pot │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-travelmate ├── luci-app-udpxy │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── udpxy.lua │ │ └── model │ │ │ └── cbi │ │ │ └── udpxy.lua │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-udpxy ├── luci-app-uhttpd │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── uhttpd │ │ │ │ └── uhttpd.lua │ │ └── model │ │ │ └── cbi │ │ │ └── uhttpd │ │ │ └── uhttpd.lua │ └── po │ │ ├── ja │ │ └── uhttpd.po │ │ ├── pt-br │ │ └── uhttpd.po │ │ ├── ru │ │ └── uhttpd.po │ │ └── templates │ │ └── uhttpd.pot ├── luci-app-unbound │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── unbound.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── unbound │ │ │ │ ├── configure.lua │ │ │ │ ├── extended.lua │ │ │ │ ├── manual.lua │ │ │ │ └── server.lua │ │ └── view │ │ │ └── unbound │ │ │ ├── css-editing.htm │ │ │ ├── show-empty.htm │ │ │ └── show-textbox.htm │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 60_luci-unbound ├── luci-app-upnp │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── upnp.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── upnp │ │ │ │ └── upnp.lua │ │ └── view │ │ │ ├── admin_status │ │ │ └── index │ │ │ │ └── upnp.htm │ │ │ └── upnp_status.htm │ ├── po │ │ ├── ca │ │ │ └── upnp.po │ │ ├── cs │ │ │ └── upnp.po │ │ ├── de │ │ │ └── upnp.po │ │ ├── el │ │ │ └── upnp.po │ │ ├── en │ │ │ └── upnp.po │ │ ├── es │ │ │ └── upnp.po │ │ ├── fr │ │ │ └── upnp.po │ │ ├── he │ │ │ └── upnp.po │ │ ├── hu │ │ │ └── upnp.po │ │ ├── it │ │ │ └── upnp.po │ │ ├── ja │ │ │ └── upnp.po │ │ ├── ms │ │ │ └── upnp.po │ │ ├── no │ │ │ └── upnp.po │ │ ├── pl │ │ │ └── upnp.po │ │ ├── pt-br │ │ │ └── upnp.po │ │ ├── pt │ │ │ └── upnp.po │ │ ├── ro │ │ │ └── upnp.po │ │ ├── ru │ │ │ └── upnp.po │ │ ├── sk │ │ │ └── upnp.po │ │ ├── sv │ │ │ └── upnp.po │ │ ├── templates │ │ │ └── upnp.pot │ │ ├── tr │ │ │ └── upnp.po │ │ ├── uk │ │ │ └── upnp.po │ │ ├── vi │ │ │ └── upnp.po │ │ ├── zh-cn │ │ │ └── upnp.po │ │ └── zh-tw │ │ │ └── upnp.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-miniupnp ├── luci-app-usb-printer │ ├── Makefile │ ├── ipkg │ │ └── postinst │ ├── luasrc │ │ ├── controller │ │ │ └── usb_printer.lua │ │ └── model │ │ │ └── cbi │ │ │ └── usb_printer.lua │ ├── po │ │ └── zh-cn │ │ │ └── usb-printer.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── usb_printer │ │ ├── hotplug.d │ │ │ └── usb │ │ │ │ └── 10-usb_printer │ │ ├── init.d │ │ │ └── usb_printer │ │ └── uci-defaults │ │ │ └── luci-usb-printer │ │ └── usr │ │ └── bin │ │ ├── detectlp │ │ └── usb_printer_hotplug ├── luci-app-vnstat │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── vnstat.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── vnstat.lua │ │ └── view │ │ │ └── vnstat.htm │ ├── po │ │ ├── ca │ │ │ └── vnstat.po │ │ ├── cs │ │ │ └── vnstat.po │ │ ├── de │ │ │ └── vnstat.po │ │ ├── el │ │ │ └── vnstat.po │ │ ├── en │ │ │ └── vnstat.po │ │ ├── es │ │ │ └── vnstat.po │ │ ├── fr │ │ │ └── vnstat.po │ │ ├── he │ │ │ └── vnstat.po │ │ ├── hu │ │ │ └── vnstat.po │ │ ├── it │ │ │ └── vnstat.po │ │ ├── ja │ │ │ └── vnstat.po │ │ ├── ms │ │ │ └── vnstat.po │ │ ├── no │ │ │ └── vnstat.po │ │ ├── pl │ │ │ └── vnstat.po │ │ ├── pt-br │ │ │ └── vnstat.po │ │ ├── pt │ │ │ └── vnstat.po │ │ ├── ro │ │ │ └── vnstat.po │ │ ├── ru │ │ │ └── vnstat.po │ │ ├── sk │ │ │ └── vnstat.po │ │ ├── sv │ │ │ └── vnstat.po │ │ ├── templates │ │ │ └── vnstat.pot │ │ ├── tr │ │ │ └── vnstat.po │ │ ├── uk │ │ │ └── vnstat.po │ │ ├── vi │ │ │ └── vnstat.po │ │ ├── zh-cn │ │ │ └── vnstat.po │ │ └── zh-tw │ │ │ └── vnstat.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-vnstat ├── luci-app-vpnbypass │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── vpnbypass.lua │ │ └── model │ │ │ └── cbi │ │ │ └── vpnbypass.lua │ ├── po │ │ ├── pt-br │ │ │ └── vpnbypass.po │ │ ├── ru │ │ │ └── vpnbypass.po │ │ ├── templates │ │ │ └── vpnbypass.pot │ │ ├── zh-cn │ │ │ └── vpnbypass.po │ │ └── zh-tw │ │ │ └── vpnbypass.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-vpnbypass ├── luci-app-vsftpd │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── vsftpd.lua │ │ └── model │ │ │ └── cbi │ │ │ └── vsftpd │ │ │ ├── anonymous.lua │ │ │ ├── general.lua │ │ │ ├── item.lua │ │ │ ├── log.lua │ │ │ └── users.lua │ ├── po │ │ ├── templates │ │ │ └── vsftpd.pot │ │ └── zh-cn │ │ │ └── vsftpd.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── luci-vsftpd ├── luci-app-watchcat │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── watchcat.lua │ │ └── model │ │ │ └── cbi │ │ │ └── watchcat │ │ │ └── watchcat.lua │ ├── po │ │ ├── ca │ │ │ └── watchcat.po │ │ ├── cs │ │ │ └── watchcat.po │ │ ├── de │ │ │ └── watchcat.po │ │ ├── el │ │ │ └── watchcat.po │ │ ├── en │ │ │ └── watchcat.po │ │ ├── es │ │ │ └── watchcat.po │ │ ├── fr │ │ │ └── watchcat.po │ │ ├── he │ │ │ └── watchcat.po │ │ ├── hu │ │ │ └── watchcat.po │ │ ├── it │ │ │ └── watchcat.po │ │ ├── ja │ │ │ └── watchcat.po │ │ ├── ms │ │ │ └── watchcat.po │ │ ├── no │ │ │ └── watchcat.po │ │ ├── pl │ │ │ └── watchcat.po │ │ ├── pt-br │ │ │ └── watchcat.po │ │ ├── pt │ │ │ └── watchcat.po │ │ ├── ro │ │ │ └── watchcat.po │ │ ├── ru │ │ │ └── watchcat.po │ │ ├── sk │ │ │ └── watchcat.po │ │ ├── sv │ │ │ └── watchcat.po │ │ ├── templates │ │ │ └── watchcat.pot │ │ ├── tr │ │ │ └── watchcat.po │ │ ├── uk │ │ │ └── watchcat.po │ │ ├── vi │ │ │ └── watchcat.po │ │ ├── zh-cn │ │ │ └── watchcat.po │ │ └── zh-tw │ │ │ └── watchcat.po │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 40_luci-watchcat ├── luci-app-webshell │ ├── Makefile │ └── luasrc │ │ ├── controller │ │ └── webshell.lua │ │ └── view │ │ └── webshell.htm ├── luci-app-wifischedule │ ├── Makefile │ ├── README.md │ ├── luasrc │ │ ├── controller │ │ │ └── wifischedule │ │ │ │ └── wifi_schedule.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── wifischedule │ │ │ │ └── wifi_schedule.lua │ │ └── view │ │ │ └── wifischedule │ │ │ └── file_viewer.htm │ └── po │ │ ├── it │ │ └── wifischedule.po │ │ ├── ja │ │ └── wifischedule.po │ │ ├── pt-br │ │ └── wifischedule.po │ │ ├── ru │ │ └── wifischedule.po │ │ ├── sv │ │ └── wifischedule.po │ │ ├── templates │ │ └── wifischedule.pot │ │ └── zh-cn │ │ └── wifischedule.po ├── luci-app-wireguard │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── wireguard.lua │ │ └── view │ │ │ └── wireguard.htm │ └── po │ │ ├── ja │ │ └── wireguard.po │ │ ├── pt-br │ │ └── wireguard.po │ │ ├── ru │ │ └── wireguard.po │ │ ├── sv │ │ └── wireguard.po │ │ ├── templates │ │ └── wireguard.pot │ │ └── zh-cn │ │ └── wireguard.po └── luci-app-wol │ ├── Makefile │ ├── luasrc │ ├── controller │ │ └── wol.lua │ └── model │ │ └── cbi │ │ └── wol.lua │ └── po │ ├── ca │ └── wol.po │ ├── cs │ └── wol.po │ ├── de │ └── wol.po │ ├── el │ └── wol.po │ ├── en │ └── wol.po │ ├── es │ └── wol.po │ ├── fr │ └── wol.po │ ├── he │ └── wol.po │ ├── hu │ └── wol.po │ ├── it │ └── wol.po │ ├── ja │ └── wol.po │ ├── ms │ └── wol.po │ ├── no │ └── wol.po │ ├── pl │ └── wol.po │ ├── pt-br │ └── wol.po │ ├── pt │ └── wol.po │ ├── ro │ └── wol.po │ ├── ru │ └── wol.po │ ├── sk │ └── wol.po │ ├── sv │ └── wol.po │ ├── templates │ └── wol.pot │ ├── tr │ └── wol.po │ ├── uk │ └── wol.po │ ├── vi │ └── wol.po │ ├── zh-cn │ └── wol.po │ └── zh-tw │ └── wol.po ├── collections ├── luci-light │ └── Makefile ├── luci-ssl-openssl │ └── Makefile ├── luci-ssl │ └── Makefile └── luci │ └── Makefile ├── contrib └── package │ ├── Makefile │ ├── community-profiles │ ├── Makefile │ └── files │ │ └── etc │ │ └── config │ │ ├── profile_Freifunk │ │ ├── profile_altmark │ │ ├── profile_arig_arad │ │ ├── profile_arig_neot_semadar │ │ ├── profile_arig_tel-aviv │ │ ├── profile_augsburg │ │ ├── profile_bayreuth │ │ ├── profile_bergischesland │ │ ├── profile_berlin │ │ ├── profile_carbodebit │ │ ├── profile_cottbus │ │ ├── profile_demo │ │ ├── profile_duesseldorf │ │ ├── profile_erfurt │ │ ├── profile_evernet │ │ ├── profile_freiburg │ │ ├── profile_gadow │ │ ├── profile_guifibages │ │ ├── profile_halle │ │ ├── profile_hameln │ │ ├── profile_hooge │ │ ├── profile_kiberpipa │ │ ├── profile_kyritz │ │ ├── profile_l59 │ │ ├── profile_leipzig │ │ ├── profile_marburg │ │ ├── profile_oldenburg │ │ ├── profile_openwireless_bern │ │ ├── profile_piraten_dresden │ │ ├── profile_potsdam │ │ ├── profile_reihen │ │ ├── profile_rosbach │ │ ├── profile_schwarzach │ │ ├── profile_stuttgart │ │ ├── profile_tulumlibre │ │ ├── profile_vogtland │ │ ├── profile_weil │ │ ├── profile_weimar │ │ ├── profile_weinstadt │ │ └── profile_wlanljubljana │ ├── freifunk-common │ ├── Makefile │ └── files │ │ ├── etc │ │ ├── config │ │ │ └── freifunk │ │ ├── init.d │ │ │ └── freifunk │ │ ├── rc.local.d │ │ │ └── 01-config-migration │ │ └── uci-defaults │ │ │ └── freifunk │ │ └── usr │ │ ├── bin │ │ ├── ffdzero │ │ ├── neigh.sh │ │ └── watch.sh │ │ └── sbin │ │ └── ff_olsr_watchdog │ ├── freifunk-firewall │ ├── Makefile │ └── files │ │ └── etc │ │ ├── firewall.freifunk │ │ └── hotplug.d │ │ └── firewall │ │ └── 23-restricted-wan │ ├── freifunk-gwcheck │ ├── Makefile │ ├── files │ │ ├── etc │ │ │ └── config │ │ │ │ └── freifunk-gwcheck │ │ └── usr │ │ │ └── sbin │ │ │ └── ff_olsr_test_gw.sh │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 50_freifunk-gwcheck │ ├── freifunk-mapupdate │ ├── Makefile │ ├── files │ │ ├── etc │ │ │ └── config │ │ │ │ └── freifunk-mapupdate │ │ └── usr │ │ │ └── sbin │ │ │ └── ff_mapupdate.sh │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 50_freifunk-mapupdate │ ├── freifunk-policyrouting │ ├── Makefile │ └── files │ │ └── etc │ │ ├── config │ │ └── freifunk-policyrouting │ │ ├── hotplug.d │ │ └── iface │ │ │ └── 30-policyrouting │ │ ├── init.d │ │ └── freifunk-policyrouting │ │ └── uci-defaults │ │ └── freifunk-policyrouting │ ├── freifunk-watchdog │ ├── Makefile │ ├── files │ │ ├── freifunk-watchdog.config │ │ └── freifunk-watchdog.init │ └── src │ │ ├── Makefile │ │ ├── ucix.c │ │ ├── ucix.h │ │ ├── watchdog.c │ │ ├── watchdog.h │ │ └── wireless.22.h │ ├── lucihttp │ └── Makefile │ └── meshwizard │ ├── Makefile │ └── files │ ├── etc │ └── config │ │ └── meshwizard │ └── usr │ └── bin │ └── meshwizard │ ├── functions.sh │ ├── helpers │ ├── check-range-in-range.sh │ ├── common.awk │ ├── gen_auto-ipv6-dhcpv6-ip.sh │ ├── gen_bssid.sh │ ├── gen_dhcp_ip.sh │ ├── initial_config.sh │ ├── ipcalc-cidr.sh │ ├── read_defaults.sh │ ├── rename-wifi.sh │ ├── setup_auto-ipv6-interface.sh │ ├── setup_auto-ipv6.sh │ ├── setup_dhcp.sh │ ├── setup_dnsmasq.sh │ ├── setup_firewall.sh │ ├── setup_firewall_interface.sh │ ├── setup_lan_ipv6.sh │ ├── setup_lan_static.sh │ ├── setup_network.sh │ ├── setup_olsrd.sh │ ├── setup_olsrd_interface.sh │ ├── setup_policyrouting.sh │ ├── setup_qos.sh │ ├── setup_splash.sh │ ├── setup_ssh.sh │ ├── setup_system.sh │ ├── setup_uhttpd.sh │ ├── setup_wan_dhcp.sh │ ├── setup_wan_static.sh │ ├── setup_widgets.sh │ ├── setup_wifi.sh │ ├── setup_wifi_vap.sh │ └── supports_vap.sh │ └── wizard.sh ├── documentation ├── CBI.md ├── JsonRpcHowTo.md ├── LAR.md ├── LMO.md ├── LuCI-0.10.md ├── Modules.md ├── ModulesHowTo.md ├── Templates.md ├── ThemesHowTo.md ├── api │ ├── index.html │ ├── luadoc.css │ └── modules │ │ ├── luci.dispatcher.html │ │ ├── luci.http.html │ │ ├── luci.http.protocol.conditionals.html │ │ ├── luci.http.protocol.date.html │ │ ├── luci.http.protocol.html │ │ ├── luci.http.protocol.mime.html │ │ ├── luci.i18n.html │ │ ├── luci.ip.cidr.html │ │ ├── luci.ip.html │ │ ├── luci.json.html │ │ ├── luci.jsonc.html │ │ ├── luci.jsonc.parser.html │ │ ├── luci.model.ipkg.html │ │ ├── luci.model.uci.html │ │ ├── luci.rpcc.html │ │ ├── luci.rpcc.ruci.html │ │ ├── luci.sys.html │ │ ├── luci.sys.init.html │ │ ├── luci.sys.iptparser.html │ │ ├── luci.sys.net.html │ │ ├── luci.sys.process.html │ │ ├── luci.sys.user.html │ │ ├── luci.sys.wifi.html │ │ ├── luci.util.html │ │ ├── nixio.CHANGELOG.html │ │ ├── nixio.CryptoHash.html │ │ ├── nixio.File.html │ │ ├── nixio.README.html │ │ ├── nixio.Socket.html │ │ ├── nixio.TLSContext.html │ │ ├── nixio.TLSSocket.html │ │ ├── nixio.UnifiedIO.html │ │ ├── nixio.bin.html │ │ ├── nixio.bit.html │ │ ├── nixio.crypto.html │ │ ├── nixio.fs.html │ │ └── nixio.html └── i18n.md ├── libs ├── luci-lib-httpclient │ ├── Makefile │ └── luasrc │ │ ├── httpclient.lua │ │ └── httpclient │ │ └── receiver.lua ├── luci-lib-httpprotoutils │ ├── Makefile │ └── luasrc │ │ └── http │ │ ├── conditionals.lua │ │ ├── conditionals.luadoc │ │ ├── date.lua │ │ ├── date.luadoc │ │ ├── mime.lua │ │ └── mime.luadoc ├── luci-lib-ip │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── ip.c │ │ └── ip.luadoc ├── luci-lib-json │ ├── Makefile │ └── luasrc │ │ ├── json.lua │ │ └── json.luadoc ├── luci-lib-jsonc │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── jsonc.c │ │ └── jsonc.luadoc ├── luci-lib-luaneightbl │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── neightbl.c ├── luci-lib-nixio │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── NOTICE │ ├── README │ ├── axTLS │ │ ├── Makefile │ │ ├── README │ │ ├── bindings │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── csharp │ │ │ │ ├── Makefile │ │ │ │ └── axTLS.cs │ │ │ ├── generate_SWIG_interface.pl │ │ │ ├── generate_interface.pl │ │ │ ├── java │ │ │ │ ├── Makefile │ │ │ │ ├── SSL.java │ │ │ │ ├── SSLCTX.java │ │ │ │ ├── SSLClient.java │ │ │ │ ├── SSLReadHolder.java │ │ │ │ ├── SSLServer.java │ │ │ │ └── SSLUtil.java │ │ │ ├── lua │ │ │ │ └── Makefile │ │ │ ├── perl │ │ │ │ └── Makefile │ │ │ └── vbnet │ │ │ │ ├── Makefile │ │ │ │ └── axTLSvb.vb │ │ ├── config │ │ │ ├── .config │ │ │ ├── Config.in │ │ │ ├── JMeter.jmx │ │ │ ├── Rules.mak │ │ │ ├── axhttpd.aip │ │ │ ├── axtls.RES │ │ │ ├── axtls.rc │ │ │ ├── config.h │ │ │ ├── linuxconfig │ │ │ ├── makefile.conf │ │ │ ├── makefile.dotnet.conf │ │ │ ├── makefile.java.conf │ │ │ ├── makefile.post │ │ │ ├── scripts │ │ │ │ └── config │ │ │ │ │ ├── Kconfig-language.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── conf.c │ │ │ │ │ ├── confdata.c │ │ │ │ │ ├── expr.c │ │ │ │ │ ├── expr.h │ │ │ │ │ ├── lex.zconf.c_shipped │ │ │ │ │ ├── lkc.h │ │ │ │ │ ├── lkc_proto.h │ │ │ │ │ ├── lxdialog │ │ │ │ │ ├── BIG.FAT.WARNING │ │ │ │ │ ├── checklist.c │ │ │ │ │ ├── colors.h │ │ │ │ │ ├── dialog.h │ │ │ │ │ ├── inputbox.c │ │ │ │ │ ├── menubox.c │ │ │ │ │ ├── msgbox.c │ │ │ │ │ ├── textbox.c │ │ │ │ │ ├── util.c │ │ │ │ │ └── yesno.c │ │ │ │ │ ├── mconf.c │ │ │ │ │ ├── menu.c │ │ │ │ │ ├── mkconfigs │ │ │ │ │ ├── symbol.c │ │ │ │ │ ├── util.c │ │ │ │ │ ├── zconf.l │ │ │ │ │ ├── zconf.tab.c_shipped │ │ │ │ │ ├── zconf.tab.h_shipped │ │ │ │ │ └── zconf.y │ │ │ └── win32config │ │ ├── crypto │ │ │ ├── Makefile │ │ │ ├── aes.c │ │ │ ├── bigint.c │ │ │ ├── bigint.h │ │ │ ├── bigint_impl.h │ │ │ ├── crypto.h │ │ │ ├── crypto_misc.c │ │ │ ├── hmac.c │ │ │ ├── md2.c │ │ │ ├── md5.c │ │ │ ├── rc4.c │ │ │ ├── rsa.c │ │ │ └── sha1.c │ │ ├── docsrc │ │ │ ├── Makefile │ │ │ ├── axTLS.dox │ │ │ ├── doco_footer.html │ │ │ └── images │ │ │ │ ├── axolotl.jpg │ │ │ │ └── tsbasbw.gif │ │ ├── httpd │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── axhttp.h │ │ │ ├── axhttpd.c │ │ │ ├── htpasswd.c │ │ │ ├── kepler-1.1-snapshot-20070521-1825.tar.gz │ │ │ ├── kepler.patch │ │ │ ├── proc.c │ │ │ └── tdate_parse.c │ │ ├── samples │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── c │ │ │ │ ├── Makefile │ │ │ │ └── axssl.c │ │ │ ├── csharp │ │ │ │ ├── Makefile │ │ │ │ └── axssl.cs │ │ │ ├── java │ │ │ │ ├── Makefile │ │ │ │ ├── axssl.java │ │ │ │ └── manifest.mf │ │ │ ├── lua │ │ │ │ ├── Makefile │ │ │ │ └── axssl.lua │ │ │ ├── perl │ │ │ │ ├── Makefile │ │ │ │ └── axssl.pl │ │ │ └── vbnet │ │ │ │ ├── Makefile │ │ │ │ └── axssl.vb │ │ ├── ssl │ │ │ ├── BigIntConfig.in │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── asn1.c │ │ │ ├── cert.h │ │ │ ├── crypto_misc.h │ │ │ ├── gen_cert.c │ │ │ ├── loader.c │ │ │ ├── openssl.c │ │ │ ├── os_port.c │ │ │ ├── os_port.h │ │ │ ├── p12.c │ │ │ ├── private_key.h │ │ │ ├── ssl.h │ │ │ ├── test │ │ │ │ ├── Makefile │ │ │ │ ├── axTLS.ca_key.pem │ │ │ │ ├── axTLS.ca_x509.cer │ │ │ │ ├── axTLS.ca_x509.pem │ │ │ │ ├── axTLS.device_key │ │ │ │ ├── axTLS.device_key.pem │ │ │ │ ├── axTLS.encrypted.p8 │ │ │ │ ├── axTLS.encrypted_pem.p8 │ │ │ │ ├── axTLS.key_1024 │ │ │ │ ├── axTLS.key_1024.pem │ │ │ │ ├── axTLS.key_2048 │ │ │ │ ├── axTLS.key_2048.pem │ │ │ │ ├── axTLS.key_4096 │ │ │ │ ├── axTLS.key_4096.pem │ │ │ │ ├── axTLS.key_512 │ │ │ │ ├── axTLS.key_512.pem │ │ │ │ ├── axTLS.key_aes128.pem │ │ │ │ ├── axTLS.key_aes256.pem │ │ │ │ ├── axTLS.noname.p12 │ │ │ │ ├── axTLS.unencrypted.p8 │ │ │ │ ├── axTLS.unencrypted_pem.p8 │ │ │ │ ├── axTLS.withCA.p12 │ │ │ │ ├── axTLS.withoutCA.p12 │ │ │ │ ├── axTLS.x509_1024.cer │ │ │ │ ├── axTLS.x509_1024.pem │ │ │ │ ├── axTLS.x509_2048.cer │ │ │ │ ├── axTLS.x509_2048.pem │ │ │ │ ├── axTLS.x509_4096.cer │ │ │ │ ├── axTLS.x509_4096.pem │ │ │ │ ├── axTLS.x509_512.cer │ │ │ │ ├── axTLS.x509_512.pem │ │ │ │ ├── axTLS.x509_aes128.pem │ │ │ │ ├── axTLS.x509_aes256.pem │ │ │ │ ├── axTLS.x509_bad_after.pem │ │ │ │ ├── axTLS.x509_bad_before.pem │ │ │ │ ├── axTLS.x509_device.cer │ │ │ │ ├── axTLS.x509_device.pem │ │ │ │ ├── datatest.c │ │ │ │ ├── datatest.c.old │ │ │ │ ├── deutsche_telecom.x509_ca │ │ │ │ ├── equifax.x509_ca │ │ │ │ ├── gnutls.cer │ │ │ │ ├── header_issue.dat │ │ │ │ ├── killopenssl.sh │ │ │ │ ├── make_certs.sh │ │ │ │ ├── microsoft.x509_ca │ │ │ │ ├── microsoft.x509_ca.pem │ │ │ │ ├── ms_iis.cer │ │ │ │ ├── perf_bigint.c │ │ │ │ ├── socgen.cer │ │ │ │ ├── ssltest.c │ │ │ │ ├── ssltest.c.bak │ │ │ │ ├── test_axssl.sh │ │ │ │ ├── thawte.x509_ca │ │ │ │ ├── verisign.x509_ca │ │ │ │ ├── verisign.x509_ca.pem │ │ │ │ ├── verisign.x509_my_cert │ │ │ │ └── verisign.x509_my_cert.pem │ │ │ ├── tls1.c │ │ │ ├── tls1.h │ │ │ ├── tls1_clnt.c │ │ │ ├── tls1_svr.c │ │ │ ├── version.h │ │ │ └── x509.c │ │ └── www │ │ │ ├── bin │ │ │ └── .htaccess │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── lua │ │ │ ├── download.lua │ │ │ ├── env.lua │ │ │ ├── overview.lp │ │ │ ├── prepara_sql2.lua │ │ │ ├── test_conc.lua │ │ │ ├── test_cookies.lp │ │ │ ├── test_cookies.lua │ │ │ ├── test_err.lua │ │ │ ├── test_fs.lua │ │ │ ├── test_htk.lua │ │ │ ├── test_lib.lua │ │ │ ├── test_main.html │ │ │ ├── test_main.lp │ │ │ ├── test_main.lua │ │ │ ├── test_session.lua │ │ │ ├── test_sql.lua │ │ │ ├── test_sql2.lua │ │ │ └── test_variables.lp │ │ │ └── test_dir │ │ │ ├── bin │ │ │ └── .htaccess │ │ │ ├── no_http │ │ │ ├── .htaccess │ │ │ ├── .htpasswd │ │ │ └── index.html │ │ │ └── no_ssl │ │ │ ├── .htaccess │ │ │ └── index.html │ ├── axtls-config │ │ ├── .config │ │ └── config.h │ ├── axtls-root │ │ └── etc │ │ │ └── nixio │ │ │ └── rsa_main.der │ ├── docsrc │ │ ├── CHANGELOG.lua │ │ ├── README.lua │ │ ├── nixio.CryptoHash.lua │ │ ├── nixio.File.lua │ │ ├── nixio.Socket.lua │ │ ├── nixio.TLSContext.lua │ │ ├── nixio.TLSSocket.lua │ │ ├── nixio.UnifiedIO.lua │ │ ├── nixio.bin.lua │ │ ├── nixio.bit.lua │ │ ├── nixio.crypto.lua │ │ ├── nixio.fs.lua │ │ └── nixio.lua │ ├── nixio-0.3-1.rockspec │ ├── root │ │ ├── lib │ │ │ └── upgrade │ │ │ │ └── luci-add-conffiles.sh │ │ └── usr │ │ │ └── lib │ │ │ └── lua │ │ │ └── nixio │ │ │ ├── fs.lua │ │ │ └── util.lua │ └── src │ │ ├── Makefile │ │ ├── address.c │ │ ├── axtls-compat.c │ │ ├── axtls-compat.h │ │ ├── binary.c │ │ ├── bind.c │ │ ├── bit.c │ │ ├── cyassl-compat.c │ │ ├── cyassl-compat.h │ │ ├── file.c │ │ ├── fs.c │ │ ├── io.c │ │ ├── mingw-compat.c │ │ ├── mingw-compat.h │ │ ├── nixio-tls.h │ │ ├── nixio.c │ │ ├── nixio.h │ │ ├── poll.c │ │ ├── process.c │ │ ├── protoent.c │ │ ├── socket.c │ │ ├── sockopt.c │ │ ├── splice.c │ │ ├── syslog.c │ │ ├── tls-context.c │ │ ├── tls-crypto.c │ │ ├── tls-socket.c │ │ └── user.c ├── luci-lib-px5g │ ├── Makefile │ ├── lua │ │ └── px5g │ │ │ └── util.lua │ ├── root │ │ └── usr │ │ │ └── sbin │ │ │ └── px5g-genkeys │ └── src │ │ ├── Makefile │ │ ├── library │ │ ├── bignum.c │ │ ├── havege.c │ │ ├── rsa.c │ │ ├── sha1.c │ │ ├── timing.c │ │ └── x509write.c │ │ ├── polarssl │ │ ├── bignum.h │ │ ├── bn_mul.h │ │ ├── config.h │ │ ├── havege.h │ │ ├── rsa.h │ │ ├── sha1.h │ │ ├── timing.h │ │ └── x509.h │ │ ├── px5g.c │ │ └── px5g.h ├── luci-lib-rpcc │ ├── Makefile │ └── luasrc │ │ ├── rpcc.lua │ │ ├── rpcc.luadoc │ │ └── rpcc │ │ ├── ruci.lua │ │ └── ruci.luadoc └── rpcd-mod-rrdns │ ├── Makefile │ └── src │ ├── CMakeLists.txt │ ├── rrdns.c │ └── rrdns.h ├── luci.mk ├── modules ├── luci-base │ ├── Makefile │ ├── htdocs │ │ ├── cgi-bin │ │ │ └── luci │ │ └── luci-static │ │ │ └── resources │ │ │ ├── cbi.js │ │ │ ├── cbi │ │ │ ├── add.gif │ │ │ ├── apply.gif │ │ │ ├── arrow.gif │ │ │ ├── down.gif │ │ │ ├── download.gif │ │ │ ├── edit.gif │ │ │ ├── fieldadd.gif │ │ │ ├── file.gif │ │ │ ├── find.gif │ │ │ ├── folder.gif │ │ │ ├── help.gif │ │ │ ├── key.gif │ │ │ ├── link.gif │ │ │ ├── reload.gif │ │ │ ├── remove.gif │ │ │ ├── reset.gif │ │ │ ├── save.gif │ │ │ ├── up.gif │ │ │ └── user.gif │ │ │ ├── icons │ │ │ ├── bridge.png │ │ │ ├── bridge_disabled.png │ │ │ ├── encryption.png │ │ │ ├── encryption_disabled.png │ │ │ ├── ethernet.png │ │ │ ├── ethernet_disabled.png │ │ │ ├── loading.gif │ │ │ ├── port_down.png │ │ │ ├── port_up.png │ │ │ ├── signal-0-25.png │ │ │ ├── signal-0.png │ │ │ ├── signal-25-50.png │ │ │ ├── signal-50-75.png │ │ │ ├── signal-75-100.png │ │ │ ├── signal-none.png │ │ │ ├── switch.png │ │ │ ├── switch_disabled.png │ │ │ ├── tunnel.png │ │ │ ├── tunnel_disabled.png │ │ │ ├── vlan.png │ │ │ ├── vlan_disabled.png │ │ │ ├── wifi.png │ │ │ ├── wifi_big.png │ │ │ ├── wifi_big_disabled.png │ │ │ └── wifi_disabled.png │ │ │ └── xhr.js │ ├── luasrc │ │ ├── cacheloader.lua │ │ ├── cbi.lua │ │ ├── cbi │ │ │ └── datatypes.lua │ │ ├── ccache.lua │ │ ├── config.lua │ │ ├── controller │ │ │ └── admin │ │ │ │ └── servicectl.lua │ │ ├── debug.lua │ │ ├── dispatcher.lua │ │ ├── dispatcher.luadoc │ │ ├── http.lua │ │ ├── http.luadoc │ │ ├── i18n.lua │ │ ├── i18n.luadoc │ │ ├── ltn12.lua │ │ ├── model │ │ │ ├── cbi │ │ │ │ └── admin_network │ │ │ │ │ ├── proto_dhcp.lua │ │ │ │ │ ├── proto_none.lua │ │ │ │ │ └── proto_static.lua │ │ │ ├── firewall.lua │ │ │ ├── ipkg.lua │ │ │ ├── ipkg.luadoc │ │ │ ├── network.lua │ │ │ ├── uci.lua │ │ │ └── uci.luadoc │ │ ├── sgi │ │ │ ├── cgi.lua │ │ │ └── uhttpd.lua │ │ ├── store.lua │ │ ├── sys.lua │ │ ├── sys.luadoc │ │ ├── sys │ │ │ ├── iptparser.lua │ │ │ ├── iptparser.luadoc │ │ │ ├── zoneinfo.lua │ │ │ └── zoneinfo │ │ │ │ ├── tzdata.lua │ │ │ │ └── tzoffset.lua │ │ ├── template.lua │ │ ├── tools │ │ │ ├── proto.lua │ │ │ ├── status.lua │ │ │ └── webadmin.lua │ │ ├── util.lua │ │ ├── util.luadoc │ │ ├── version.lua │ │ └── view │ │ │ ├── cbi │ │ │ ├── apply_xhr.htm │ │ │ ├── browser.htm │ │ │ ├── button.htm │ │ │ ├── cell_valuefooter.htm │ │ │ ├── cell_valueheader.htm │ │ │ ├── compound.htm │ │ │ ├── delegator.htm │ │ │ ├── dvalue.htm │ │ │ ├── dynlist.htm │ │ │ ├── error.htm │ │ │ ├── filebrowser.htm │ │ │ ├── firewall_zoneforwards.htm │ │ │ ├── firewall_zonelist.htm │ │ │ ├── footer.htm │ │ │ ├── full_valuefooter.htm │ │ │ ├── full_valueheader.htm │ │ │ ├── fvalue.htm │ │ │ ├── header.htm │ │ │ ├── lvalue.htm │ │ │ ├── map.htm │ │ │ ├── mvalue.htm │ │ │ ├── network_ifacelist.htm │ │ │ ├── network_netinfo.htm │ │ │ ├── network_netlist.htm │ │ │ ├── nsection.htm │ │ │ ├── nullsection.htm │ │ │ ├── simpleform.htm │ │ │ ├── tabcontainer.htm │ │ │ ├── tabmenu.htm │ │ │ ├── tblsection.htm │ │ │ ├── tsection.htm │ │ │ ├── tvalue.htm │ │ │ ├── ucisection.htm │ │ │ ├── upload.htm │ │ │ ├── value.htm │ │ │ ├── valuefooter.htm │ │ │ └── valueheader.htm │ │ │ ├── csrftoken.htm │ │ │ ├── error404.htm │ │ │ ├── error500.htm │ │ │ ├── footer.htm │ │ │ ├── header.htm │ │ │ ├── indexer.htm │ │ │ └── sysauth.htm │ ├── po │ │ ├── ca │ │ │ └── base.po │ │ ├── cs │ │ │ └── base.po │ │ ├── de │ │ │ └── base.po │ │ ├── el │ │ │ └── base.po │ │ ├── en │ │ │ └── base.po │ │ ├── es │ │ │ └── base.po │ │ ├── fr │ │ │ └── base.po │ │ ├── he │ │ │ └── base.po │ │ ├── hu │ │ │ └── base.po │ │ ├── it │ │ │ └── base.po │ │ ├── ja │ │ │ └── base.po │ │ ├── ko │ │ │ └── base.po │ │ ├── ms │ │ │ └── base.po │ │ ├── no │ │ │ └── base.po │ │ ├── pl │ │ │ └── base.po │ │ ├── pt-br │ │ │ └── base.po │ │ ├── pt │ │ │ └── base.po │ │ ├── ro │ │ │ └── base.po │ │ ├── ru │ │ │ └── base.po │ │ ├── sk │ │ │ └── base.po │ │ ├── sv │ │ │ └── base.po │ │ ├── templates │ │ │ └── base.pot │ │ ├── tr │ │ │ └── base.po │ │ ├── uk │ │ │ └── base.po │ │ ├── vi │ │ │ └── base.po │ │ ├── zh-cn │ │ │ └── base.po │ │ └── zh-tw │ │ │ └── base.po │ ├── root │ │ ├── etc │ │ │ ├── config │ │ │ │ ├── luci │ │ │ │ └── ucitrack │ │ │ └── luci-uploads │ │ │ │ └── .placeholder │ │ ├── sbin │ │ │ └── luci-reload │ │ ├── usr │ │ │ └── share │ │ │ │ └── acl.d │ │ │ │ └── luci-base.json │ │ └── www │ │ │ └── index.html │ └── src │ │ ├── Makefile │ │ ├── mkversion.sh │ │ ├── po2lmo.c │ │ ├── template_lmo.c │ │ ├── template_lmo.h │ │ ├── template_lualib.c │ │ ├── template_lualib.h │ │ ├── template_parser.c │ │ ├── template_parser.h │ │ ├── template_utils.c │ │ └── template_utils.h ├── luci-mod-admin-full │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── bandwidth.svg │ │ │ ├── connections.svg │ │ │ ├── load.svg │ │ │ ├── wifirate.svg │ │ │ └── wireless.svg │ ├── luasrc │ │ ├── controller │ │ │ └── admin │ │ │ │ ├── filebrowser.lua │ │ │ │ ├── index.lua │ │ │ │ ├── network.lua │ │ │ │ ├── status.lua │ │ │ │ ├── system.lua │ │ │ │ └── uci.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ ├── admin_network │ │ │ │ ├── dhcp.lua │ │ │ │ ├── hosts.lua │ │ │ │ ├── iface_add.lua │ │ │ │ ├── ifaces.lua │ │ │ │ ├── network.lua │ │ │ │ ├── proto_ahcp.lua │ │ │ │ ├── routes.lua │ │ │ │ ├── vlan.lua │ │ │ │ ├── wifi.lua │ │ │ │ └── wifi_add.lua │ │ │ │ ├── admin_status │ │ │ │ └── processes.lua │ │ │ │ └── admin_system │ │ │ │ ├── admin.lua │ │ │ │ ├── backupfiles.lua │ │ │ │ ├── crontab.lua │ │ │ │ ├── fstab.lua │ │ │ │ ├── fstab │ │ │ │ ├── mount.lua │ │ │ │ └── swap.lua │ │ │ │ ├── ipkg.lua │ │ │ │ ├── leds.lua │ │ │ │ ├── startup.lua │ │ │ │ └── system.lua │ │ └── view │ │ │ ├── admin_network │ │ │ ├── diagnostics.htm │ │ │ ├── iface_overview.htm │ │ │ ├── iface_status.htm │ │ │ ├── lease_status.htm │ │ │ ├── switch_status.htm │ │ │ ├── wifi_join.htm │ │ │ ├── wifi_overview.htm │ │ │ └── wifi_status.htm │ │ │ ├── admin_status │ │ │ ├── bandwidth.htm │ │ │ ├── connections.htm │ │ │ ├── dmesg.htm │ │ │ ├── index.htm │ │ │ ├── iptables.htm │ │ │ ├── load.htm │ │ │ ├── routes.htm │ │ │ ├── syslog.htm │ │ │ └── wireless.htm │ │ │ ├── admin_system │ │ │ ├── applyreboot.htm │ │ │ ├── backupfiles.htm │ │ │ ├── clock_status.htm │ │ │ ├── flashops.htm │ │ │ ├── ipkg.htm │ │ │ ├── packages.htm │ │ │ ├── reboot.htm │ │ │ └── upgrade.htm │ │ │ ├── admin_uci │ │ │ ├── apply.htm │ │ │ ├── changelog.htm │ │ │ ├── changes.htm │ │ │ └── revert.htm │ │ │ └── cbi │ │ │ └── wireless_modefreq.htm │ ├── root │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── 50_luci-mod-admin-full │ └── src │ │ ├── Makefile │ │ └── luci-bwc.c ├── luci-mod-admin-mini │ ├── Makefile │ └── luasrc │ │ ├── controller │ │ └── mini │ │ │ ├── index.lua │ │ │ ├── network.lua │ │ │ └── system.lua │ │ ├── model │ │ └── cbi │ │ │ └── mini │ │ │ ├── dhcp.lua │ │ │ ├── index.lua │ │ │ ├── luci.lua │ │ │ ├── network.lua │ │ │ ├── passwd.lua │ │ │ ├── system.lua │ │ │ └── wifi.lua │ │ └── view │ │ └── mini │ │ ├── applyreboot.htm │ │ ├── backup.htm │ │ ├── index.htm │ │ ├── reboot.htm │ │ └── upgrade.htm ├── luci-mod-failsafe │ ├── Makefile │ └── luasrc │ │ ├── controller │ │ └── failsafe │ │ │ └── failsafe.lua │ │ └── view │ │ └── failsafe │ │ ├── applyreboot.htm │ │ ├── flashops.htm │ │ ├── reboot.htm │ │ └── upgrade.htm ├── luci-mod-freifunk-community │ └── Makefile ├── luci-mod-freifunk │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ ├── flashing.html │ │ │ └── resources │ │ │ ├── OSMLatLon.htm │ │ │ ├── flashing.gif │ │ │ ├── freifunk-map │ │ │ ├── hna.gif │ │ │ └── node.gif │ │ │ └── osm.js │ ├── luasrc │ │ ├── controller │ │ │ └── freifunk │ │ │ │ ├── freifunk.lua │ │ │ │ └── remote_update.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── freifunk │ │ │ │ ├── basics.lua │ │ │ │ ├── contact.lua │ │ │ │ ├── profile.lua │ │ │ │ ├── profile_expert.lua │ │ │ │ └── user_index.lua │ │ └── view │ │ │ ├── cbi │ │ │ └── osmll_value.htm │ │ │ ├── freifunk-map │ │ │ ├── frame.htm │ │ │ └── map.htm │ │ │ └── freifunk │ │ │ ├── adminindex.htm │ │ │ ├── contact.htm │ │ │ ├── index.htm │ │ │ ├── profile_error.htm │ │ │ ├── public_status.htm │ │ │ └── remote_update.htm │ └── po │ │ ├── ca │ │ └── freifunk.po │ │ ├── cs │ │ └── freifunk.po │ │ ├── de │ │ └── freifunk.po │ │ ├── el │ │ └── freifunk.po │ │ ├── en │ │ └── freifunk.po │ │ ├── es │ │ └── freifunk.po │ │ ├── fr │ │ └── freifunk.po │ │ ├── he │ │ └── freifunk.po │ │ ├── hu │ │ └── freifunk.po │ │ ├── it │ │ └── freifunk.po │ │ ├── ja │ │ └── freifunk.po │ │ ├── ms │ │ └── freifunk.po │ │ ├── no │ │ └── freifunk.po │ │ ├── pl │ │ └── freifunk.po │ │ ├── pt-br │ │ └── freifunk.po │ │ ├── pt │ │ └── freifunk.po │ │ ├── ro │ │ └── freifunk.po │ │ ├── ru │ │ └── freifunk.po │ │ ├── sk │ │ └── freifunk.po │ │ ├── sv │ │ └── freifunk.po │ │ ├── tr │ │ └── freifunk.po │ │ ├── uk │ │ └── freifunk.po │ │ ├── vi │ │ └── freifunk.po │ │ ├── zh-cn │ │ └── freifunk.po │ │ └── zh-tw │ │ └── freifunk.po └── luci-mod-rpc │ ├── Makefile │ └── luasrc │ ├── controller │ └── rpc.lua │ ├── jsonrpc.lua │ └── jsonrpcbind │ └── uci.lua ├── protocols ├── luci-proto-3g │ ├── Makefile │ └── luasrc │ │ └── model │ │ └── cbi │ │ └── admin_network │ │ └── proto_3g.lua ├── luci-proto-ipip │ ├── Makefile │ └── luasrc │ │ └── model │ │ ├── cbi │ │ └── admin_network │ │ │ └── proto_ipip.lua │ │ └── network │ │ └── proto_ipip.lua ├── luci-proto-ipv6 │ ├── Makefile │ └── luasrc │ │ └── model │ │ ├── cbi │ │ └── admin_network │ │ │ ├── proto_464xlat.lua │ │ │ ├── proto_6in4.lua │ │ │ ├── proto_6rd.lua │ │ │ ├── proto_6to4.lua │ │ │ ├── proto_aiccu.lua │ │ │ ├── proto_dhcpv6.lua │ │ │ ├── proto_dslite.lua │ │ │ ├── proto_hnet.lua │ │ │ └── proto_map.lua │ │ └── network │ │ ├── proto_4x6.lua │ │ ├── proto_6x4.lua │ │ ├── proto_aiccu.lua │ │ ├── proto_dhcpv6.lua │ │ └── proto_hnet.lua ├── luci-proto-ncm │ ├── Makefile │ └── luasrc │ │ └── model │ │ ├── cbi │ │ └── admin_network │ │ │ └── proto_ncm.lua │ │ └── network │ │ └── proto_ncm.lua ├── luci-proto-openconnect │ ├── Makefile │ └── luasrc │ │ └── model │ │ ├── cbi │ │ └── admin_network │ │ │ └── proto_openconnect.lua │ │ └── network │ │ └── proto_openconnect.lua ├── luci-proto-ppp │ ├── Makefile │ └── luasrc │ │ └── model │ │ ├── cbi │ │ └── admin_network │ │ │ ├── proto_l2tp.lua │ │ │ ├── proto_ppp.lua │ │ │ ├── proto_pppoa.lua │ │ │ ├── proto_pppoe.lua │ │ │ ├── proto_pppossh.lua │ │ │ └── proto_pptp.lua │ │ └── network │ │ └── proto_ppp.lua ├── luci-proto-qmi │ ├── Makefile │ └── luasrc │ │ └── model │ │ ├── cbi │ │ └── admin_network │ │ │ └── proto_qmi.lua │ │ └── network │ │ └── proto_qmi.lua ├── luci-proto-relay │ ├── Makefile │ └── luasrc │ │ └── model │ │ ├── cbi │ │ └── admin_network │ │ │ └── proto_relay.lua │ │ └── network │ │ └── proto_relay.lua ├── luci-proto-vpnc │ ├── Makefile │ └── luasrc │ │ └── model │ │ ├── cbi │ │ └── admin_network │ │ │ └── proto_vpnc.lua │ │ └── network │ │ └── proto_vpnc.lua └── luci-proto-wireguard │ ├── Makefile │ └── luasrc │ └── model │ ├── cbi │ └── admin_network │ │ └── proto_wireguard.lua │ └── network │ └── proto_wireguard.lua └── themes ├── luci-theme-amazeui ├── AmazeUI-Files │ └── amazeui-cut.css ├── Makefile ├── htdocs │ └── luci-static │ │ └── amazeui │ │ ├── amazeui-cut.min.css │ │ ├── amazeui.min.js │ │ ├── cascade.css │ │ ├── cbi.css │ │ ├── favicon.png │ │ └── jquery.min.js ├── luasrc │ └── view │ │ └── themes │ │ └── amazeui │ │ ├── footer.htm │ │ └── header.htm └── root │ └── etc │ └── uci-defaults │ └── luci-theme-amazeui ├── luci-theme-bootstrap ├── Makefile ├── htdocs │ └── luci-static │ │ └── bootstrap │ │ ├── cascade.css │ │ ├── favicon.ico │ │ ├── html5.js │ │ └── mobile.css ├── luasrc │ └── view │ │ └── themes │ │ └── bootstrap │ │ ├── footer.htm │ │ └── header.htm └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-bootstrap ├── luci-theme-freifunk-generic ├── Makefile ├── htdocs │ └── luci-static │ │ └── freifunk-generic │ │ ├── bg.jpg │ │ ├── cascade.css │ │ ├── header.jpg │ │ ├── ie7.css │ │ ├── logo.jpg │ │ ├── mobile.css │ │ └── smallscreen.css ├── luasrc │ └── view │ │ └── themes │ │ └── freifunk-generic │ │ ├── footer.htm │ │ └── header.htm └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-freifunk-generic ├── luci-theme-material ├── Makefile ├── htdocs │ └── luci-static │ │ └── material │ │ ├── css │ │ └── style.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── font.eot │ │ ├── font.svg │ │ ├── font.ttf │ │ └── font.woff │ │ ├── js │ │ ├── jquery.min.js │ │ └── script.js │ │ └── logo.png ├── luasrc │ └── view │ │ └── themes │ │ └── material │ │ ├── footer.htm │ │ └── header.htm └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-material ├── luci-theme-openwrt ├── Makefile ├── htdocs │ └── luci-static │ │ └── openwrt.org │ │ ├── cascade.css │ │ ├── ie6.css │ │ ├── ie7.css │ │ ├── ie8.css │ │ └── tabbg.png ├── luasrc │ └── view │ │ └── themes │ │ └── openwrt.org │ │ ├── footer.htm │ │ └── header.htm └── root │ └── etc │ └── uci-defaults │ └── 30_luci-theme-openwrt ├── luci-theme-openwrtcn ├── Makefile ├── htdocs │ └── luci-static │ │ └── openwrtcn │ │ ├── cascade.css │ │ ├── ie6.css │ │ ├── ie7.css │ │ ├── ie8.css │ │ └── logo.jpg ├── luasrc │ └── view │ │ └── themes │ │ └── openwrtcn │ │ ├── footer.htm │ │ └── header.htm └── root │ └── etc │ └── uci-defaults │ └── luci-theme-openwrtcn ├── luci-theme-oxygen ├── Makefile ├── htdocs │ └── luci-static │ │ └── oxygen │ │ ├── cascade.css │ │ ├── dashboard.css │ │ ├── icons │ │ ├── COPYING.oxygen │ │ ├── backup.png │ │ ├── bandwidth.png │ │ ├── certificate.png │ │ ├── connections.png │ │ ├── crontab.png │ │ ├── datetime.png │ │ ├── ddns.png │ │ ├── default.png │ │ ├── desktop.png │ │ ├── dhcp.png │ │ ├── diagnostics.png │ │ ├── diskapply.png │ │ ├── diskinfo.png │ │ ├── dmesg.png │ │ ├── download.png │ │ ├── email.png │ │ ├── externaldevice.png │ │ ├── firewall.png │ │ ├── flash.png │ │ ├── freifunk.png │ │ ├── guide.png │ │ ├── harddisk.png │ │ ├── hd-idle.png │ │ ├── hosts.png │ │ ├── key.png │ │ ├── lightbulb.png │ │ ├── load.png │ │ ├── login.png │ │ ├── login128.png │ │ ├── logout.png │ │ ├── memory.png │ │ ├── mldonkey.png │ │ ├── network.png │ │ ├── nfsd.png │ │ ├── nwan.png │ │ ├── overview.png │ │ ├── p910nd.png │ │ ├── package.png │ │ ├── processes.png │ │ ├── qos.png │ │ ├── radvd.png │ │ ├── restart.png │ │ ├── routes.png │ │ ├── samba.png │ │ ├── services.png │ │ ├── shell.png │ │ ├── startup.png │ │ ├── stats.png │ │ ├── status.png │ │ ├── switch.png │ │ ├── syslog.png │ │ ├── system.png │ │ ├── transmission.png │ │ ├── upnp.png │ │ ├── ushare.png │ │ ├── vlan.png │ │ ├── vpn.png │ │ ├── vsftpd.png │ │ ├── wireless.png │ │ ├── wol.png │ │ └── worker.png │ │ ├── ie6.css │ │ ├── ie7.css │ │ └── ie8.css ├── luasrc │ └── view │ │ └── themes │ │ └── oxygen │ │ ├── dashboard.htm │ │ ├── footer.htm │ │ ├── header.htm │ │ └── indexer.htm └── root │ └── etc │ └── uci-defaults │ └── luci-theme-oxygen └── luci-theme-xeye ├── Makefile ├── htdocs └── luci-static │ └── LuciXEyE │ ├── cascade.css │ ├── ie6.css │ ├── ie7.css │ └── ie8.css ├── luasrc └── view │ └── themes │ └── LuciXEyE │ ├── footer.htm │ └── header.htm └── root └── etc └── uci-defaults └── luci-theme-lucixeye /.buildpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/.buildpath -------------------------------------------------------------------------------- /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/.project -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/README.md -------------------------------------------------------------------------------- /THANKYOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/THANKYOU -------------------------------------------------------------------------------- /applications/luci-app-adblock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-adblock/Makefile -------------------------------------------------------------------------------- /applications/luci-app-adblock/po/it/adblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-adblock/po/it/adblock.po -------------------------------------------------------------------------------- /applications/luci-app-adblock/po/ja/adblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-adblock/po/ja/adblock.po -------------------------------------------------------------------------------- /applications/luci-app-adblock/po/ru/adblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-adblock/po/ru/adblock.po -------------------------------------------------------------------------------- /applications/luci-app-adblock/po/sv/adblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-adblock/po/sv/adblock.po -------------------------------------------------------------------------------- /applications/luci-app-advanced-reboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-advanced-reboot/Makefile -------------------------------------------------------------------------------- /applications/luci-app-advanced-reboot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-advanced-reboot/README.md -------------------------------------------------------------------------------- /applications/luci-app-ahcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/Makefile -------------------------------------------------------------------------------- /applications/luci-app-ahcp/luasrc/view/admin_status/index/ahcp.htm: -------------------------------------------------------------------------------- 1 | <%+ahcp_status%> 2 | -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/ca/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/ca/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/cs/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/cs/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/de/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/de/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/el/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/el/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/en/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/en/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/es/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/es/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/fr/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/fr/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/he/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/he/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/hu/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/hu/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/it/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/it/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/ja/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/ja/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/ms/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/ms/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/no/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/no/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/pl/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/pl/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/pt-br/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/pt-br/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/pt/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/pt/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/ro/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/ro/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/ru/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/ru/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/sk/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/sk/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/sv/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/sv/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/templates/ahcp.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/templates/ahcp.pot -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/tr/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/tr/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/uk/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/uk/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/vi/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/vi/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/zh-cn/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/zh-cn/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-ahcp/po/zh-tw/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ahcp/po/zh-tw/ahcp.po -------------------------------------------------------------------------------- /applications/luci-app-aria2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-aria2/Makefile -------------------------------------------------------------------------------- /applications/luci-app-aria2/po/pt-br/aria2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-aria2/po/pt-br/aria2.po -------------------------------------------------------------------------------- /applications/luci-app-aria2/po/ru/aria2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-aria2/po/ru/aria2.po -------------------------------------------------------------------------------- /applications/luci-app-aria2/po/sv/aria2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-aria2/po/sv/aria2.po -------------------------------------------------------------------------------- /applications/luci-app-aria2/po/zh-cn/aria2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-aria2/po/zh-cn/aria2.po -------------------------------------------------------------------------------- /applications/luci-app-aria2/po/zh-tw/aria2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-aria2/po/zh-tw/aria2.po -------------------------------------------------------------------------------- /applications/luci-app-arpbind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-arpbind/Makefile -------------------------------------------------------------------------------- /applications/luci-app-arpbind/root/etc/hotplug.d/iface/50-arpbind: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | [ "$ACTION" = "ifup" ] && /etc/init.d/arpbind start 3 | -------------------------------------------------------------------------------- /applications/luci-app-asterisk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/Makefile -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/ca/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/ca/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/cs/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/cs/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/de/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/de/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/el/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/el/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/en/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/en/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/es/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/es/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/fr/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/fr/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/he/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/he/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/hu/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/hu/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/it/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/it/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/ja/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/ja/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/ms/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/ms/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/no/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/no/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/pl/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/pl/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/pt/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/pt/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/ro/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/ro/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/ru/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/ru/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/sk/asterisk.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/sv/asterisk.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/templates/asterisk.pot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/tr/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/tr/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/uk/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/uk/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-asterisk/po/vi/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-asterisk/po/vi/asterisk.po -------------------------------------------------------------------------------- /applications/luci-app-bcp38/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-bcp38/Makefile -------------------------------------------------------------------------------- /applications/luci-app-bcp38/po/ru/bcp38.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-bcp38/po/ru/bcp38.po -------------------------------------------------------------------------------- /applications/luci-app-bcp38/po/sv/bcp38.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-bcp38/po/sv/bcp38.po -------------------------------------------------------------------------------- /applications/luci-app-bcp38/po/zh-cn/bcp38.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-bcp38/po/zh-cn/bcp38.po -------------------------------------------------------------------------------- /applications/luci-app-bcp38/po/zh-tw/bcp38.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-bcp38/po/zh-tw/bcp38.po -------------------------------------------------------------------------------- /applications/luci-app-clamav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-clamav/Makefile -------------------------------------------------------------------------------- /applications/luci-app-clamav/po/ja/clamav.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-clamav/po/ja/clamav.po -------------------------------------------------------------------------------- /applications/luci-app-clamav/po/ru/clamav.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-clamav/po/ru/clamav.po -------------------------------------------------------------------------------- /applications/luci-app-clamav/po/sv/clamav.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-clamav/po/sv/clamav.po -------------------------------------------------------------------------------- /applications/luci-app-clamav/po/zh-cn/clamav.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-clamav/po/zh-cn/clamav.po -------------------------------------------------------------------------------- /applications/luci-app-commands/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/Makefile -------------------------------------------------------------------------------- /applications/luci-app-commands/po/ca/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/ca/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/cs/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/cs/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/de/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/de/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/el/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/el/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/en/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/en/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/es/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/es/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/fr/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/fr/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/he/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/he/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/hu/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/hu/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/it/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/it/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/ja/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/ja/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/ms/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/ms/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/no/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/no/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/pl/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/pl/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/pt/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/pt/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/ro/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/ro/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/ru/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/ru/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/sk/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/sk/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/sv/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/sv/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/tr/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/tr/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/uk/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/uk/commands.po -------------------------------------------------------------------------------- /applications/luci-app-commands/po/vi/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-commands/po/vi/commands.po -------------------------------------------------------------------------------- /applications/luci-app-coovachilli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-coovachilli/Makefile -------------------------------------------------------------------------------- /applications/luci-app-cshark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-cshark/Makefile -------------------------------------------------------------------------------- /applications/luci-app-ddns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/Makefile -------------------------------------------------------------------------------- /applications/luci-app-ddns/luasrc/tools/ddns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/luasrc/tools/ddns.lua -------------------------------------------------------------------------------- /applications/luci-app-ddns/luasrc/view/admin_status/index/ddns.htm: -------------------------------------------------------------------------------- 1 | <%+ddns/system_status%> 2 | -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/ca/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/ca/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/cs/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/cs/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/de/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/de/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/el/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/el/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/es/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/es/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/fr/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/fr/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/he/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/he/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/hu/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/hu/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/it/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/it/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/ja/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/ja/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/no/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/no/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/pl/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/pl/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/pt-br/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/pt-br/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/pt/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/pt/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/ro/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/ro/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/ru/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/ru/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/sv/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/sv/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/templates/ddns.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/templates/ddns.pot -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/tr/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/tr/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/uk/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/uk/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/vi/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/vi/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/zh-cn/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/zh-cn/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/zh-tw/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ddns/po/zh-tw/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-diag-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-diag-core/Makefile -------------------------------------------------------------------------------- /applications/luci-app-dns2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-dns2socks/Makefile -------------------------------------------------------------------------------- /applications/luci-app-dnscrypt-proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-dnscrypt-proxy/Makefile -------------------------------------------------------------------------------- /applications/luci-app-dump1090/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-dump1090/Makefile -------------------------------------------------------------------------------- /applications/luci-app-dynapoint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-dynapoint/Makefile -------------------------------------------------------------------------------- /applications/luci-app-e2guardian/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-e2guardian/Makefile -------------------------------------------------------------------------------- /applications/luci-app-firewall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-firewall/Makefile -------------------------------------------------------------------------------- /applications/luci-app-firewall/po/ca/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-firewall/po/ca/firewall.po -------------------------------------------------------------------------------- /applications/luci-app-firewall/po/cs/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-firewall/po/cs/firewall.po -------------------------------------------------------------------------------- /applications/luci-app-firewall/po/de/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-firewall/po/de/firewall.po -------------------------------------------------------------------------------- /applications/luci-app-firewall/po/el/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-firewall/po/el/firewall.po -------------------------------------------------------------------------------- /applications/luci-app-firewall/po/en/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-firewall/po/en/firewall.po -------------------------------------------------------------------------------- /applications/luci-app-firewall/po/es/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-firewall/po/es/firewall.po -------------------------------------------------------------------------------- /applications/luci-app-firewall/po/fr/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-firewall/po/fr/firewall.po -------------------------------------------------------------------------------- /applications/luci-app-firewall/po/he/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-firewall/po/he/firewall.po -------------------------------------------------------------------------------- /applications/luci-app-firewall/po/hu/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-firewall/po/hu/firewall.po -------------------------------------------------------------------------------- /applications/luci-app-firewall/po/it/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-firewall/po/it/firewall.po -------------------------------------------------------------------------------- /applications/luci-app-firewall/po/ja/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-firewall/po/ja/firewall.po -------------------------------------------------------------------------------- /applications/luci-app-firewall/po/ko/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-firewall/po/ko/firewall.po -------------------------------------------------------------------------------- /applications/luci-app-freifunk-diagnostics/root/etc/uci-defaults/40_luci-freifunk-diagnostics: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rm -f /tmp/luci-indexcache 3 | -------------------------------------------------------------------------------- /applications/luci-app-freifunk-widgets/root/lib/upgrade/keep.d/freifunk-widgets: -------------------------------------------------------------------------------- 1 | /usr/share/customtext 2 | -------------------------------------------------------------------------------- /applications/luci-app-fwknopd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-fwknopd/Makefile -------------------------------------------------------------------------------- /applications/luci-app-hd-idle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-hd-idle/Makefile -------------------------------------------------------------------------------- /applications/luci-app-ltqtapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ltqtapi/Makefile -------------------------------------------------------------------------------- /applications/luci-app-ltqtapi/luasrc/view/admin_status/index/telephony.htm: -------------------------------------------------------------------------------- 1 | <%+telephony_status%> 2 | -------------------------------------------------------------------------------- /applications/luci-app-lxc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-lxc/Makefile -------------------------------------------------------------------------------- /applications/luci-app-lxc/luasrc/view/lxc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-lxc/luasrc/view/lxc.htm -------------------------------------------------------------------------------- /applications/luci-app-lxc/root/etc/config/lxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-lxc/root/etc/config/lxc -------------------------------------------------------------------------------- /applications/luci-app-meshwizard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-meshwizard/Makefile -------------------------------------------------------------------------------- /applications/luci-app-minidlna/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-minidlna/Makefile -------------------------------------------------------------------------------- /applications/luci-app-minidlna/luasrc/view/admin_status/index/minidlna.htm: -------------------------------------------------------------------------------- 1 | <%+minidlna_status%> 2 | -------------------------------------------------------------------------------- /applications/luci-app-mjpg-streamer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-mjpg-streamer/Makefile -------------------------------------------------------------------------------- /applications/luci-app-mwan3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-mwan3/Makefile -------------------------------------------------------------------------------- /applications/luci-app-mwan3/po/ja/mwan3.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-mwan3/po/ja/mwan3.po -------------------------------------------------------------------------------- /applications/luci-app-mwan3/po/ru/mwan3.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-mwan3/po/ru/mwan3.po -------------------------------------------------------------------------------- /applications/luci-app-mwan3/po/zh-cn/mwan3.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-mwan3/po/zh-cn/mwan3.po -------------------------------------------------------------------------------- /applications/luci-app-mwan3/po/zh-tw/mwan3.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-mwan3/po/zh-tw/mwan3.po -------------------------------------------------------------------------------- /applications/luci-app-n2n_v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-n2n_v2/Makefile -------------------------------------------------------------------------------- /applications/luci-app-ngrokc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ngrokc/Makefile -------------------------------------------------------------------------------- /applications/luci-app-nlbwmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-nlbwmon/Makefile -------------------------------------------------------------------------------- /applications/luci-app-noddos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-noddos/Makefile -------------------------------------------------------------------------------- /applications/luci-app-noddos/po/ja/noddos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-noddos/po/ja/noddos.po -------------------------------------------------------------------------------- /applications/luci-app-noddos/po/ru/noddos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-noddos/po/ru/noddos.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/Makefile -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/ca/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/ca/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/cs/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/cs/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/de/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/de/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/el/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/el/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/en/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/en/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/es/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/es/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/fr/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/fr/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/he/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/he/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/hu/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/hu/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/it/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/it/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/ja/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/ja/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/ms/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/ms/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/no/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/no/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/pl/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/pl/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/pt-br/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/pt-br/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/pt/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/pt/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/ro/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/ro/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/ru/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/ru/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/sk/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/sk/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/sv/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/sv/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/tr/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/tr/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/uk/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/uk/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/vi/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/vi/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/zh-cn/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/zh-cn/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ntpc/po/zh-tw/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ntpc/po/zh-tw/ntpc.po -------------------------------------------------------------------------------- /applications/luci-app-ocserv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-ocserv/Makefile -------------------------------------------------------------------------------- /applications/luci-app-ocserv/luasrc/view/admin_status/index/ocserv.htm: -------------------------------------------------------------------------------- 1 | <%+ocserv_status%> 2 | -------------------------------------------------------------------------------- /applications/luci-app-olsr-services/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr-services/Makefile -------------------------------------------------------------------------------- /applications/luci-app-olsr-viz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr-viz/Makefile -------------------------------------------------------------------------------- /applications/luci-app-olsr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/Makefile -------------------------------------------------------------------------------- /applications/luci-app-olsr/htdocs/cgi-bin-nodes.html: -------------------------------------------------------------------------------- 1 | cgi-bin-status.html -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/ca/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/ca/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/cs/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/cs/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/de/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/de/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/el/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/el/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/en/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/en/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/es/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/es/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/fr/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/fr/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/he/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/he/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/hu/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/hu/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/it/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/it/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/ja/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/ja/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/ms/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/ms/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/no/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/no/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/pl/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/pl/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/pt-br/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/pt-br/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/pt/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/pt/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/ro/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/ro/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/ru/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/ru/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/sk/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/sk/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/sv/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/sv/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/tr/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/tr/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/uk/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/uk/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/vi/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/vi/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/zh-cn/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/zh-cn/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/zh-tw/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-olsr/po/zh-tw/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/root/etc/config/luci_olsr: -------------------------------------------------------------------------------- 1 | config 'olsr' 'general' 2 | option 'resolve' '1' 3 | -------------------------------------------------------------------------------- /applications/luci-app-openvpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-openvpn/Makefile -------------------------------------------------------------------------------- /applications/luci-app-p910nd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/Makefile -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/ca/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/ca/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/cs/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/cs/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/de/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/de/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/el/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/el/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/en/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/en/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/es/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/es/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/fr/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/fr/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/he/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/he/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/hu/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/hu/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/it/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/it/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/ja/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/ja/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/ms/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/ms/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/no/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/no/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/pl/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/pl/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/pt/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/pt/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/ro/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/ro/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/ru/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/ru/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/sk/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/sk/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/sv/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/sv/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/tr/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/tr/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/uk/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/uk/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-p910nd/po/vi/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-p910nd/po/vi/p910nd.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/Makefile -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/ca/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/ca/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/cs/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/cs/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/de/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/de/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/el/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/el/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/en/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/en/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/es/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/es/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/fr/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/fr/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/he/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/he/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/hu/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/hu/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/it/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/it/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/ja/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/ja/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/ms/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/ms/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/no/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/no/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/pl/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/pl/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/pt/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/pt/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/ro/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/ro/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/ru/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/ru/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/sk/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/sk/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/sv/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/sv/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/tr/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/tr/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/uk/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/uk/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-polipo/po/vi/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-polipo/po/vi/polipo.po -------------------------------------------------------------------------------- /applications/luci-app-privoxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-privoxy/Makefile -------------------------------------------------------------------------------- /applications/luci-app-qos-guoguo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos-guoguo/Makefile -------------------------------------------------------------------------------- /applications/luci-app-qos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/Makefile -------------------------------------------------------------------------------- /applications/luci-app-qos/po/ca/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/ca/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/cs/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/cs/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/de/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/de/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/el/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/el/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/en/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/en/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/es/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/es/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/fr/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/fr/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/he/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/he/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/hu/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/hu/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/it/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/it/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/ja/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/ja/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/ms/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/ms/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/no/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/no/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/pl/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/pl/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/pt-br/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/pt-br/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/pt/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/pt/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/ro/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/ro/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/ru/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/ru/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/sk/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/sk/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/sv/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/sv/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/tr/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/tr/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/uk/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/uk/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/vi/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/vi/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/zh-cn/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/zh-cn/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/zh-tw/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-qos/po/zh-tw/qos.po -------------------------------------------------------------------------------- /applications/luci-app-radicale/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-radicale/Makefile -------------------------------------------------------------------------------- /applications/luci-app-redsocks2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-redsocks2/Makefile -------------------------------------------------------------------------------- /applications/luci-app-redsocks2/ipkg/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-redsocks2/ipkg/postinst -------------------------------------------------------------------------------- /applications/luci-app-redsocks2/root/usr/share/redsocks2/firewall.include: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | /etc/init.d/redsocks2 restart 3 | -------------------------------------------------------------------------------- /applications/luci-app-samba/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/Makefile -------------------------------------------------------------------------------- /applications/luci-app-samba/po/ca/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/ca/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/cs/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/cs/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/de/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/de/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/el/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/el/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/en/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/en/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/es/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/es/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/fr/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/fr/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/he/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/he/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/hu/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/hu/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/it/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/it/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/ja/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/ja/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/ms/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/ms/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/no/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/no/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/pl/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/pl/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/pt-br/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/pt-br/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/pt/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/pt/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/ro/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/ro/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/ru/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/ru/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/sk/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/sk/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/sv/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/sv/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/tr/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/tr/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/uk/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/uk/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/vi/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/vi/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/zh-cn/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/zh-cn/samba.po -------------------------------------------------------------------------------- /applications/luci-app-samba/po/zh-tw/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-samba/po/zh-tw/samba.po -------------------------------------------------------------------------------- /applications/luci-app-shairplay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-shairplay/Makefile -------------------------------------------------------------------------------- /applications/luci-app-siitwizard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-siitwizard/Makefile -------------------------------------------------------------------------------- /applications/luci-app-simple-adblock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-simple-adblock/Makefile -------------------------------------------------------------------------------- /applications/luci-app-splash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/Makefile -------------------------------------------------------------------------------- /applications/luci-app-splash/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/README -------------------------------------------------------------------------------- /applications/luci-app-splash/po/ca/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/ca/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/cs/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/cs/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/de/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/de/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/el/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/el/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/en/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/en/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/es/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/es/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/fr/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/fr/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/he/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/he/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/hu/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/hu/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/it/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/it/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/ja/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/ja/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/ms/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/ms/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/no/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/no/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/pl/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/pl/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/pt/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/pt/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/ro/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/ro/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/ru/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/ru/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/sk/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/sk/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/sv/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/sv/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/tr/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/tr/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/uk/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/uk/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/po/vi/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-splash/po/vi/splash.po -------------------------------------------------------------------------------- /applications/luci-app-splash/root/etc/config/luci_splash: -------------------------------------------------------------------------------- 1 | config core general 2 | option leasetime 1 -------------------------------------------------------------------------------- /applications/luci-app-squid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-squid/Makefile -------------------------------------------------------------------------------- /applications/luci-app-statistics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-statistics/Makefile -------------------------------------------------------------------------------- /applications/luci-app-syncdial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-syncdial/Makefile -------------------------------------------------------------------------------- /applications/luci-app-tinyproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-tinyproxy/Makefile -------------------------------------------------------------------------------- /applications/luci-app-transmission/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-transmission/Makefile -------------------------------------------------------------------------------- /applications/luci-app-travelmate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-travelmate/Makefile -------------------------------------------------------------------------------- /applications/luci-app-udpxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-udpxy/Makefile -------------------------------------------------------------------------------- /applications/luci-app-uhttpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-uhttpd/Makefile -------------------------------------------------------------------------------- /applications/luci-app-uhttpd/po/ja/uhttpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-uhttpd/po/ja/uhttpd.po -------------------------------------------------------------------------------- /applications/luci-app-uhttpd/po/ru/uhttpd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-uhttpd/po/ru/uhttpd.po -------------------------------------------------------------------------------- /applications/luci-app-unbound/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-unbound/Makefile -------------------------------------------------------------------------------- /applications/luci-app-upnp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/Makefile -------------------------------------------------------------------------------- /applications/luci-app-upnp/luasrc/view/admin_status/index/upnp.htm: -------------------------------------------------------------------------------- 1 | <%+upnp_status%> 2 | -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/ca/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/ca/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/cs/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/cs/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/de/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/de/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/el/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/el/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/en/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/en/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/es/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/es/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/fr/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/fr/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/he/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/he/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/hu/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/hu/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/it/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/it/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/ja/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/ja/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/ms/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/ms/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/no/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/no/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/pl/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/pl/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/pt-br/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/pt-br/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/pt/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/pt/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/ro/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/ro/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/ru/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/ru/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/sk/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/sk/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/sv/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/sv/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/tr/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/tr/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/uk/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/uk/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/vi/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/vi/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/zh-cn/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/zh-cn/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-upnp/po/zh-tw/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-upnp/po/zh-tw/upnp.po -------------------------------------------------------------------------------- /applications/luci-app-usb-printer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-usb-printer/Makefile -------------------------------------------------------------------------------- /applications/luci-app-usb-printer/root/etc/config/usb_printer: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/luci-app-vnstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/Makefile -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/ca/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/ca/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/cs/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/cs/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/de/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/de/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/el/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/el/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/en/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/en/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/es/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/es/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/fr/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/fr/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/he/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/he/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/hu/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/hu/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/it/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/it/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/ja/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/ja/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/ms/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/ms/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/no/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/no/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/pl/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/pl/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/pt/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/pt/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/ro/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/ro/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/ru/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/ru/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/sk/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/sk/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/sv/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/sv/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/tr/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/tr/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/uk/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/uk/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vnstat/po/vi/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vnstat/po/vi/vnstat.po -------------------------------------------------------------------------------- /applications/luci-app-vpnbypass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vpnbypass/Makefile -------------------------------------------------------------------------------- /applications/luci-app-vsftpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-vsftpd/Makefile -------------------------------------------------------------------------------- /applications/luci-app-watchcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-watchcat/Makefile -------------------------------------------------------------------------------- /applications/luci-app-webshell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-webshell/Makefile -------------------------------------------------------------------------------- /applications/luci-app-wifischedule/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wifischedule/Makefile -------------------------------------------------------------------------------- /applications/luci-app-wifischedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wifischedule/README.md -------------------------------------------------------------------------------- /applications/luci-app-wireguard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wireguard/Makefile -------------------------------------------------------------------------------- /applications/luci-app-wol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/Makefile -------------------------------------------------------------------------------- /applications/luci-app-wol/po/ca/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/ca/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/cs/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/cs/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/de/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/de/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/el/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/el/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/en/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/en/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/es/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/es/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/fr/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/fr/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/he/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/he/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/hu/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/hu/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/it/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/it/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/ja/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/ja/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/ms/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/ms/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/no/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/no/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/pl/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/pl/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/pt-br/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/pt-br/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/pt/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/pt/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/ro/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/ro/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/ru/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/ru/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/sk/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/sk/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/sv/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/sv/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/tr/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/tr/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/uk/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/uk/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/vi/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/vi/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/zh-cn/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/zh-cn/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/zh-tw/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/applications/luci-app-wol/po/zh-tw/wol.po -------------------------------------------------------------------------------- /collections/luci-light/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/collections/luci-light/Makefile -------------------------------------------------------------------------------- /collections/luci-ssl-openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/collections/luci-ssl-openssl/Makefile -------------------------------------------------------------------------------- /collections/luci-ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/collections/luci-ssl/Makefile -------------------------------------------------------------------------------- /collections/luci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/collections/luci/Makefile -------------------------------------------------------------------------------- /contrib/package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/contrib/package/Makefile -------------------------------------------------------------------------------- /contrib/package/community-profiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/contrib/package/community-profiles/Makefile -------------------------------------------------------------------------------- /contrib/package/freifunk-common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/contrib/package/freifunk-common/Makefile -------------------------------------------------------------------------------- /contrib/package/freifunk-firewall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/contrib/package/freifunk-firewall/Makefile -------------------------------------------------------------------------------- /contrib/package/freifunk-gwcheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/contrib/package/freifunk-gwcheck/Makefile -------------------------------------------------------------------------------- /contrib/package/freifunk-mapupdate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/contrib/package/freifunk-mapupdate/Makefile -------------------------------------------------------------------------------- /contrib/package/freifunk-watchdog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/contrib/package/freifunk-watchdog/Makefile -------------------------------------------------------------------------------- /contrib/package/freifunk-watchdog/src/ucix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/contrib/package/freifunk-watchdog/src/ucix.c -------------------------------------------------------------------------------- /contrib/package/freifunk-watchdog/src/ucix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/contrib/package/freifunk-watchdog/src/ucix.h -------------------------------------------------------------------------------- /contrib/package/lucihttp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/contrib/package/lucihttp/Makefile -------------------------------------------------------------------------------- /contrib/package/meshwizard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/contrib/package/meshwizard/Makefile -------------------------------------------------------------------------------- /documentation/CBI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/CBI.md -------------------------------------------------------------------------------- /documentation/JsonRpcHowTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/JsonRpcHowTo.md -------------------------------------------------------------------------------- /documentation/LAR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/LAR.md -------------------------------------------------------------------------------- /documentation/LMO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/LMO.md -------------------------------------------------------------------------------- /documentation/LuCI-0.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/LuCI-0.10.md -------------------------------------------------------------------------------- /documentation/Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/Modules.md -------------------------------------------------------------------------------- /documentation/ModulesHowTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/ModulesHowTo.md -------------------------------------------------------------------------------- /documentation/Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/Templates.md -------------------------------------------------------------------------------- /documentation/ThemesHowTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/ThemesHowTo.md -------------------------------------------------------------------------------- /documentation/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/index.html -------------------------------------------------------------------------------- /documentation/api/luadoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/luadoc.css -------------------------------------------------------------------------------- /documentation/api/modules/luci.http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.http.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.i18n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.i18n.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.ip.cidr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.ip.cidr.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.ip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.ip.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.json.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.jsonc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.jsonc.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.model.uci.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.model.uci.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.rpcc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.rpcc.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.rpcc.ruci.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.rpcc.ruci.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.sys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.sys.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.sys.init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.sys.init.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.sys.net.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.sys.net.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.sys.user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.sys.user.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.sys.wifi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.sys.wifi.html -------------------------------------------------------------------------------- /documentation/api/modules/luci.util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/luci.util.html -------------------------------------------------------------------------------- /documentation/api/modules/nixio.File.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/nixio.File.html -------------------------------------------------------------------------------- /documentation/api/modules/nixio.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/nixio.README.html -------------------------------------------------------------------------------- /documentation/api/modules/nixio.Socket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/nixio.Socket.html -------------------------------------------------------------------------------- /documentation/api/modules/nixio.bin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/nixio.bin.html -------------------------------------------------------------------------------- /documentation/api/modules/nixio.bit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/nixio.bit.html -------------------------------------------------------------------------------- /documentation/api/modules/nixio.crypto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/nixio.crypto.html -------------------------------------------------------------------------------- /documentation/api/modules/nixio.fs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/nixio.fs.html -------------------------------------------------------------------------------- /documentation/api/modules/nixio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/api/modules/nixio.html -------------------------------------------------------------------------------- /documentation/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/documentation/i18n.md -------------------------------------------------------------------------------- /libs/luci-lib-httpclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-httpclient/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-httpprotoutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-httpprotoutils/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-ip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-ip/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-ip/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-ip/src/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-ip/src/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-ip/src/ip.c -------------------------------------------------------------------------------- /libs/luci-lib-ip/src/ip.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-ip/src/ip.luadoc -------------------------------------------------------------------------------- /libs/luci-lib-json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-json/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-json/luasrc/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-json/luasrc/json.lua -------------------------------------------------------------------------------- /libs/luci-lib-json/luasrc/json.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-json/luasrc/json.luadoc -------------------------------------------------------------------------------- /libs/luci-lib-jsonc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-jsonc/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-jsonc/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-jsonc/src/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-jsonc/src/jsonc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-jsonc/src/jsonc.c -------------------------------------------------------------------------------- /libs/luci-lib-jsonc/src/jsonc.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-jsonc/src/jsonc.luadoc -------------------------------------------------------------------------------- /libs/luci-lib-luaneightbl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-luaneightbl/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-luaneightbl/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-luaneightbl/src/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-luaneightbl/src/neightbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-luaneightbl/src/neightbl.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/.gitignore -------------------------------------------------------------------------------- /libs/luci-lib-nixio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/LICENSE -------------------------------------------------------------------------------- /libs/luci-lib-nixio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/NOTICE -------------------------------------------------------------------------------- /libs/luci-lib-nixio/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/README -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/README: -------------------------------------------------------------------------------- 1 | 2 | See www/index.html for the README, CHANGELOG, LICENSE and other notes. 3 | 4 | -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/bindings/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/bindings/Config.in -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/bindings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/bindings/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/bindings/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/bindings/README -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/config/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/config/.config -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/config/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/config/Config.in -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/config/JMeter.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/config/JMeter.jmx -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/config/Rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/config/Rules.mak -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/config/axhttpd.aip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/config/axhttpd.aip -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/config/axtls.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/config/axtls.RES -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/config/axtls.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/config/axtls.rc -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/config/config.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/config/linuxconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/config/linuxconfig -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/config/win32config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/config/win32config -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/aes.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/bigint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/bigint.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/bigint.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/crypto.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/hmac.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/md2.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/md5.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/rc4.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/rsa.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/sha1.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/docsrc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/docsrc/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/docsrc/axTLS.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/docsrc/axTLS.dox -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/httpd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/httpd/Config.in -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/httpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/httpd/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/httpd/axhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/httpd/axhttp.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/httpd/axhttpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/httpd/axhttpd.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/httpd/htpasswd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/httpd/htpasswd.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/httpd/kepler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/httpd/kepler.patch -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/httpd/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/httpd/proc.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/httpd/tdate_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/httpd/tdate_parse.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/samples/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/samples/Config.in -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/samples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/samples/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/samples/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/samples/c/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/samples/c/axssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/samples/c/axssl.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/samples/java/manifest.mf: -------------------------------------------------------------------------------- 1 | Main-Class: axssl 2 | -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/BigIntConfig.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/BigIntConfig.in -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/Config.in -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/asn1.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/cert.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/crypto_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/crypto_misc.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/gen_cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/gen_cert.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/loader.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/openssl.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/os_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/os_port.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/os_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/os_port.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/p12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/p12.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/private_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/private_key.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/ssl.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/test/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/test/datatest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/test/datatest.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/test/gnutls.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/test/gnutls.cer -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/test/ms_iis.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/test/ms_iis.cer -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/test/socgen.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/test/socgen.cer -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/test/ssltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/test/ssltest.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/tls1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/tls1.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/tls1.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/tls1_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/tls1_clnt.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/tls1_svr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/tls1_svr.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/version.h: -------------------------------------------------------------------------------- 1 | #define AXTLS_VERSION "1.2.1" 2 | -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/x509.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/www/bin/.htaccess: -------------------------------------------------------------------------------- 1 | Deny all 2 | 3 | -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/www/favicon.ico -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/www/index.html -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/www/lua/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/www/lua/env.lua -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/www/lua/overview.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/www/lua/overview.lp -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/www/lua/test_fs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axTLS/www/lua/test_fs.lua -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/www/test_dir/bin/.htaccess: -------------------------------------------------------------------------------- 1 | Deny all 2 | -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/www/test_dir/no_http/.htaccess: -------------------------------------------------------------------------------- 1 | SSLRequireSSL 2 | -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/www/test_dir/no_ssl/.htaccess: -------------------------------------------------------------------------------- 1 | SSLDenySSL 2 | -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axtls-config/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axtls-config/.config -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axtls-config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/axtls-config/config.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/docsrc/CHANGELOG.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/docsrc/CHANGELOG.lua -------------------------------------------------------------------------------- /libs/luci-lib-nixio/docsrc/README.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/docsrc/README.lua -------------------------------------------------------------------------------- /libs/luci-lib-nixio/docsrc/nixio.File.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/docsrc/nixio.File.lua -------------------------------------------------------------------------------- /libs/luci-lib-nixio/docsrc/nixio.Socket.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/docsrc/nixio.Socket.lua -------------------------------------------------------------------------------- /libs/luci-lib-nixio/docsrc/nixio.bin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/docsrc/nixio.bin.lua -------------------------------------------------------------------------------- /libs/luci-lib-nixio/docsrc/nixio.bit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/docsrc/nixio.bit.lua -------------------------------------------------------------------------------- /libs/luci-lib-nixio/docsrc/nixio.crypto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/docsrc/nixio.crypto.lua -------------------------------------------------------------------------------- /libs/luci-lib-nixio/docsrc/nixio.fs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/docsrc/nixio.fs.lua -------------------------------------------------------------------------------- /libs/luci-lib-nixio/docsrc/nixio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/docsrc/nixio.lua -------------------------------------------------------------------------------- /libs/luci-lib-nixio/nixio-0.3-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/nixio-0.3-1.rockspec -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/address.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/address.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/axtls-compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/axtls-compat.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/axtls-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/axtls-compat.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/binary.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/bind.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/bit.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/cyassl-compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/cyassl-compat.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/cyassl-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/cyassl-compat.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/file.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/fs.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/io.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/mingw-compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/mingw-compat.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/mingw-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/mingw-compat.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/nixio-tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/nixio-tls.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/nixio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/nixio.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/nixio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/nixio.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/poll.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/process.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/protoent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/protoent.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/socket.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/sockopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/sockopt.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/splice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/splice.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/syslog.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/tls-context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/tls-context.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/tls-crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/tls-crypto.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/tls-socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/tls-socket.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-nixio/src/user.c -------------------------------------------------------------------------------- /libs/luci-lib-px5g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-px5g/lua/px5g/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/lua/px5g/util.lua -------------------------------------------------------------------------------- /libs/luci-lib-px5g/root/usr/sbin/px5g-genkeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/root/usr/sbin/px5g-genkeys -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/library/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/library/bignum.c -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/library/havege.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/library/havege.c -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/library/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/library/rsa.c -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/library/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/library/sha1.c -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/library/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/library/timing.c -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/library/x509write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/library/x509write.c -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/polarssl/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/polarssl/bignum.h -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/polarssl/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/polarssl/bn_mul.h -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/polarssl/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/polarssl/config.h -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/polarssl/havege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/polarssl/havege.h -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/polarssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/polarssl/rsa.h -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/polarssl/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/polarssl/sha1.h -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/polarssl/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/polarssl/timing.h -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/polarssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/polarssl/x509.h -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/px5g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/px5g.c -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/px5g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-px5g/src/px5g.h -------------------------------------------------------------------------------- /libs/luci-lib-rpcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-rpcc/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-rpcc/luasrc/rpcc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-rpcc/luasrc/rpcc.lua -------------------------------------------------------------------------------- /libs/luci-lib-rpcc/luasrc/rpcc.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-rpcc/luasrc/rpcc.luadoc -------------------------------------------------------------------------------- /libs/luci-lib-rpcc/luasrc/rpcc/ruci.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-rpcc/luasrc/rpcc/ruci.lua -------------------------------------------------------------------------------- /libs/luci-lib-rpcc/luasrc/rpcc/ruci.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/luci-lib-rpcc/luasrc/rpcc/ruci.luadoc -------------------------------------------------------------------------------- /libs/rpcd-mod-rrdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/rpcd-mod-rrdns/Makefile -------------------------------------------------------------------------------- /libs/rpcd-mod-rrdns/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/rpcd-mod-rrdns/src/CMakeLists.txt -------------------------------------------------------------------------------- /libs/rpcd-mod-rrdns/src/rrdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/rpcd-mod-rrdns/src/rrdns.c -------------------------------------------------------------------------------- /libs/rpcd-mod-rrdns/src/rrdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/libs/rpcd-mod-rrdns/src/rrdns.h -------------------------------------------------------------------------------- /luci.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/luci.mk -------------------------------------------------------------------------------- /modules/luci-base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/Makefile -------------------------------------------------------------------------------- /modules/luci-base/htdocs/cgi-bin/luci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/htdocs/cgi-bin/luci -------------------------------------------------------------------------------- /modules/luci-base/luasrc/cacheloader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/cacheloader.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/cbi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/cbi.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/cbi/datatypes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/cbi/datatypes.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/ccache.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/ccache.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/config.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/debug.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/dispatcher.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/dispatcher.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/dispatcher.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/dispatcher.luadoc -------------------------------------------------------------------------------- /modules/luci-base/luasrc/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/http.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/http.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/http.luadoc -------------------------------------------------------------------------------- /modules/luci-base/luasrc/i18n.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/i18n.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/i18n.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/i18n.luadoc -------------------------------------------------------------------------------- /modules/luci-base/luasrc/ltn12.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/ltn12.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/model/firewall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/model/firewall.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/model/ipkg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/model/ipkg.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/model/ipkg.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/model/ipkg.luadoc -------------------------------------------------------------------------------- /modules/luci-base/luasrc/model/network.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/model/network.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/model/uci.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/model/uci.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/model/uci.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/model/uci.luadoc -------------------------------------------------------------------------------- /modules/luci-base/luasrc/sgi/cgi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/sgi/cgi.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/sgi/uhttpd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/sgi/uhttpd.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/store.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/store.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/sys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/sys.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/sys.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/sys.luadoc -------------------------------------------------------------------------------- /modules/luci-base/luasrc/sys/iptparser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/sys/iptparser.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/sys/iptparser.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/sys/iptparser.luadoc -------------------------------------------------------------------------------- /modules/luci-base/luasrc/sys/zoneinfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/sys/zoneinfo.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/template.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/template.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/tools/proto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/tools/proto.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/tools/status.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/tools/status.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/tools/webadmin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/tools/webadmin.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/util.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/util.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/util.luadoc -------------------------------------------------------------------------------- /modules/luci-base/luasrc/version.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/version.lua -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/browser.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/browser.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/button.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/button.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/cell_valuefooter.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/compound.htm: -------------------------------------------------------------------------------- 1 | <%- self:render_children() %> 2 | -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/dvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/dvalue.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/dynlist.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/dynlist.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/error.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/error.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/footer.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/fvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/fvalue.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/header.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/lvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/lvalue.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/map.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/map.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/mvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/mvalue.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/tabmenu.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/tabmenu.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/tvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/tvalue.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/upload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/upload.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/cbi/value.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/cbi/value.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/csrftoken.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/csrftoken.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/error404.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/error404.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/error500.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/error500.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/footer.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/header.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/indexer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/indexer.htm -------------------------------------------------------------------------------- /modules/luci-base/luasrc/view/sysauth.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/luasrc/view/sysauth.htm -------------------------------------------------------------------------------- /modules/luci-base/po/ca/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/ca/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/cs/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/cs/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/de/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/de/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/el/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/el/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/en/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/en/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/es/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/es/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/fr/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/fr/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/he/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/he/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/hu/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/hu/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/it/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/it/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ja/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/ja/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ko/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/ko/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ms/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/ms/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/no/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/no/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/pl/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/pl/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/pt-br/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/pt-br/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/pt/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/pt/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ro/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/ro/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ru/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/ru/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/sk/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/sk/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/sv/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/sv/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/templates/base.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/templates/base.pot -------------------------------------------------------------------------------- /modules/luci-base/po/tr/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/tr/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/uk/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/uk/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/vi/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/vi/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/zh-cn/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/zh-cn/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/zh-tw/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/po/zh-tw/base.po -------------------------------------------------------------------------------- /modules/luci-base/root/etc/config/luci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/root/etc/config/luci -------------------------------------------------------------------------------- /modules/luci-base/root/etc/config/ucitrack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/root/etc/config/ucitrack -------------------------------------------------------------------------------- /modules/luci-base/root/etc/luci-uploads/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/luci-base/root/sbin/luci-reload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/root/sbin/luci-reload -------------------------------------------------------------------------------- /modules/luci-base/root/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/root/www/index.html -------------------------------------------------------------------------------- /modules/luci-base/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/src/Makefile -------------------------------------------------------------------------------- /modules/luci-base/src/mkversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/src/mkversion.sh -------------------------------------------------------------------------------- /modules/luci-base/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/src/po2lmo.c -------------------------------------------------------------------------------- /modules/luci-base/src/template_lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/src/template_lmo.c -------------------------------------------------------------------------------- /modules/luci-base/src/template_lmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/src/template_lmo.h -------------------------------------------------------------------------------- /modules/luci-base/src/template_lualib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/src/template_lualib.c -------------------------------------------------------------------------------- /modules/luci-base/src/template_lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/src/template_lualib.h -------------------------------------------------------------------------------- /modules/luci-base/src/template_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/src/template_parser.c -------------------------------------------------------------------------------- /modules/luci-base/src/template_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/src/template_parser.h -------------------------------------------------------------------------------- /modules/luci-base/src/template_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/src/template_utils.c -------------------------------------------------------------------------------- /modules/luci-base/src/template_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-base/src/template_utils.h -------------------------------------------------------------------------------- /modules/luci-mod-admin-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-admin-full/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-admin-full/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-admin-full/src/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-admin-full/src/luci-bwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-admin-full/src/luci-bwc.c -------------------------------------------------------------------------------- /modules/luci-mod-admin-mini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-admin-mini/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-failsafe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-failsafe/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-freifunk-community/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk-community/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/ca/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/ca/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/cs/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/cs/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/de/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/de/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/el/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/el/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/en/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/en/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/es/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/es/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/fr/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/fr/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/he/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/he/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/hu/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/hu/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/it/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/it/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/ja/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/ja/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/ms/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/ms/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/no/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/no/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/pl/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/pl/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/pt/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/pt/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/ro/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/ro/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/ru/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/ru/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/sk/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/sk/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/sv/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/sv/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/tr/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/tr/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/uk/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/uk/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-freifunk/po/vi/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-freifunk/po/vi/freifunk.po -------------------------------------------------------------------------------- /modules/luci-mod-rpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-rpc/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-rpc/luasrc/jsonrpc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/modules/luci-mod-rpc/luasrc/jsonrpc.lua -------------------------------------------------------------------------------- /protocols/luci-proto-3g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/protocols/luci-proto-3g/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-ipip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/protocols/luci-proto-ipip/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-ipv6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/protocols/luci-proto-ipv6/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-ncm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/protocols/luci-proto-ncm/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-openconnect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/protocols/luci-proto-openconnect/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-ppp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/protocols/luci-proto-ppp/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-qmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/protocols/luci-proto-qmi/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-relay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/protocols/luci-proto-relay/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-vpnc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/protocols/luci-proto-vpnc/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-wireguard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/protocols/luci-proto-wireguard/Makefile -------------------------------------------------------------------------------- /themes/luci-theme-amazeui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/themes/luci-theme-amazeui/Makefile -------------------------------------------------------------------------------- /themes/luci-theme-bootstrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/themes/luci-theme-bootstrap/Makefile -------------------------------------------------------------------------------- /themes/luci-theme-freifunk-generic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/themes/luci-theme-freifunk-generic/Makefile -------------------------------------------------------------------------------- /themes/luci-theme-freifunk-generic/htdocs/luci-static/freifunk-generic/smallscreen.css: -------------------------------------------------------------------------------- 1 | .header_right { 2 | display:none; 3 | } 4 | -------------------------------------------------------------------------------- /themes/luci-theme-material/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/themes/luci-theme-material/Makefile -------------------------------------------------------------------------------- /themes/luci-theme-openwrt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/themes/luci-theme-openwrt/Makefile -------------------------------------------------------------------------------- /themes/luci-theme-openwrtcn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/themes/luci-theme-openwrtcn/Makefile -------------------------------------------------------------------------------- /themes/luci-theme-oxygen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/themes/luci-theme-oxygen/Makefile -------------------------------------------------------------------------------- /themes/luci-theme-xeye/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/luci/HEAD/themes/luci-theme-xeye/Makefile --------------------------------------------------------------------------------