├── .github ├── ISSUE_TEMPLATE │ ├── 01-bug.yml │ ├── 02-feature.yaml │ ├── 03-something-else.yml │ └── config.yml ├── codeql │ └── codeql-config.yml ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── check_source_branch_is_not_master.yml │ ├── ci_helpers.sh │ ├── codeql.yml │ ├── formal.yml │ └── jsdoc.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── applications ├── luci-app-acl │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── system │ │ │ └── acl.js │ ├── po │ │ ├── ar │ │ │ └── acl.po │ │ ├── bg │ │ │ └── acl.po │ │ ├── bn_BD │ │ │ └── acl.po │ │ ├── bs │ │ │ └── acl.po │ │ ├── ca │ │ │ └── acl.po │ │ ├── cs │ │ │ └── acl.po │ │ ├── cy │ │ │ └── acl.po │ │ ├── da │ │ │ └── acl.po │ │ ├── de │ │ │ └── acl.po │ │ ├── el │ │ │ └── acl.po │ │ ├── es │ │ │ └── acl.po │ │ ├── fa │ │ │ └── acl.po │ │ ├── fi │ │ │ └── acl.po │ │ ├── fr │ │ │ └── acl.po │ │ ├── ga │ │ │ └── acl.po │ │ ├── he │ │ │ └── acl.po │ │ ├── hi │ │ │ └── acl.po │ │ ├── hu │ │ │ └── acl.po │ │ ├── id │ │ │ └── acl.po │ │ ├── it │ │ │ └── acl.po │ │ ├── ja │ │ │ └── acl.po │ │ ├── ko │ │ │ └── acl.po │ │ ├── lt │ │ │ └── acl.po │ │ ├── mr │ │ │ └── acl.po │ │ ├── ms │ │ │ └── acl.po │ │ ├── nb_NO │ │ │ └── acl.po │ │ ├── nl │ │ │ └── acl.po │ │ ├── pl │ │ │ └── acl.po │ │ ├── pt │ │ │ └── acl.po │ │ ├── pt_BR │ │ │ └── acl.po │ │ ├── ro │ │ │ └── acl.po │ │ ├── ru │ │ │ └── acl.po │ │ ├── si │ │ │ └── acl.po │ │ ├── sk │ │ │ └── acl.po │ │ ├── sl │ │ │ └── acl.po │ │ ├── sv │ │ │ └── acl.po │ │ ├── templates │ │ │ └── acl.pot │ │ ├── tr │ │ │ └── acl.po │ │ ├── uk │ │ │ └── acl.po │ │ ├── vi │ │ │ └── acl.po │ │ ├── yua │ │ │ └── acl.po │ │ ├── zh_Hans │ │ │ └── acl.po │ │ └── zh_Hant │ │ │ └── acl.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-acl.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-acl.json ├── luci-app-acme │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── acme.js │ ├── po │ │ ├── ar │ │ │ └── acme.po │ │ ├── bg │ │ │ └── acme.po │ │ ├── bn_BD │ │ │ └── acme.po │ │ ├── ca │ │ │ └── acme.po │ │ ├── cs │ │ │ └── acme.po │ │ ├── da │ │ │ └── acme.po │ │ ├── de │ │ │ └── acme.po │ │ ├── el │ │ │ └── acme.po │ │ ├── es │ │ │ └── acme.po │ │ ├── fa │ │ │ └── acme.po │ │ ├── fi │ │ │ └── acme.po │ │ ├── fr │ │ │ └── acme.po │ │ ├── ga │ │ │ └── acme.po │ │ ├── he │ │ │ └── acme.po │ │ ├── hi │ │ │ └── acme.po │ │ ├── hu │ │ │ └── acme.po │ │ ├── id │ │ │ └── acme.po │ │ ├── it │ │ │ └── acme.po │ │ ├── ja │ │ │ └── acme.po │ │ ├── ko │ │ │ └── acme.po │ │ ├── lt │ │ │ └── acme.po │ │ ├── mr │ │ │ └── acme.po │ │ ├── ms │ │ │ └── acme.po │ │ ├── nb_NO │ │ │ └── acme.po │ │ ├── nl │ │ │ └── acme.po │ │ ├── pl │ │ │ └── acme.po │ │ ├── pt │ │ │ └── acme.po │ │ ├── pt_BR │ │ │ └── acme.po │ │ ├── ro │ │ │ └── acme.po │ │ ├── ru │ │ │ └── acme.po │ │ ├── si │ │ │ └── acme.po │ │ ├── sk │ │ │ └── acme.po │ │ ├── sv │ │ │ └── acme.po │ │ ├── templates │ │ │ └── acme.pot │ │ ├── tr │ │ │ └── acme.po │ │ ├── uk │ │ │ └── acme.po │ │ ├── vi │ │ │ └── acme.po │ │ ├── zh_Hans │ │ │ └── acme.po │ │ └── zh_Hant │ │ │ └── acme.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-acme.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-acme.json ├── luci-app-adblock-fast │ ├── Makefile │ ├── README.md │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── adblock-fast │ │ │ └── status.js │ │ │ └── view │ │ │ ├── adblock-fast │ │ │ └── overview.js │ │ │ └── status │ │ │ └── include │ │ │ └── 70_adblock-fast.js │ ├── po │ │ ├── ar │ │ │ └── adblock-fast.po │ │ ├── bg │ │ │ └── adblock-fast.po │ │ ├── bn_BD │ │ │ └── adblock-fast.po │ │ ├── ca │ │ │ └── adblock-fast.po │ │ ├── cs │ │ │ └── adblock-fast.po │ │ ├── da │ │ │ └── adblock-fast.po │ │ ├── de │ │ │ └── adblock-fast.po │ │ ├── el │ │ │ └── adblock-fast.po │ │ ├── es │ │ │ └── adblock-fast.po │ │ ├── fi │ │ │ └── adblock-fast.po │ │ ├── fr │ │ │ └── adblock-fast.po │ │ ├── ga │ │ │ └── adblock-fast.po │ │ ├── he │ │ │ └── adblock-fast.po │ │ ├── hi │ │ │ └── adblock-fast.po │ │ ├── hu │ │ │ └── adblock-fast.po │ │ ├── it │ │ │ └── adblock-fast.po │ │ ├── ja │ │ │ └── adblock-fast.po │ │ ├── ko │ │ │ └── adblock-fast.po │ │ ├── lt │ │ │ └── adblock-fast.po │ │ ├── mr │ │ │ └── adblock-fast.po │ │ ├── ms │ │ │ └── adblock-fast.po │ │ ├── nb_NO │ │ │ └── adblock-fast.po │ │ ├── nl │ │ │ └── adblock-fast.po │ │ ├── pl │ │ │ └── adblock-fast.po │ │ ├── pt │ │ │ └── adblock-fast.po │ │ ├── pt_BR │ │ │ └── adblock-fast.po │ │ ├── ro │ │ │ └── adblock-fast.po │ │ ├── ru │ │ │ └── adblock-fast.po │ │ ├── sk │ │ │ └── adblock-fast.po │ │ ├── sv │ │ │ └── adblock-fast.po │ │ ├── templates │ │ │ └── adblock-fast.pot │ │ ├── tr │ │ │ └── adblock-fast.po │ │ ├── uk │ │ │ └── adblock-fast.po │ │ ├── vi │ │ │ └── adblock-fast.po │ │ ├── zh_Hans │ │ │ └── adblock-fast.po │ │ └── zh_Hant │ │ │ └── adblock-fast.po │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── 40_luci-adblock-fast │ │ └── usr │ │ ├── libexec │ │ └── rpcd │ │ │ └── luci.adblock-fast │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-adblock-fast.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-adblock-fast.json ├── luci-app-adblock │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── adblock │ │ │ ├── blacklist.js │ │ │ ├── dnsreport.js │ │ │ ├── logread.js │ │ │ ├── overview.js │ │ │ └── whitelist.js │ ├── po │ │ ├── ar │ │ │ └── adblock.po │ │ ├── bg │ │ │ └── adblock.po │ │ ├── bn_BD │ │ │ └── adblock.po │ │ ├── ca │ │ │ └── adblock.po │ │ ├── cs │ │ │ └── adblock.po │ │ ├── da │ │ │ └── adblock.po │ │ ├── de │ │ │ └── adblock.po │ │ ├── el │ │ │ └── adblock.po │ │ ├── es │ │ │ └── adblock.po │ │ ├── fi │ │ │ └── adblock.po │ │ ├── fr │ │ │ └── adblock.po │ │ ├── ga │ │ │ └── adblock.po │ │ ├── he │ │ │ └── adblock.po │ │ ├── hi │ │ │ └── adblock.po │ │ ├── hu │ │ │ └── adblock.po │ │ ├── id │ │ │ └── adblock.po │ │ ├── it │ │ │ └── adblock.po │ │ ├── ja │ │ │ └── adblock.po │ │ ├── ko │ │ │ └── adblock.po │ │ ├── lt │ │ │ └── adblock.po │ │ ├── mr │ │ │ └── adblock.po │ │ ├── ms │ │ │ └── adblock.po │ │ ├── nb_NO │ │ │ └── adblock.po │ │ ├── nl │ │ │ └── adblock.po │ │ ├── pl │ │ │ └── adblock.po │ │ ├── pt │ │ │ └── adblock.po │ │ ├── pt_BR │ │ │ └── adblock.po │ │ ├── ro │ │ │ └── adblock.po │ │ ├── ru │ │ │ └── adblock.po │ │ ├── si │ │ │ └── adblock.po │ │ ├── sk │ │ │ └── adblock.po │ │ ├── sv │ │ │ └── adblock.po │ │ ├── templates │ │ │ └── adblock.pot │ │ ├── tr │ │ │ └── adblock.po │ │ ├── uk │ │ │ └── adblock.po │ │ ├── vi │ │ │ └── adblock.po │ │ ├── yua │ │ │ └── adblock.po │ │ ├── zh_Hans │ │ │ └── adblock.po │ │ └── zh_Hant │ │ │ └── adblock.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-adblock.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-adblock.json ├── luci-app-advanced-reboot │ ├── Makefile │ ├── README.md │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── system │ │ │ └── advanced_reboot.js │ ├── po │ │ ├── ar │ │ │ └── advanced-reboot.po │ │ ├── bg │ │ │ └── advanced-reboot.po │ │ ├── bn_BD │ │ │ └── advanced-reboot.po │ │ ├── ca │ │ │ └── advanced-reboot.po │ │ ├── cs │ │ │ └── advanced-reboot.po │ │ ├── da │ │ │ └── advanced-reboot.po │ │ ├── de │ │ │ └── advanced-reboot.po │ │ ├── el │ │ │ └── advanced-reboot.po │ │ ├── es │ │ │ └── advanced-reboot.po │ │ ├── fi │ │ │ └── advanced-reboot.po │ │ ├── fr │ │ │ └── advanced-reboot.po │ │ ├── ga │ │ │ └── advanced-reboot.po │ │ ├── he │ │ │ └── advanced-reboot.po │ │ ├── hi │ │ │ └── advanced-reboot.po │ │ ├── hu │ │ │ └── advanced-reboot.po │ │ ├── it │ │ │ └── advanced-reboot.po │ │ ├── ja │ │ │ └── advanced-reboot.po │ │ ├── ko │ │ │ └── advanced-reboot.po │ │ ├── lt │ │ │ └── advanced-reboot.po │ │ ├── mr │ │ │ └── advanced-reboot.po │ │ ├── ms │ │ │ └── advanced-reboot.po │ │ ├── nb_NO │ │ │ └── advanced-reboot.po │ │ ├── nl │ │ │ └── advanced-reboot.po │ │ ├── pl │ │ │ └── advanced-reboot.po │ │ ├── pt │ │ │ └── advanced-reboot.po │ │ ├── pt_BR │ │ │ └── advanced-reboot.po │ │ ├── ro │ │ │ └── advanced-reboot.po │ │ ├── ru │ │ │ └── advanced-reboot.po │ │ ├── si │ │ │ └── advanced-reboot.po │ │ ├── sk │ │ │ └── advanced-reboot.po │ │ ├── sv │ │ │ └── advanced-reboot.po │ │ ├── templates │ │ │ └── advanced-reboot.pot │ │ ├── tr │ │ │ └── advanced-reboot.po │ │ ├── uk │ │ │ └── advanced-reboot.po │ │ ├── vi │ │ │ └── advanced-reboot.po │ │ ├── zh_Hans │ │ │ └── advanced-reboot.po │ │ └── zh_Hant │ │ │ └── advanced-reboot.po │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── 40_luci-advanced-reboot │ │ └── usr │ │ ├── libexec │ │ └── rpcd │ │ │ └── luci.advanced_reboot │ │ └── share │ │ ├── advanced-reboot │ │ ├── devices.disabled │ │ │ ├── linksys-ea9500.json │ │ │ └── netgear-wac510.json │ │ └── devices │ │ │ ├── dlink-fgs1210-28.json │ │ │ ├── linksys-e4200v2-ea4500.json │ │ │ ├── linksys-e4200v2.json │ │ │ ├── linksys-ea3500.json │ │ │ ├── linksys-ea4500.json │ │ │ ├── linksys-ea6350v3.json │ │ │ ├── linksys-ea6350v4.json │ │ │ ├── linksys-ea7300v1.json │ │ │ ├── linksys-ea7300v2.json │ │ │ ├── linksys-ea7500v1.json │ │ │ ├── linksys-ea7500v2.json │ │ │ ├── linksys-ea8100v1.json │ │ │ ├── linksys-ea8100v2.json │ │ │ ├── linksys-ea8300.json │ │ │ ├── linksys-ea8500.json │ │ │ ├── linksys-mr8300.json │ │ │ ├── linksys-mx4200v1.json │ │ │ ├── linksys-mx4200v2.json │ │ │ ├── linksys-mx4300.json │ │ │ ├── linksys-mx5300.json │ │ │ ├── linksys-whw01v1.json │ │ │ ├── linksys-whw03.json │ │ │ ├── linksys-whw03v2.json │ │ │ ├── linksys-wrt1200ac.json │ │ │ ├── linksys-wrt1900ac.json │ │ │ ├── linksys-wrt1900acs.json │ │ │ ├── linksys-wrt1900acv2.json │ │ │ ├── linksys-wrt3200acm.json │ │ │ ├── linksys-wrt32x.json │ │ │ ├── mercusys-mr90xv1.json │ │ │ ├── xiaomi-ax3600.json │ │ │ ├── xiaomi-ax9000.json │ │ │ └── zyxel-nbg6817.json │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-advanced-reboot.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-advanced-reboot.json ├── luci-app-alist │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── alist │ │ │ ├── config.js │ │ │ └── log.js │ ├── po │ │ ├── ar │ │ │ └── alist.po │ │ ├── bg │ │ │ └── alist.po │ │ ├── bn_BD │ │ │ └── alist.po │ │ ├── ca │ │ │ └── alist.po │ │ ├── cs │ │ │ └── alist.po │ │ ├── da │ │ │ └── alist.po │ │ ├── de │ │ │ └── alist.po │ │ ├── el │ │ │ └── alist.po │ │ ├── es │ │ │ └── alist.po │ │ ├── fi │ │ │ └── alist.po │ │ ├── fr │ │ │ └── alist.po │ │ ├── ga │ │ │ └── alist.po │ │ ├── he │ │ │ └── alist.po │ │ ├── hi │ │ │ └── alist.po │ │ ├── hu │ │ │ └── alist.po │ │ ├── it │ │ │ └── alist.po │ │ ├── ja │ │ │ └── alist.po │ │ ├── ko │ │ │ └── alist.po │ │ ├── lt │ │ │ └── alist.po │ │ ├── mr │ │ │ └── alist.po │ │ ├── ms │ │ │ └── alist.po │ │ ├── nb_NO │ │ │ └── alist.po │ │ ├── nl │ │ │ └── alist.po │ │ ├── pl │ │ │ └── alist.po │ │ ├── pt │ │ │ └── alist.po │ │ ├── pt_BR │ │ │ └── alist.po │ │ ├── ro │ │ │ └── alist.po │ │ ├── ru │ │ │ └── alist.po │ │ ├── sk │ │ │ └── alist.po │ │ ├── sv │ │ │ └── alist.po │ │ ├── templates │ │ │ └── alist.pot │ │ ├── tr │ │ │ └── alist.po │ │ ├── uk │ │ │ └── alist.po │ │ ├── vi │ │ │ └── alist.po │ │ ├── zh_Hans │ │ │ └── alist.po │ │ └── zh_Hant │ │ │ └── alist.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-alist.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-alist.json ├── luci-app-apinger │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── apinger │ │ │ ├── alarm_delay.js │ │ │ ├── alarm_down.js │ │ │ ├── alarm_loss.js │ │ │ ├── graphs.js │ │ │ ├── interfaces.js │ │ │ ├── overview.js │ │ │ └── targets.js │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-apinger.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-apinger.json ├── luci-app-aria2 │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── aria2 │ │ │ ├── config.js │ │ │ ├── files.js │ │ │ └── log.js │ ├── po │ │ ├── ar │ │ │ └── aria2.po │ │ ├── bg │ │ │ └── aria2.po │ │ ├── bn_BD │ │ │ └── aria2.po │ │ ├── ca │ │ │ └── aria2.po │ │ ├── cs │ │ │ └── aria2.po │ │ ├── da │ │ │ └── aria2.po │ │ ├── de │ │ │ └── aria2.po │ │ ├── el │ │ │ └── aria2.po │ │ ├── es │ │ │ └── aria2.po │ │ ├── fi │ │ │ └── aria2.po │ │ ├── fr │ │ │ └── aria2.po │ │ ├── ga │ │ │ └── aria2.po │ │ ├── he │ │ │ └── aria2.po │ │ ├── hi │ │ │ └── aria2.po │ │ ├── hu │ │ │ └── aria2.po │ │ ├── it │ │ │ └── aria2.po │ │ ├── ja │ │ │ └── aria2.po │ │ ├── ko │ │ │ └── aria2.po │ │ ├── lt │ │ │ └── aria2.po │ │ ├── mr │ │ │ └── aria2.po │ │ ├── ms │ │ │ └── aria2.po │ │ ├── nb_NO │ │ │ └── aria2.po │ │ ├── nl │ │ │ └── aria2.po │ │ ├── pl │ │ │ └── aria2.po │ │ ├── pt │ │ │ └── aria2.po │ │ ├── pt_BR │ │ │ └── aria2.po │ │ ├── ro │ │ │ └── aria2.po │ │ ├── ru │ │ │ └── aria2.po │ │ ├── sk │ │ │ └── aria2.po │ │ ├── sv │ │ │ └── aria2.po │ │ ├── templates │ │ │ └── aria2.pot │ │ ├── tr │ │ │ └── aria2.po │ │ ├── uk │ │ │ └── aria2.po │ │ ├── vi │ │ │ └── aria2.po │ │ ├── yua │ │ │ └── aria2.po │ │ ├── zh_Hans │ │ │ └── aria2.po │ │ └── zh_Hant │ │ │ └── aria2.po │ └── root │ │ └── usr │ │ ├── libexec │ │ └── aria2-call │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-aria2.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-aria2.json ├── luci-app-attendedsysupgrade │ ├── Makefile │ ├── README.md │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── attendedsysupgrade │ │ │ ├── configuration.js │ │ │ └── overview.js │ ├── po │ │ ├── ar │ │ │ └── attendedsysupgrade.po │ │ ├── bg │ │ │ └── attendedsysupgrade.po │ │ ├── bn_BD │ │ │ └── attendedsysupgrade.po │ │ ├── ca │ │ │ └── attendedsysupgrade.po │ │ ├── cs │ │ │ └── attendedsysupgrade.po │ │ ├── da │ │ │ └── attendedsysupgrade.po │ │ ├── de │ │ │ └── attendedsysupgrade.po │ │ ├── el │ │ │ └── attendedsysupgrade.po │ │ ├── es │ │ │ └── attendedsysupgrade.po │ │ ├── fa │ │ │ └── attendedsysupgrade.po │ │ ├── fi │ │ │ └── attendedsysupgrade.po │ │ ├── fr │ │ │ └── attendedsysupgrade.po │ │ ├── ga │ │ │ └── attendedsysupgrade.po │ │ ├── he │ │ │ └── attendedsysupgrade.po │ │ ├── hi │ │ │ └── attendedsysupgrade.po │ │ ├── hu │ │ │ └── attendedsysupgrade.po │ │ ├── it │ │ │ └── attendedsysupgrade.po │ │ ├── ja │ │ │ └── attendedsysupgrade.po │ │ ├── ko │ │ │ └── attendedsysupgrade.po │ │ ├── lt │ │ │ └── attendedsysupgrade.po │ │ ├── mr │ │ │ └── attendedsysupgrade.po │ │ ├── ms │ │ │ └── attendedsysupgrade.po │ │ ├── nb_NO │ │ │ └── attendedsysupgrade.po │ │ ├── nl │ │ │ └── attendedsysupgrade.po │ │ ├── pl │ │ │ └── attendedsysupgrade.po │ │ ├── pt │ │ │ └── attendedsysupgrade.po │ │ ├── pt_BR │ │ │ └── attendedsysupgrade.po │ │ ├── ro │ │ │ └── attendedsysupgrade.po │ │ ├── ru │ │ │ └── attendedsysupgrade.po │ │ ├── sk │ │ │ └── attendedsysupgrade.po │ │ ├── sv │ │ │ └── attendedsysupgrade.po │ │ ├── templates │ │ │ └── attendedsysupgrade.pot │ │ ├── tr │ │ │ └── attendedsysupgrade.po │ │ ├── uk │ │ │ └── attendedsysupgrade.po │ │ ├── vi │ │ │ └── attendedsysupgrade.po │ │ ├── zh_Hans │ │ │ └── attendedsysupgrade.po │ │ └── zh_Hant │ │ │ └── attendedsysupgrade.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-attendedsysupgrade.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-attendedsysupgrade.json ├── luci-app-babeld │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── babeld.js │ │ │ └── view │ │ │ └── babeld │ │ │ └── babeld-view.js │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── 40_luci-babeld │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-babeld.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-babeld.json ├── luci-app-banip │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── banip │ │ │ ├── allowlist.js │ │ │ ├── blocklist.js │ │ │ ├── custom.css │ │ │ ├── feeds.js │ │ │ ├── firewall_log.js │ │ │ ├── overview.js │ │ │ ├── processing_log.js │ │ │ └── setreport.js │ ├── po │ │ ├── ar │ │ │ └── banip.po │ │ ├── bg │ │ │ └── banip.po │ │ ├── bn_BD │ │ │ └── banip.po │ │ ├── ca │ │ │ └── banip.po │ │ ├── cs │ │ │ └── banip.po │ │ ├── da │ │ │ └── banip.po │ │ ├── de │ │ │ └── banip.po │ │ ├── el │ │ │ └── banip.po │ │ ├── es │ │ │ └── banip.po │ │ ├── fi │ │ │ └── banip.po │ │ ├── fr │ │ │ └── banip.po │ │ ├── ga │ │ │ └── banip.po │ │ ├── he │ │ │ └── banip.po │ │ ├── hi │ │ │ └── banip.po │ │ ├── hu │ │ │ └── banip.po │ │ ├── it │ │ │ └── banip.po │ │ ├── ja │ │ │ └── banip.po │ │ ├── ko │ │ │ └── banip.po │ │ ├── lt │ │ │ └── banip.po │ │ ├── mr │ │ │ └── banip.po │ │ ├── ms │ │ │ └── banip.po │ │ ├── nb_NO │ │ │ └── banip.po │ │ ├── nl │ │ │ └── banip.po │ │ ├── pl │ │ │ └── banip.po │ │ ├── pt │ │ │ └── banip.po │ │ ├── pt_BR │ │ │ └── banip.po │ │ ├── ro │ │ │ └── banip.po │ │ ├── ru │ │ │ └── banip.po │ │ ├── sk │ │ │ └── banip.po │ │ ├── sv │ │ │ └── banip.po │ │ ├── sw │ │ │ └── banip.po │ │ ├── templates │ │ │ └── banip.pot │ │ ├── tr │ │ │ └── banip.po │ │ ├── uk │ │ │ └── banip.po │ │ ├── vi │ │ │ └── banip.po │ │ ├── yua │ │ │ └── banip.po │ │ ├── zh_Hans │ │ │ └── banip.po │ │ └── zh_Hant │ │ │ └── banip.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-banip.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-banip.json ├── luci-app-bcp38 │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── bcp38 │ │ │ └── form.js │ ├── po │ │ ├── ar │ │ │ └── bcp38.po │ │ ├── bg │ │ │ └── bcp38.po │ │ ├── bn_BD │ │ │ └── bcp38.po │ │ ├── ca │ │ │ └── bcp38.po │ │ ├── cs │ │ │ └── bcp38.po │ │ ├── da │ │ │ └── bcp38.po │ │ ├── de │ │ │ └── bcp38.po │ │ ├── el │ │ │ └── bcp38.po │ │ ├── es │ │ │ └── bcp38.po │ │ ├── fi │ │ │ └── bcp38.po │ │ ├── fr │ │ │ └── bcp38.po │ │ ├── ga │ │ │ └── bcp38.po │ │ ├── he │ │ │ └── bcp38.po │ │ ├── hi │ │ │ └── bcp38.po │ │ ├── hu │ │ │ └── bcp38.po │ │ ├── it │ │ │ └── bcp38.po │ │ ├── ja │ │ │ └── bcp38.po │ │ ├── ko │ │ │ └── bcp38.po │ │ ├── lt │ │ │ └── bcp38.po │ │ ├── mr │ │ │ └── bcp38.po │ │ ├── ms │ │ │ └── bcp38.po │ │ ├── nb_NO │ │ │ └── bcp38.po │ │ ├── nl │ │ │ └── bcp38.po │ │ ├── pl │ │ │ └── bcp38.po │ │ ├── pt │ │ │ └── bcp38.po │ │ ├── pt_BR │ │ │ └── bcp38.po │ │ ├── ro │ │ │ └── bcp38.po │ │ ├── ru │ │ │ └── bcp38.po │ │ ├── sk │ │ │ └── bcp38.po │ │ ├── sv │ │ │ └── bcp38.po │ │ ├── templates │ │ │ └── bcp38.pot │ │ ├── tr │ │ │ └── bcp38.po │ │ ├── uk │ │ │ └── bcp38.po │ │ ├── vi │ │ │ └── bcp38.po │ │ ├── yua │ │ │ └── bcp38.po │ │ ├── zh_Hans │ │ │ └── bcp38.po │ │ └── zh_Hant │ │ │ └── bcp38.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-bcp38.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-bcp38.json ├── luci-app-bmx7 │ ├── Makefile │ ├── po │ │ ├── ar │ │ │ └── bmx7.po │ │ ├── bg │ │ │ └── bmx7.po │ │ ├── bn_BD │ │ │ └── bmx7.po │ │ ├── ca │ │ │ └── bmx7.po │ │ ├── cs │ │ │ └── bmx7.po │ │ ├── da │ │ │ └── bmx7.po │ │ ├── de │ │ │ └── bmx7.po │ │ ├── el │ │ │ └── bmx7.po │ │ ├── es │ │ │ └── bmx7.po │ │ ├── fa │ │ │ └── bmx7.po │ │ ├── fi │ │ │ └── bmx7.po │ │ ├── fr │ │ │ └── bmx7.po │ │ ├── ga │ │ │ └── bmx7.po │ │ ├── he │ │ │ └── bmx7.po │ │ ├── hi │ │ │ └── bmx7.po │ │ ├── hu │ │ │ └── bmx7.po │ │ ├── it │ │ │ └── bmx7.po │ │ ├── ja │ │ │ └── bmx7.po │ │ ├── ko │ │ │ └── bmx7.po │ │ ├── lt │ │ │ └── bmx7.po │ │ ├── mr │ │ │ └── bmx7.po │ │ ├── ms │ │ │ └── bmx7.po │ │ ├── nb_NO │ │ │ └── bmx7.po │ │ ├── nl │ │ │ └── bmx7.po │ │ ├── pl │ │ │ └── bmx7.po │ │ ├── pt │ │ │ └── bmx7.po │ │ ├── pt_BR │ │ │ └── bmx7.po │ │ ├── ro │ │ │ └── bmx7.po │ │ ├── ru │ │ │ └── bmx7.po │ │ ├── sk │ │ │ └── bmx7.po │ │ ├── sv │ │ │ └── bmx7.po │ │ ├── templates │ │ │ └── bmx7.pot │ │ ├── tr │ │ │ └── bmx7.po │ │ ├── uk │ │ │ └── bmx7.po │ │ ├── vi │ │ │ └── bmx7.po │ │ ├── zh_Hans │ │ │ └── bmx7.po │ │ └── zh_Hant │ │ │ └── bmx7.po │ └── root │ │ ├── etc │ │ └── config │ │ │ └── luci-bmx7 │ │ ├── usr │ │ └── lib │ │ │ └── lua │ │ │ └── luci │ │ │ ├── controller │ │ │ └── bmx7.lua │ │ │ └── view │ │ │ ├── admin_status │ │ │ └── index │ │ │ │ └── bmx7_nodes.htm │ │ │ └── bmx7 │ │ │ ├── nodes_j.htm │ │ │ ├── status_j.htm │ │ │ ├── topology.htm │ │ │ └── tunnels_j.htm │ │ └── www │ │ ├── cgi-bin │ │ └── bmx7-info │ │ └── luci-static │ │ └── resources │ │ └── bmx7 │ │ ├── bmx7logo.png │ │ ├── css │ │ ├── netjsongraph-theme.css │ │ └── netjsongraph.css │ │ ├── js │ │ ├── netjsongraph.js │ │ └── polling.js │ │ ├── world.png │ │ └── world_small.png ├── luci-app-clamav │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── clamav │ │ │ ├── clamav-log.js │ │ │ ├── clamav-milter.js │ │ │ ├── clamav.js │ │ │ └── freshclam.js │ ├── po │ │ ├── ar │ │ │ └── clamav.po │ │ ├── bg │ │ │ └── clamav.po │ │ ├── bn_BD │ │ │ └── clamav.po │ │ ├── ca │ │ │ └── clamav.po │ │ ├── cs │ │ │ └── clamav.po │ │ ├── da │ │ │ └── clamav.po │ │ ├── de │ │ │ └── clamav.po │ │ ├── el │ │ │ └── clamav.po │ │ ├── es │ │ │ └── clamav.po │ │ ├── fi │ │ │ └── clamav.po │ │ ├── fr │ │ │ └── clamav.po │ │ ├── ga │ │ │ └── clamav.po │ │ ├── he │ │ │ └── clamav.po │ │ ├── hi │ │ │ └── clamav.po │ │ ├── hu │ │ │ └── clamav.po │ │ ├── it │ │ │ └── clamav.po │ │ ├── ja │ │ │ └── clamav.po │ │ ├── ko │ │ │ └── clamav.po │ │ ├── lt │ │ │ └── clamav.po │ │ ├── mr │ │ │ └── clamav.po │ │ ├── ms │ │ │ └── clamav.po │ │ ├── nb_NO │ │ │ └── clamav.po │ │ ├── nl │ │ │ └── clamav.po │ │ ├── pl │ │ │ └── clamav.po │ │ ├── pt │ │ │ └── clamav.po │ │ ├── pt_BR │ │ │ └── clamav.po │ │ ├── ro │ │ │ └── clamav.po │ │ ├── ru │ │ │ └── clamav.po │ │ ├── sk │ │ │ └── clamav.po │ │ ├── sv │ │ │ └── clamav.po │ │ ├── templates │ │ │ └── clamav.pot │ │ ├── tr │ │ │ └── clamav.po │ │ ├── uk │ │ │ └── clamav.po │ │ ├── vi │ │ │ └── clamav.po │ │ ├── zh_Hans │ │ │ └── clamav.po │ │ └── zh_Hant │ │ │ └── clamav.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-clamav.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-clamav.json ├── luci-app-cloudflared │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── cloudflared │ │ │ ├── config.js │ │ │ ├── log.js │ │ │ └── tunnels.js │ ├── po │ │ ├── ar │ │ │ └── cloudflared.po │ │ ├── bg │ │ │ └── cloudflared.po │ │ ├── bn_BD │ │ │ └── cloudflared.po │ │ ├── ca │ │ │ └── cloudflared.po │ │ ├── cs │ │ │ └── cloudflared.po │ │ ├── da │ │ │ └── cloudflared.po │ │ ├── de │ │ │ └── cloudflared.po │ │ ├── el │ │ │ └── cloudflared.po │ │ ├── es │ │ │ └── cloudflared.po │ │ ├── fi │ │ │ └── cloudflared.po │ │ ├── fr │ │ │ └── cloudflared.po │ │ ├── ga │ │ │ └── cloudflared.po │ │ ├── he │ │ │ └── cloudflared.po │ │ ├── hi │ │ │ └── cloudflared.po │ │ ├── hu │ │ │ └── cloudflared.po │ │ ├── it │ │ │ └── cloudflared.po │ │ ├── ja │ │ │ └── cloudflared.po │ │ ├── ko │ │ │ └── cloudflared.po │ │ ├── lt │ │ │ └── cloudflared.po │ │ ├── mr │ │ │ └── cloudflared.po │ │ ├── ms │ │ │ └── cloudflared.po │ │ ├── nb_NO │ │ │ └── cloudflared.po │ │ ├── nl │ │ │ └── cloudflared.po │ │ ├── pl │ │ │ └── cloudflared.po │ │ ├── pt │ │ │ └── cloudflared.po │ │ ├── pt_BR │ │ │ └── cloudflared.po │ │ ├── ro │ │ │ └── cloudflared.po │ │ ├── ru │ │ │ └── cloudflared.po │ │ ├── sk │ │ │ └── cloudflared.po │ │ ├── sv │ │ │ └── cloudflared.po │ │ ├── templates │ │ │ └── cloudflared.pot │ │ ├── tr │ │ │ └── cloudflared.po │ │ ├── uk │ │ │ └── cloudflared.po │ │ ├── vi │ │ │ └── cloudflared.po │ │ ├── yua │ │ │ └── cloudflared.po │ │ ├── zh_Hans │ │ │ └── cloudflared.po │ │ └── zh_Hant │ │ │ └── cloudflared.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-cloudflared.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-cloudflared.json ├── luci-app-commands │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── commands.js │ ├── po │ │ ├── ar │ │ │ └── commands.po │ │ ├── ast │ │ │ └── commands.po │ │ ├── bg │ │ │ └── commands.po │ │ ├── bn_BD │ │ │ └── commands.po │ │ ├── ca │ │ │ └── commands.po │ │ ├── cs │ │ │ └── commands.po │ │ ├── da │ │ │ └── commands.po │ │ ├── de │ │ │ └── commands.po │ │ ├── el │ │ │ └── commands.po │ │ ├── es │ │ │ └── commands.po │ │ ├── fa │ │ │ └── commands.po │ │ ├── fi │ │ │ └── commands.po │ │ ├── fr │ │ │ └── commands.po │ │ ├── ga │ │ │ └── commands.po │ │ ├── he │ │ │ └── commands.po │ │ ├── hi │ │ │ └── commands.po │ │ ├── hu │ │ │ └── commands.po │ │ ├── it │ │ │ └── commands.po │ │ ├── ja │ │ │ └── commands.po │ │ ├── ko │ │ │ └── commands.po │ │ ├── lt │ │ │ └── commands.po │ │ ├── mr │ │ │ └── commands.po │ │ ├── ms │ │ │ └── commands.po │ │ ├── nb_NO │ │ │ └── commands.po │ │ ├── nl │ │ │ └── commands.po │ │ ├── pl │ │ │ └── commands.po │ │ ├── pt │ │ │ └── commands.po │ │ ├── pt_BR │ │ │ └── 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 │ │ ├── yua │ │ │ └── commands.po │ │ ├── zh_Hans │ │ │ └── commands.po │ │ └── zh_Hant │ │ │ └── commands.po │ ├── root │ │ └── usr │ │ │ └── share │ │ │ ├── luci │ │ │ └── menu.d │ │ │ │ └── luci-app-commands.json │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-commands.json │ └── ucode │ │ ├── controller │ │ └── commands.uc │ │ └── template │ │ ├── commands.ut │ │ └── commands_public.ut ├── luci-app-coovachilli │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── coovachilli │ │ │ └── coovachilli.js │ ├── po │ │ ├── ar │ │ │ └── coovachilli.po │ │ ├── bg │ │ │ └── coovachilli.po │ │ ├── bn_BD │ │ │ └── coovachilli.po │ │ ├── ca │ │ │ └── coovachilli.po │ │ ├── cs │ │ │ └── coovachilli.po │ │ ├── da │ │ │ └── coovachilli.po │ │ ├── de │ │ │ └── coovachilli.po │ │ ├── el │ │ │ └── coovachilli.po │ │ ├── es │ │ │ └── coovachilli.po │ │ ├── fi │ │ │ └── coovachilli.po │ │ ├── fr │ │ │ └── coovachilli.po │ │ ├── ga │ │ │ └── coovachilli.po │ │ ├── he │ │ │ └── coovachilli.po │ │ ├── hi │ │ │ └── coovachilli.po │ │ ├── hu │ │ │ └── coovachilli.po │ │ ├── it │ │ │ └── coovachilli.po │ │ ├── ja │ │ │ └── coovachilli.po │ │ ├── ko │ │ │ └── coovachilli.po │ │ ├── lt │ │ │ └── coovachilli.po │ │ ├── mr │ │ │ └── coovachilli.po │ │ ├── ms │ │ │ └── coovachilli.po │ │ ├── nb_NO │ │ │ └── coovachilli.po │ │ ├── nl │ │ │ └── coovachilli.po │ │ ├── pl │ │ │ └── coovachilli.po │ │ ├── pt │ │ │ └── coovachilli.po │ │ ├── pt_BR │ │ │ └── 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 │ │ ├── yua │ │ │ └── coovachilli.po │ │ ├── zh_Hans │ │ │ └── coovachilli.po │ │ └── zh_Hant │ │ │ └── coovachilli.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-coovachilli.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-coovachilli.json ├── luci-app-crowdsec-firewall-bouncer │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── crowdsec-firewall-bouncer │ │ │ └── form.js │ ├── po │ │ ├── ar │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── bn_BD │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── cs │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── da │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── de │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── es │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── fi │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── fr │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── ga │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── hu │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── it │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── ja │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── lt │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── nb_NO │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── nl │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── pl │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── pt │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── pt_BR │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── ro │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── ru │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── sv │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── templates │ │ │ └── crowdsec-firewall-bouncer.pot │ │ ├── tr │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── uk │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── vi │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── yua │ │ │ └── crowdsec-firewall-bouncer.po │ │ ├── zh_Hans │ │ │ └── crowdsec-firewall-bouncer.po │ │ └── zh_Hant │ │ │ └── crowdsec-firewall-bouncer.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-crowdsec-firewall-bouncer.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-crowdsec-firewall-bouncer.json ├── luci-app-cshark │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── cshark.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── admin_network │ │ │ │ └── cshark.lua │ │ └── view │ │ │ └── cshark.htm │ ├── po │ │ ├── ar │ │ │ └── cshark.po │ │ ├── bg │ │ │ └── cshark.po │ │ ├── bn_BD │ │ │ └── cshark.po │ │ ├── ca │ │ │ └── cshark.po │ │ ├── cs │ │ │ └── cshark.po │ │ ├── da │ │ │ └── cshark.po │ │ ├── de │ │ │ └── cshark.po │ │ ├── el │ │ │ └── cshark.po │ │ ├── es │ │ │ └── cshark.po │ │ ├── fi │ │ │ └── cshark.po │ │ ├── fr │ │ │ └── cshark.po │ │ ├── ga │ │ │ └── cshark.po │ │ ├── he │ │ │ └── cshark.po │ │ ├── hi │ │ │ └── cshark.po │ │ ├── hu │ │ │ └── cshark.po │ │ ├── it │ │ │ └── cshark.po │ │ ├── ja │ │ │ └── cshark.po │ │ ├── ko │ │ │ └── cshark.po │ │ ├── lt │ │ │ └── cshark.po │ │ ├── mr │ │ │ └── cshark.po │ │ ├── ms │ │ │ └── cshark.po │ │ ├── nb_NO │ │ │ └── cshark.po │ │ ├── nl │ │ │ └── cshark.po │ │ ├── pl │ │ │ └── cshark.po │ │ ├── pt │ │ │ └── cshark.po │ │ ├── pt_BR │ │ │ └── cshark.po │ │ ├── ro │ │ │ └── cshark.po │ │ ├── ru │ │ │ └── cshark.po │ │ ├── sk │ │ │ └── cshark.po │ │ ├── sv │ │ │ └── cshark.po │ │ ├── templates │ │ │ └── cshark.pot │ │ ├── tr │ │ │ └── cshark.po │ │ ├── uk │ │ │ └── cshark.po │ │ ├── vi │ │ │ └── cshark.po │ │ ├── yua │ │ │ └── cshark.po │ │ ├── zh_Hans │ │ │ └── cshark.po │ │ └── zh_Hant │ │ │ └── cshark.po │ └── root │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-cshark.json ├── luci-app-dawn │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── dawn │ │ │ └── dawn-common.js │ │ │ └── view │ │ │ ├── network │ │ │ └── dawn.js │ │ │ └── status │ │ │ └── dawn │ │ │ ├── hearing_map.js │ │ │ └── network_overview.js │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-dawn.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-dawn.json ├── luci-app-dcwapd │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── dcwapd │ │ │ └── dcwapd.js │ ├── po │ │ ├── ar │ │ │ └── dcwapd.po │ │ ├── bg │ │ │ └── dcwapd.po │ │ ├── bn_BD │ │ │ └── dcwapd.po │ │ ├── ca │ │ │ └── dcwapd.po │ │ ├── cs │ │ │ └── dcwapd.po │ │ ├── da │ │ │ └── dcwapd.po │ │ ├── de │ │ │ └── dcwapd.po │ │ ├── el │ │ │ └── dcwapd.po │ │ ├── es │ │ │ └── dcwapd.po │ │ ├── fi │ │ │ └── dcwapd.po │ │ ├── fr │ │ │ └── dcwapd.po │ │ ├── ga │ │ │ └── dcwapd.po │ │ ├── he │ │ │ └── dcwapd.po │ │ ├── hi │ │ │ └── dcwapd.po │ │ ├── hu │ │ │ └── dcwapd.po │ │ ├── it │ │ │ └── dcwapd.po │ │ ├── ja │ │ │ └── dcwapd.po │ │ ├── ko │ │ │ └── dcwapd.po │ │ ├── lt │ │ │ └── dcwapd.po │ │ ├── mr │ │ │ └── dcwapd.po │ │ ├── ms │ │ │ └── dcwapd.po │ │ ├── nb_NO │ │ │ └── dcwapd.po │ │ ├── nl │ │ │ └── dcwapd.po │ │ ├── pl │ │ │ └── dcwapd.po │ │ ├── pt │ │ │ └── dcwapd.po │ │ ├── pt_BR │ │ │ └── dcwapd.po │ │ ├── ro │ │ │ └── dcwapd.po │ │ ├── ru │ │ │ └── dcwapd.po │ │ ├── sk │ │ │ └── dcwapd.po │ │ ├── sv │ │ │ └── dcwapd.po │ │ ├── templates │ │ │ └── dcwapd.pot │ │ ├── tr │ │ │ └── dcwapd.po │ │ ├── uk │ │ │ └── dcwapd.po │ │ ├── vi │ │ │ └── dcwapd.po │ │ ├── yua │ │ │ └── dcwapd.po │ │ ├── zh_Hans │ │ │ └── dcwapd.po │ │ └── zh_Hant │ │ │ └── dcwapd.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-dcwapd.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-dcwapd.json ├── luci-app-ddns │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ ├── ddns │ │ │ └── overview.js │ │ │ └── status │ │ │ └── include │ │ │ └── 70_ddns.js │ ├── po │ │ ├── ar │ │ │ └── ddns.po │ │ ├── bg │ │ │ └── ddns.po │ │ ├── bn_BD │ │ │ └── ddns.po │ │ ├── ca │ │ │ └── ddns.po │ │ ├── cs │ │ │ └── ddns.po │ │ ├── da │ │ │ └── ddns.po │ │ ├── de │ │ │ └── ddns.po │ │ ├── el │ │ │ └── ddns.po │ │ ├── es │ │ │ └── ddns.po │ │ ├── fa │ │ │ └── ddns.po │ │ ├── fi │ │ │ └── ddns.po │ │ ├── fr │ │ │ └── ddns.po │ │ ├── ga │ │ │ └── ddns.po │ │ ├── he │ │ │ └── ddns.po │ │ ├── hi │ │ │ └── ddns.po │ │ ├── hu │ │ │ └── ddns.po │ │ ├── it │ │ │ └── ddns.po │ │ ├── ja │ │ │ └── ddns.po │ │ ├── ko │ │ │ └── ddns.po │ │ ├── lt │ │ │ └── ddns.po │ │ ├── mr │ │ │ └── ddns.po │ │ ├── ms │ │ │ └── ddns.po │ │ ├── nb_NO │ │ │ └── ddns.po │ │ ├── nl │ │ │ └── ddns.po │ │ ├── pl │ │ │ └── ddns.po │ │ ├── pt │ │ │ └── ddns.po │ │ ├── pt_BR │ │ │ └── ddns.po │ │ ├── ro │ │ │ └── ddns.po │ │ ├── ru │ │ │ └── ddns.po │ │ ├── sk │ │ │ └── ddns.po │ │ ├── sv │ │ │ └── ddns.po │ │ ├── templates │ │ │ └── ddns.pot │ │ ├── tr │ │ │ └── ddns.po │ │ ├── uk │ │ │ └── ddns.po │ │ ├── vi │ │ │ └── ddns.po │ │ ├── yua │ │ │ └── ddns.po │ │ ├── zh_Hans │ │ │ └── ddns.po │ │ └── zh_Hant │ │ │ └── ddns.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-ddns.json │ │ └── rpcd │ │ ├── acl.d │ │ └── luci-app-ddns.json │ │ └── ucode │ │ └── ddns.uc ├── luci-app-dockerman │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── dockerman │ │ │ ├── containers.svg │ │ │ ├── images.svg │ │ │ ├── networks.svg │ │ │ └── volumes.svg │ ├── luasrc │ │ ├── controller │ │ │ └── dockerman.lua │ │ ├── model │ │ │ ├── cbi │ │ │ │ └── dockerman │ │ │ │ │ ├── configuration.lua │ │ │ │ │ ├── container.lua │ │ │ │ │ ├── containers.lua │ │ │ │ │ ├── images.lua │ │ │ │ │ ├── networks.lua │ │ │ │ │ ├── newcontainer.lua │ │ │ │ │ ├── newnetwork.lua │ │ │ │ │ ├── overview.lua │ │ │ │ │ └── volumes.lua │ │ │ └── docker.lua │ │ └── view │ │ │ └── dockerman │ │ │ ├── apply_widget.htm │ │ │ ├── cbi │ │ │ ├── inlinebutton.htm │ │ │ ├── inlinevalue.htm │ │ │ ├── namedsection.htm │ │ │ └── xfvalue.htm │ │ │ ├── container.htm │ │ │ ├── container_console.htm │ │ │ ├── container_file.htm │ │ │ ├── container_stats.htm │ │ │ ├── images_import.htm │ │ │ ├── images_load.htm │ │ │ ├── logs.htm │ │ │ ├── newcontainer_resolve.htm │ │ │ └── overview.htm │ ├── po │ │ ├── ar │ │ │ └── dockerman.po │ │ ├── bg │ │ │ └── dockerman.po │ │ ├── bn_BD │ │ │ └── dockerman.po │ │ ├── ca │ │ │ └── dockerman.po │ │ ├── cs │ │ │ └── dockerman.po │ │ ├── da │ │ │ └── dockerman.po │ │ ├── de │ │ │ └── dockerman.po │ │ ├── el │ │ │ └── dockerman.po │ │ ├── es │ │ │ └── dockerman.po │ │ ├── fa │ │ │ └── dockerman.po │ │ ├── fi │ │ │ └── dockerman.po │ │ ├── fr │ │ │ └── dockerman.po │ │ ├── ga │ │ │ └── dockerman.po │ │ ├── he │ │ │ └── dockerman.po │ │ ├── hi │ │ │ └── dockerman.po │ │ ├── hu │ │ │ └── dockerman.po │ │ ├── id │ │ │ └── dockerman.po │ │ ├── it │ │ │ └── dockerman.po │ │ ├── ja │ │ │ └── dockerman.po │ │ ├── ko │ │ │ └── dockerman.po │ │ ├── lt │ │ │ └── dockerman.po │ │ ├── mr │ │ │ └── dockerman.po │ │ ├── ms │ │ │ └── dockerman.po │ │ ├── nb_NO │ │ │ └── dockerman.po │ │ ├── nl │ │ │ └── dockerman.po │ │ ├── pl │ │ │ └── dockerman.po │ │ ├── pt │ │ │ └── dockerman.po │ │ ├── pt_BR │ │ │ └── dockerman.po │ │ ├── ro │ │ │ └── dockerman.po │ │ ├── ru │ │ │ └── dockerman.po │ │ ├── sk │ │ │ └── dockerman.po │ │ ├── sv │ │ │ └── dockerman.po │ │ ├── templates │ │ │ └── dockerman.pot │ │ ├── tr │ │ │ └── dockerman.po │ │ ├── uk │ │ │ └── dockerman.po │ │ ├── vi │ │ │ └── dockerman.po │ │ ├── yua │ │ │ └── dockerman.po │ │ ├── zh_Hans │ │ │ └── dockerman.po │ │ └── zh_Hant │ │ │ └── dockerman.po │ └── root │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-dockerman.json ├── luci-app-dump1090 │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── dump1090 │ │ │ └── dump1090.js │ ├── po │ │ ├── ar │ │ │ └── dump1090.po │ │ ├── bg │ │ │ └── dump1090.po │ │ ├── bn_BD │ │ │ └── dump1090.po │ │ ├── ca │ │ │ └── dump1090.po │ │ ├── cs │ │ │ └── dump1090.po │ │ ├── da │ │ │ └── dump1090.po │ │ ├── de │ │ │ └── dump1090.po │ │ ├── el │ │ │ └── dump1090.po │ │ ├── es │ │ │ └── dump1090.po │ │ ├── fi │ │ │ └── dump1090.po │ │ ├── fr │ │ │ └── dump1090.po │ │ ├── ga │ │ │ └── dump1090.po │ │ ├── he │ │ │ └── dump1090.po │ │ ├── hi │ │ │ └── dump1090.po │ │ ├── hu │ │ │ └── dump1090.po │ │ ├── it │ │ │ └── dump1090.po │ │ ├── ja │ │ │ └── dump1090.po │ │ ├── ko │ │ │ └── dump1090.po │ │ ├── lt │ │ │ └── dump1090.po │ │ ├── mr │ │ │ └── dump1090.po │ │ ├── ms │ │ │ └── dump1090.po │ │ ├── nb_NO │ │ │ └── dump1090.po │ │ ├── nl │ │ │ └── dump1090.po │ │ ├── pl │ │ │ └── dump1090.po │ │ ├── pt │ │ │ └── dump1090.po │ │ ├── pt_BR │ │ │ └── dump1090.po │ │ ├── ro │ │ │ └── dump1090.po │ │ ├── ru │ │ │ └── dump1090.po │ │ ├── sk │ │ │ └── dump1090.po │ │ ├── sv │ │ │ └── dump1090.po │ │ ├── templates │ │ │ └── dump1090.pot │ │ ├── tr │ │ │ └── dump1090.po │ │ ├── uk │ │ │ └── dump1090.po │ │ ├── vi │ │ │ └── dump1090.po │ │ ├── zh_Hans │ │ │ └── dump1090.po │ │ └── zh_Hant │ │ │ └── dump1090.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-dump1090.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-dump1090.json ├── luci-app-dynapoint │ ├── Makefile │ ├── luasrc │ │ ├── model │ │ │ └── cbi │ │ │ │ └── dynapoint.lua │ │ └── view │ │ │ └── dynapoint │ │ │ ├── cbi_checkbox.htm │ │ │ └── cbi_color.htm │ ├── po │ │ ├── ar │ │ │ └── dynapoint.po │ │ ├── bg │ │ │ └── dynapoint.po │ │ ├── bn_BD │ │ │ └── dynapoint.po │ │ ├── ca │ │ │ └── dynapoint.po │ │ ├── cs │ │ │ └── dynapoint.po │ │ ├── da │ │ │ └── dynapoint.po │ │ ├── de │ │ │ └── dynapoint.po │ │ ├── el │ │ │ └── dynapoint.po │ │ ├── es │ │ │ └── dynapoint.po │ │ ├── fa │ │ │ └── dynapoint.po │ │ ├── fi │ │ │ └── dynapoint.po │ │ ├── fr │ │ │ └── dynapoint.po │ │ ├── ga │ │ │ └── dynapoint.po │ │ ├── he │ │ │ └── dynapoint.po │ │ ├── hi │ │ │ └── dynapoint.po │ │ ├── hu │ │ │ └── dynapoint.po │ │ ├── it │ │ │ └── dynapoint.po │ │ ├── ja │ │ │ └── dynapoint.po │ │ ├── ko │ │ │ └── dynapoint.po │ │ ├── lt │ │ │ └── dynapoint.po │ │ ├── mr │ │ │ └── dynapoint.po │ │ ├── ms │ │ │ └── dynapoint.po │ │ ├── nb_NO │ │ │ └── dynapoint.po │ │ ├── nl │ │ │ └── dynapoint.po │ │ ├── pl │ │ │ └── dynapoint.po │ │ ├── pt │ │ │ └── dynapoint.po │ │ ├── pt_BR │ │ │ └── dynapoint.po │ │ ├── ro │ │ │ └── dynapoint.po │ │ ├── ru │ │ │ └── dynapoint.po │ │ ├── sk │ │ │ └── dynapoint.po │ │ ├── sv │ │ │ └── dynapoint.po │ │ ├── templates │ │ │ └── dynapoint.pot │ │ ├── tr │ │ │ └── dynapoint.po │ │ ├── uk │ │ │ └── dynapoint.po │ │ ├── vi │ │ │ └── dynapoint.po │ │ ├── yua │ │ │ └── dynapoint.po │ │ ├── zh_Hans │ │ │ └── dynapoint.po │ │ └── zh_Hant │ │ │ └── dynapoint.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-dynapoint.json │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-dynapoint.json │ │ └── ucitrack │ │ └── luci-app-dynapoint.json ├── luci-app-email │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── email │ │ │ └── emailrelay.js │ ├── po │ │ ├── ar │ │ │ └── email.po │ │ ├── bn_BD │ │ │ └── email.po │ │ ├── cs │ │ │ └── email.po │ │ ├── da │ │ │ └── email.po │ │ ├── de │ │ │ └── email.po │ │ ├── es │ │ │ └── email.po │ │ ├── fi │ │ │ └── email.po │ │ ├── fr │ │ │ └── email.po │ │ ├── ga │ │ │ └── email.po │ │ ├── hu │ │ │ └── email.po │ │ ├── it │ │ │ └── email.po │ │ ├── ja │ │ │ └── email.po │ │ ├── lt │ │ │ └── email.po │ │ ├── nb_NO │ │ │ └── email.po │ │ ├── nl │ │ │ └── email.po │ │ ├── pl │ │ │ └── email.po │ │ ├── pt │ │ │ └── email.po │ │ ├── pt_BR │ │ │ └── email.po │ │ ├── ro │ │ │ └── email.po │ │ ├── ru │ │ │ └── email.po │ │ ├── sv │ │ │ └── email.po │ │ ├── templates │ │ │ └── email.pot │ │ ├── tr │ │ │ └── email.po │ │ ├── uk │ │ │ └── email.po │ │ ├── vi │ │ │ └── email.po │ │ ├── zh_Hans │ │ │ └── email.po │ │ └── zh_Hant │ │ │ └── email.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-email.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-email.json ├── luci-app-eoip │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── eoip │ │ │ └── eoip.js │ ├── po │ │ ├── ar │ │ │ └── eoip.po │ │ ├── bg │ │ │ └── eoip.po │ │ ├── bn_BD │ │ │ └── eoip.po │ │ ├── ca │ │ │ └── eoip.po │ │ ├── cs │ │ │ └── eoip.po │ │ ├── da │ │ │ └── eoip.po │ │ ├── de │ │ │ └── eoip.po │ │ ├── el │ │ │ └── eoip.po │ │ ├── es │ │ │ └── eoip.po │ │ ├── fi │ │ │ └── eoip.po │ │ ├── fr │ │ │ └── eoip.po │ │ ├── ga │ │ │ └── eoip.po │ │ ├── he │ │ │ └── eoip.po │ │ ├── hi │ │ │ └── eoip.po │ │ ├── hu │ │ │ └── eoip.po │ │ ├── it │ │ │ └── eoip.po │ │ ├── ja │ │ │ └── eoip.po │ │ ├── ko │ │ │ └── eoip.po │ │ ├── lt │ │ │ └── eoip.po │ │ ├── mr │ │ │ └── eoip.po │ │ ├── ms │ │ │ └── eoip.po │ │ ├── nb_NO │ │ │ └── eoip.po │ │ ├── nl │ │ │ └── eoip.po │ │ ├── pl │ │ │ └── eoip.po │ │ ├── pt │ │ │ └── eoip.po │ │ ├── pt_BR │ │ │ └── eoip.po │ │ ├── ro │ │ │ └── eoip.po │ │ ├── ru │ │ │ └── eoip.po │ │ ├── sk │ │ │ └── eoip.po │ │ ├── sv │ │ │ └── eoip.po │ │ ├── templates │ │ │ └── eoip.pot │ │ ├── tr │ │ │ └── eoip.po │ │ ├── uk │ │ │ └── eoip.po │ │ ├── vi │ │ │ └── eoip.po │ │ ├── yua │ │ │ └── eoip.po │ │ ├── zh_Hans │ │ │ └── eoip.po │ │ └── zh_Hant │ │ │ └── eoip.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-eoip.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-eoip.json ├── luci-app-example │ ├── BUILDING.md │ ├── Makefile │ ├── README.md │ ├── YAML.md │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── example │ │ │ ├── form.js │ │ │ ├── htmlview.js │ │ │ ├── rpc-jsonmap-tablesection.js │ │ │ ├── rpc-jsonmap-typedsection.js │ │ │ └── rpc.js │ ├── po │ │ ├── ar │ │ │ └── example.po │ │ ├── bg │ │ │ └── example.po │ │ ├── bn_BD │ │ │ └── example.po │ │ ├── ca │ │ │ └── example.po │ │ ├── cs │ │ │ └── example.po │ │ ├── da │ │ │ └── example.po │ │ ├── de │ │ │ └── example.po │ │ ├── el │ │ │ └── example.po │ │ ├── es │ │ │ └── example.po │ │ ├── fi │ │ │ └── example.po │ │ ├── fr │ │ │ └── example.po │ │ ├── he │ │ │ └── example.po │ │ ├── hi │ │ │ └── example.po │ │ ├── hu │ │ │ └── example.po │ │ ├── it │ │ │ └── example.po │ │ ├── ja │ │ │ └── example.po │ │ ├── ko │ │ │ └── example.po │ │ ├── lt │ │ │ └── example.po │ │ ├── mr │ │ │ └── example.po │ │ ├── ms │ │ │ └── example.po │ │ ├── nb_NO │ │ │ └── example.po │ │ ├── nl │ │ │ └── example.po │ │ ├── pl │ │ │ └── example.po │ │ ├── pt │ │ │ └── example.po │ │ ├── pt_BR │ │ │ └── example.po │ │ ├── ro │ │ │ └── example.po │ │ ├── ru │ │ │ └── example.po │ │ ├── sk │ │ │ └── example.po │ │ ├── sv │ │ │ └── example.po │ │ ├── templates │ │ │ └── example.pot │ │ ├── tr │ │ │ └── example.po │ │ ├── uk │ │ │ └── example.po │ │ ├── vi │ │ │ └── example.po │ │ ├── zh_Hans │ │ │ └── example.po │ │ └── zh_Hant │ │ │ └── example.po │ ├── root │ │ ├── etc │ │ │ └── uci-defaults │ │ │ │ └── 80_example │ │ └── usr │ │ │ ├── libexec │ │ │ └── rpcd │ │ │ │ └── luci.example │ │ │ └── share │ │ │ ├── luci │ │ │ └── menu.d │ │ │ │ └── luci-app-example.json │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-example.json │ └── structure.md ├── luci-app-filebrowser │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── system │ │ │ └── filebrowser.js │ ├── po │ │ ├── ar │ │ │ └── filebrowser.po │ │ ├── cs │ │ │ └── filebrowser.po │ │ ├── da │ │ │ └── filebrowser.po │ │ ├── de │ │ │ └── filebrowser.po │ │ ├── es │ │ │ └── filebrowser.po │ │ ├── fa │ │ │ └── filebrowser.po │ │ ├── fi │ │ │ └── filebrowser.po │ │ ├── fr │ │ │ └── filebrowser.po │ │ ├── ga │ │ │ └── filebrowser.po │ │ ├── hu │ │ │ └── filebrowser.po │ │ ├── it │ │ │ └── filebrowser.po │ │ ├── ja │ │ │ └── filebrowser.po │ │ ├── lt │ │ │ └── filebrowser.po │ │ ├── nl │ │ │ └── filebrowser.po │ │ ├── pl │ │ │ └── filebrowser.po │ │ ├── pt │ │ │ └── filebrowser.po │ │ ├── pt_BR │ │ │ └── filebrowser.po │ │ ├── ro │ │ │ └── filebrowser.po │ │ ├── ru │ │ │ └── filebrowser.po │ │ ├── sk │ │ │ └── filebrowser.po │ │ ├── sv │ │ │ └── filebrowser.po │ │ ├── templates │ │ │ └── filebrowser.pot │ │ ├── tr │ │ │ └── filebrowser.po │ │ ├── uk │ │ │ └── filebrowser.po │ │ ├── vi │ │ │ └── filebrowser.po │ │ ├── yua │ │ │ └── filebrowser.po │ │ ├── zh_Hans │ │ │ └── filebrowser.po │ │ └── zh_Hant │ │ │ └── filebrowser.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-filebrowser.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-filebrowser.json ├── luci-app-filemanager │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── system │ │ │ ├── filemanager.js │ │ │ └── filemanager │ │ │ ├── HexEditor.js │ │ │ ├── md.js │ │ │ └── md_help.js │ ├── po │ │ ├── es │ │ │ └── filemanager.po │ │ ├── fa │ │ │ └── filemanager.po │ │ ├── pl │ │ │ └── filemanager.po │ │ ├── templates │ │ │ └── filemanager.pot │ │ ├── zh_Hans │ │ │ └── filemanager.po │ │ └── zh_Hant │ │ │ └── filemanager.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-filemanager.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-filemanager.json ├── luci-app-firewall │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── tools │ │ │ └── firewall.js │ │ │ └── view │ │ │ └── firewall │ │ │ ├── custom.js │ │ │ ├── forwards.js │ │ │ ├── ipsets.js │ │ │ ├── rules.js │ │ │ ├── snats.js │ │ │ └── zones.js │ ├── po │ │ ├── ar │ │ │ └── firewall.po │ │ ├── bg │ │ │ └── firewall.po │ │ ├── bn_BD │ │ │ └── firewall.po │ │ ├── ca │ │ │ └── firewall.po │ │ ├── cs │ │ │ └── firewall.po │ │ ├── da │ │ │ └── firewall.po │ │ ├── de │ │ │ └── firewall.po │ │ ├── el │ │ │ └── firewall.po │ │ ├── es │ │ │ └── firewall.po │ │ ├── fa │ │ │ └── firewall.po │ │ ├── fi │ │ │ └── firewall.po │ │ ├── fr │ │ │ └── firewall.po │ │ ├── ga │ │ │ └── firewall.po │ │ ├── he │ │ │ └── firewall.po │ │ ├── hi │ │ │ └── firewall.po │ │ ├── hu │ │ │ └── firewall.po │ │ ├── id │ │ │ └── firewall.po │ │ ├── it │ │ │ └── firewall.po │ │ ├── ja │ │ │ └── firewall.po │ │ ├── ka │ │ │ └── firewall.po │ │ ├── ko │ │ │ └── firewall.po │ │ ├── lt │ │ │ └── firewall.po │ │ ├── mr │ │ │ └── firewall.po │ │ ├── ms │ │ │ └── firewall.po │ │ ├── nb_NO │ │ │ └── firewall.po │ │ ├── nl │ │ │ └── firewall.po │ │ ├── pl │ │ │ └── firewall.po │ │ ├── pt │ │ │ └── firewall.po │ │ ├── pt_BR │ │ │ └── firewall.po │ │ ├── ro │ │ │ └── firewall.po │ │ ├── ru │ │ │ └── firewall.po │ │ ├── si │ │ │ └── firewall.po │ │ ├── sk │ │ │ └── firewall.po │ │ ├── sr │ │ │ └── firewall.po │ │ ├── sv │ │ │ └── firewall.po │ │ ├── templates │ │ │ └── firewall.pot │ │ ├── tr │ │ │ └── firewall.po │ │ ├── uk │ │ │ └── firewall.po │ │ ├── ur │ │ │ └── firewall.po │ │ ├── vi │ │ │ └── firewall.po │ │ ├── yua │ │ │ └── firewall.po │ │ ├── zh_Hans │ │ │ └── firewall.po │ │ └── zh_Hant │ │ │ └── firewall.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-firewall.json │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-firewall.json │ │ └── ucitrack │ │ └── luci-app-firewall.json ├── luci-app-frpc │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── frpc.js │ ├── po │ │ ├── ar │ │ │ └── frpc.po │ │ ├── bg │ │ │ └── frpc.po │ │ ├── bn_BD │ │ │ └── frpc.po │ │ ├── ca │ │ │ └── frpc.po │ │ ├── cs │ │ │ └── frpc.po │ │ ├── da │ │ │ └── frpc.po │ │ ├── de │ │ │ └── frpc.po │ │ ├── el │ │ │ └── frpc.po │ │ ├── es │ │ │ └── frpc.po │ │ ├── fi │ │ │ └── frpc.po │ │ ├── fr │ │ │ └── frpc.po │ │ ├── ga │ │ │ └── frpc.po │ │ ├── he │ │ │ └── frpc.po │ │ ├── hi │ │ │ └── frpc.po │ │ ├── hu │ │ │ └── frpc.po │ │ ├── it │ │ │ └── frpc.po │ │ ├── ja │ │ │ └── frpc.po │ │ ├── ko │ │ │ └── frpc.po │ │ ├── lt │ │ │ └── frpc.po │ │ ├── mr │ │ │ └── frpc.po │ │ ├── ms │ │ │ └── frpc.po │ │ ├── nb_NO │ │ │ └── frpc.po │ │ ├── nl │ │ │ └── frpc.po │ │ ├── pl │ │ │ └── frpc.po │ │ ├── pt │ │ │ └── frpc.po │ │ ├── pt_BR │ │ │ └── frpc.po │ │ ├── ro │ │ │ └── frpc.po │ │ ├── ru │ │ │ └── frpc.po │ │ ├── sk │ │ │ └── frpc.po │ │ ├── sv │ │ │ └── frpc.po │ │ ├── templates │ │ │ └── frpc.pot │ │ ├── tr │ │ │ └── frpc.po │ │ ├── uk │ │ │ └── frpc.po │ │ ├── vi │ │ │ └── frpc.po │ │ ├── zh_Hans │ │ │ └── frpc.po │ │ └── zh_Hant │ │ │ └── frpc.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-frpc.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-frpc.json ├── luci-app-frps │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── frps.js │ ├── po │ │ ├── ar │ │ │ └── frps.po │ │ ├── bg │ │ │ └── frps.po │ │ ├── bn_BD │ │ │ └── frps.po │ │ ├── ca │ │ │ └── frps.po │ │ ├── cs │ │ │ └── frps.po │ │ ├── da │ │ │ └── frps.po │ │ ├── de │ │ │ └── frps.po │ │ ├── el │ │ │ └── frps.po │ │ ├── es │ │ │ └── frps.po │ │ ├── fi │ │ │ └── frps.po │ │ ├── fr │ │ │ └── frps.po │ │ ├── ga │ │ │ └── frps.po │ │ ├── he │ │ │ └── frps.po │ │ ├── hi │ │ │ └── frps.po │ │ ├── hu │ │ │ └── frps.po │ │ ├── it │ │ │ └── frps.po │ │ ├── ja │ │ │ └── frps.po │ │ ├── ko │ │ │ └── frps.po │ │ ├── lt │ │ │ └── frps.po │ │ ├── mr │ │ │ └── frps.po │ │ ├── ms │ │ │ └── frps.po │ │ ├── nb_NO │ │ │ └── frps.po │ │ ├── nl │ │ │ └── frps.po │ │ ├── pl │ │ │ └── frps.po │ │ ├── pt │ │ │ └── frps.po │ │ ├── pt_BR │ │ │ └── frps.po │ │ ├── ro │ │ │ └── frps.po │ │ ├── ru │ │ │ └── frps.po │ │ ├── sk │ │ │ └── frps.po │ │ ├── sv │ │ │ └── frps.po │ │ ├── templates │ │ │ └── frps.pot │ │ ├── tr │ │ │ └── frps.po │ │ ├── uk │ │ │ └── frps.po │ │ ├── vi │ │ │ └── frps.po │ │ ├── zh_Hans │ │ │ └── frps.po │ │ └── zh_Hant │ │ │ └── frps.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-frps.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-frps.json ├── luci-app-fwknopd │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── fwknopd.js │ ├── po │ │ ├── ar │ │ │ └── fwknopd.po │ │ ├── bg │ │ │ └── fwknopd.po │ │ ├── bn_BD │ │ │ └── fwknopd.po │ │ ├── ca │ │ │ └── fwknopd.po │ │ ├── cs │ │ │ └── fwknopd.po │ │ ├── da │ │ │ └── fwknopd.po │ │ ├── de │ │ │ └── fwknopd.po │ │ ├── el │ │ │ └── fwknopd.po │ │ ├── es │ │ │ └── fwknopd.po │ │ ├── fi │ │ │ └── fwknopd.po │ │ ├── fr │ │ │ └── fwknopd.po │ │ ├── ga │ │ │ └── fwknopd.po │ │ ├── gl │ │ │ └── fwknopd.po │ │ ├── he │ │ │ └── fwknopd.po │ │ ├── hi │ │ │ └── fwknopd.po │ │ ├── hu │ │ │ └── fwknopd.po │ │ ├── it │ │ │ └── fwknopd.po │ │ ├── ja │ │ │ └── fwknopd.po │ │ ├── ko │ │ │ └── fwknopd.po │ │ ├── lt │ │ │ └── fwknopd.po │ │ ├── mr │ │ │ └── fwknopd.po │ │ ├── ms │ │ │ └── fwknopd.po │ │ ├── nb_NO │ │ │ └── fwknopd.po │ │ ├── nl │ │ │ └── fwknopd.po │ │ ├── pl │ │ │ └── fwknopd.po │ │ ├── pt │ │ │ └── fwknopd.po │ │ ├── pt_BR │ │ │ └── fwknopd.po │ │ ├── ro │ │ │ └── fwknopd.po │ │ ├── ru │ │ │ └── fwknopd.po │ │ ├── sk │ │ │ └── fwknopd.po │ │ ├── sv │ │ │ └── fwknopd.po │ │ ├── templates │ │ │ └── fwknopd.pot │ │ ├── tr │ │ │ └── fwknopd.po │ │ ├── uk │ │ │ └── fwknopd.po │ │ ├── vi │ │ │ └── fwknopd.po │ │ ├── zh_Hans │ │ │ └── fwknopd.po │ │ └── zh_Hant │ │ │ └── fwknopd.po │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── 40_luci-fwknopd │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-fwknopd.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-fwknopd.json ├── luci-app-hd-idle │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── hd_idle.js │ ├── po │ │ ├── ar │ │ │ └── hd-idle.po │ │ ├── bg │ │ │ └── hd-idle.po │ │ ├── bn_BD │ │ │ └── hd-idle.po │ │ ├── ca │ │ │ └── hd-idle.po │ │ ├── cs │ │ │ └── hd-idle.po │ │ ├── da │ │ │ └── hd-idle.po │ │ ├── de │ │ │ └── hd-idle.po │ │ ├── el │ │ │ └── hd-idle.po │ │ ├── es │ │ │ └── hd-idle.po │ │ ├── fi │ │ │ └── hd-idle.po │ │ ├── fr │ │ │ └── hd-idle.po │ │ ├── ga │ │ │ └── hd-idle.po │ │ ├── he │ │ │ └── hd-idle.po │ │ ├── hi │ │ │ └── hd-idle.po │ │ ├── hu │ │ │ └── hd-idle.po │ │ ├── it │ │ │ └── hd-idle.po │ │ ├── ja │ │ │ └── hd-idle.po │ │ ├── ko │ │ │ └── hd-idle.po │ │ ├── lt │ │ │ └── hd-idle.po │ │ ├── mr │ │ │ └── hd-idle.po │ │ ├── ms │ │ │ └── hd-idle.po │ │ ├── nb_NO │ │ │ └── hd-idle.po │ │ ├── nl │ │ │ └── hd-idle.po │ │ ├── pl │ │ │ └── hd-idle.po │ │ ├── pt │ │ │ └── hd-idle.po │ │ ├── pt_BR │ │ │ └── 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 │ │ ├── yua │ │ │ └── hd-idle.po │ │ ├── zh_Hans │ │ │ └── hd-idle.po │ │ └── zh_Hant │ │ │ └── hd-idle.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-hd-idle.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-hd-idle.json ├── luci-app-https-dns-proxy │ ├── Makefile │ ├── README.md │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── https-dns-proxy │ │ │ └── status.js │ │ │ └── view │ │ │ ├── https-dns-proxy │ │ │ └── overview.js │ │ │ └── status │ │ │ └── include │ │ │ └── 71_https-dns-proxy.js │ ├── po │ │ ├── ar │ │ │ └── https-dns-proxy.po │ │ ├── bg │ │ │ └── https-dns-proxy.po │ │ ├── bn_BD │ │ │ └── https-dns-proxy.po │ │ ├── ca │ │ │ └── https-dns-proxy.po │ │ ├── cs │ │ │ └── https-dns-proxy.po │ │ ├── da │ │ │ └── https-dns-proxy.po │ │ ├── de │ │ │ └── https-dns-proxy.po │ │ ├── el │ │ │ └── https-dns-proxy.po │ │ ├── es │ │ │ └── https-dns-proxy.po │ │ ├── fi │ │ │ └── https-dns-proxy.po │ │ ├── fr │ │ │ └── https-dns-proxy.po │ │ ├── ga │ │ │ └── https-dns-proxy.po │ │ ├── he │ │ │ └── https-dns-proxy.po │ │ ├── hi │ │ │ └── https-dns-proxy.po │ │ ├── hu │ │ │ └── https-dns-proxy.po │ │ ├── it │ │ │ └── https-dns-proxy.po │ │ ├── ja │ │ │ └── https-dns-proxy.po │ │ ├── ko │ │ │ └── https-dns-proxy.po │ │ ├── lt │ │ │ └── https-dns-proxy.po │ │ ├── mr │ │ │ └── https-dns-proxy.po │ │ ├── ms │ │ │ └── https-dns-proxy.po │ │ ├── nb_NO │ │ │ └── https-dns-proxy.po │ │ ├── nl │ │ │ └── https-dns-proxy.po │ │ ├── pl │ │ │ └── https-dns-proxy.po │ │ ├── pt │ │ │ └── https-dns-proxy.po │ │ ├── pt_BR │ │ │ └── https-dns-proxy.po │ │ ├── ro │ │ │ └── https-dns-proxy.po │ │ ├── ru │ │ │ └── https-dns-proxy.po │ │ ├── sk │ │ │ └── https-dns-proxy.po │ │ ├── sv │ │ │ └── https-dns-proxy.po │ │ ├── templates │ │ │ └── https-dns-proxy.pot │ │ ├── tr │ │ │ └── https-dns-proxy.po │ │ ├── uk │ │ │ └── https-dns-proxy.po │ │ ├── vi │ │ │ └── https-dns-proxy.po │ │ ├── zh_Hans │ │ │ └── https-dns-proxy.po │ │ └── zh_Hant │ │ │ └── https-dns-proxy.po │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── 40_luci-https-dns-proxy │ │ └── usr │ │ ├── libexec │ │ └── rpcd │ │ │ └── luci.https-dns-proxy │ │ └── share │ │ ├── https-dns-proxy │ │ └── providers │ │ │ ├── app.tiarap.doh.json │ │ │ ├── ca.cira.canadianshield.json │ │ │ ├── ch.digitale-gesellschaft.dns.json │ │ │ ├── ch.switch.dns.json │ │ │ ├── cn.360.doh.json │ │ │ ├── cn.rubyfish.dns.json │ │ │ ├── co.oszx.dns.json │ │ │ ├── com.adguard.dns.json │ │ │ ├── com.ahadns.blitz.json │ │ │ ├── com.alidns.dns.json │ │ │ ├── com.blahdns.doh.json │ │ │ ├── com.cloudflare-dns.json │ │ │ ├── com.controld.freedns.json │ │ │ ├── com.decloudus.dns.json │ │ │ ├── com.dnsforfamily.dns-doh.json │ │ │ ├── com.dnslify.doh.json │ │ │ ├── com.opendns.doh.json │ │ │ ├── com.rethinkdns.sky.json │ │ │ ├── cz.nic.odvr.json │ │ │ ├── de.dnsforge.json │ │ │ ├── fi.lelux.resolver-eu.json │ │ │ ├── google.dns.json │ │ │ ├── gr.libredns.doh.json │ │ │ ├── io.nextdns.dns.json │ │ │ ├── io.seby.doh-2.json │ │ │ ├── jp.iij.dns.public.json │ │ │ ├── lu.restena.kaitain.json │ │ │ ├── net.ahadns.doh.json │ │ │ ├── net.applied-privacy.doh.json │ │ │ ├── net.cfiec.dns.json │ │ │ ├── net.ffmuc.doh.json │ │ │ ├── net.he.ordns.json │ │ │ ├── net.idnet.doh.json │ │ │ ├── net.mullvad.dns.json │ │ │ ├── net.quad9.json │ │ │ ├── one.comss.dns.json │ │ │ ├── org.cleanbrowsing.doh.json │ │ │ ├── org.snopyta.dns.doh.fi.json │ │ │ ├── org.wikimedia-dns.json │ │ │ ├── pub.doh.json │ │ │ ├── sb.dns.json │ │ │ └── tw.twnic.dns.json │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-https-dns-proxy.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-https-dns-proxy.json ├── luci-app-irqbalance │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── irqbalance.js │ ├── po │ │ ├── ar │ │ │ └── irqbalance.po │ │ ├── bg │ │ │ └── irqbalance.po │ │ ├── bn_BD │ │ │ └── irqbalance.po │ │ ├── ca │ │ │ └── irqbalance.po │ │ ├── cs │ │ │ └── irqbalance.po │ │ ├── da │ │ │ └── irqbalance.po │ │ ├── de │ │ │ └── irqbalance.po │ │ ├── el │ │ │ └── irqbalance.po │ │ ├── es │ │ │ └── irqbalance.po │ │ ├── fi │ │ │ └── irqbalance.po │ │ ├── fr │ │ │ └── irqbalance.po │ │ ├── ga │ │ │ └── irqbalance.po │ │ ├── he │ │ │ └── irqbalance.po │ │ ├── hi │ │ │ └── irqbalance.po │ │ ├── hu │ │ │ └── irqbalance.po │ │ ├── it │ │ │ └── irqbalance.po │ │ ├── ja │ │ │ └── irqbalance.po │ │ ├── ko │ │ │ └── irqbalance.po │ │ ├── lt │ │ │ └── irqbalance.po │ │ ├── mr │ │ │ └── irqbalance.po │ │ ├── ms │ │ │ └── irqbalance.po │ │ ├── nb_NO │ │ │ └── irqbalance.po │ │ ├── nl │ │ │ └── irqbalance.po │ │ ├── pl │ │ │ └── irqbalance.po │ │ ├── pt │ │ │ └── irqbalance.po │ │ ├── pt_BR │ │ │ └── irqbalance.po │ │ ├── ro │ │ │ └── irqbalance.po │ │ ├── ru │ │ │ └── irqbalance.po │ │ ├── sk │ │ │ └── irqbalance.po │ │ ├── sv │ │ │ └── irqbalance.po │ │ ├── templates │ │ │ └── irqbalance.pot │ │ ├── tr │ │ │ └── irqbalance.po │ │ ├── uk │ │ │ └── irqbalance.po │ │ ├── vi │ │ │ └── irqbalance.po │ │ ├── yua │ │ │ └── irqbalance.po │ │ ├── zh_Hans │ │ │ └── irqbalance.po │ │ └── zh_Hant │ │ │ └── irqbalance.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-irqbalance.json │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-irqbalance.json │ │ └── ucitrack │ │ └── luci-app-irqbalance.json ├── luci-app-keepalived │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ ├── keepalived │ │ │ ├── globals.js │ │ │ ├── ipaddress.js │ │ │ ├── notification.js │ │ │ ├── overview.js │ │ │ ├── peers.js │ │ │ ├── route.js │ │ │ ├── script.js │ │ │ ├── servers.js │ │ │ ├── track_interface.js │ │ │ ├── url.js │ │ │ ├── vrrp_instance.js │ │ │ └── vrrp_sync_group.js │ │ │ └── status │ │ │ └── include │ │ │ └── 35_keepalived.js │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-keepalived.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-keepalived.json ├── luci-app-ksmbd │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── ksmbd.js │ ├── po │ │ ├── ar │ │ │ └── ksmbd.po │ │ ├── bg │ │ │ └── ksmbd.po │ │ ├── bn_BD │ │ │ └── ksmbd.po │ │ ├── ca │ │ │ └── ksmbd.po │ │ ├── cs │ │ │ └── ksmbd.po │ │ ├── da │ │ │ └── ksmbd.po │ │ ├── de │ │ │ └── ksmbd.po │ │ ├── el │ │ │ └── ksmbd.po │ │ ├── es │ │ │ └── ksmbd.po │ │ ├── fi │ │ │ └── ksmbd.po │ │ ├── fr │ │ │ └── ksmbd.po │ │ ├── ga │ │ │ └── ksmbd.po │ │ ├── he │ │ │ └── ksmbd.po │ │ ├── hi │ │ │ └── ksmbd.po │ │ ├── hu │ │ │ └── ksmbd.po │ │ ├── it │ │ │ └── ksmbd.po │ │ ├── ja │ │ │ └── ksmbd.po │ │ ├── ko │ │ │ └── ksmbd.po │ │ ├── lt │ │ │ └── ksmbd.po │ │ ├── mr │ │ │ └── ksmbd.po │ │ ├── ms │ │ │ └── ksmbd.po │ │ ├── nb_NO │ │ │ └── ksmbd.po │ │ ├── nl │ │ │ └── ksmbd.po │ │ ├── pl │ │ │ └── ksmbd.po │ │ ├── pt │ │ │ └── ksmbd.po │ │ ├── pt_BR │ │ │ └── ksmbd.po │ │ ├── ro │ │ │ └── ksmbd.po │ │ ├── ru │ │ │ └── ksmbd.po │ │ ├── sk │ │ │ └── ksmbd.po │ │ ├── sv │ │ │ └── ksmbd.po │ │ ├── templates │ │ │ └── ksmbd.pot │ │ ├── tr │ │ │ └── ksmbd.po │ │ ├── uk │ │ │ └── ksmbd.po │ │ ├── vi │ │ │ └── ksmbd.po │ │ ├── yua │ │ │ └── ksmbd.po │ │ ├── zh_Hans │ │ │ └── ksmbd.po │ │ └── zh_Hant │ │ │ └── ksmbd.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-ksmbd.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-ksmbd.json ├── luci-app-ledtrig-rssi │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── view │ │ └── system │ │ └── led-trigger │ │ └── rssi.js ├── luci-app-ledtrig-switch │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── view │ │ └── system │ │ └── led-trigger │ │ ├── switch0.js │ │ └── switch1.js ├── luci-app-ledtrig-usbport │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── view │ │ └── system │ │ └── led-trigger │ │ └── usbport.js ├── luci-app-libreswan │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── libreswan │ │ │ ├── globals.js │ │ │ ├── overview.js │ │ │ ├── proposals.js │ │ │ └── tunnels.js │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-libreswan.json │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-libreswan.json │ │ └── ucitrack │ │ └── luci-app-libreswan.json ├── luci-app-lldpd │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── lldpd.js │ │ │ ├── lldpd │ │ │ ├── details_hide.svg │ │ │ ├── details_show.svg │ │ │ └── lldpd.css │ │ │ └── view │ │ │ └── lldpd │ │ │ ├── config.js │ │ │ └── status.js │ ├── po │ │ ├── cs │ │ │ └── lldpd.po │ │ ├── da │ │ │ └── lldpd.po │ │ ├── de │ │ │ └── lldpd.po │ │ ├── es │ │ │ └── lldpd.po │ │ ├── fi │ │ │ └── lldpd.po │ │ ├── fr │ │ │ └── lldpd.po │ │ ├── ga │ │ │ └── lldpd.po │ │ ├── hu │ │ │ └── lldpd.po │ │ ├── it │ │ │ └── lldpd.po │ │ ├── ja │ │ │ └── lldpd.po │ │ ├── lt │ │ │ └── lldpd.po │ │ ├── nl │ │ │ └── lldpd.po │ │ ├── pl │ │ │ └── lldpd.po │ │ ├── pt │ │ │ └── lldpd.po │ │ ├── pt_BR │ │ │ └── lldpd.po │ │ ├── ro │ │ │ └── lldpd.po │ │ ├── ru │ │ │ └── lldpd.po │ │ ├── sv │ │ │ └── lldpd.po │ │ ├── templates │ │ │ └── lldpd.pot │ │ ├── tr │ │ │ └── lldpd.po │ │ ├── uk │ │ │ └── lldpd.po │ │ ├── vi │ │ │ └── lldpd.po │ │ ├── zh_Hans │ │ │ └── lldpd.po │ │ └── zh_Hant │ │ │ └── lldpd.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-lldpd.json │ │ └── rpcd │ │ ├── acl.d │ │ └── luci-app-lldpd.json │ │ └── ucode │ │ └── luci.lldpd ├── luci-app-lorawan-basicstation │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── lorawan-basicstation │ │ │ ├── advanced.js │ │ │ ├── general.js │ │ │ └── log.js │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-lorawan-basicstation.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-lorawan-basicstation.json ├── 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 │ ├── po │ │ ├── ar │ │ │ └── ltqtapi.po │ │ ├── bg │ │ │ └── ltqtapi.po │ │ ├── bn_BD │ │ │ └── ltqtapi.po │ │ ├── ca │ │ │ └── ltqtapi.po │ │ ├── cs │ │ │ └── ltqtapi.po │ │ ├── da │ │ │ └── ltqtapi.po │ │ ├── de │ │ │ └── ltqtapi.po │ │ ├── el │ │ │ └── ltqtapi.po │ │ ├── es │ │ │ └── ltqtapi.po │ │ ├── fi │ │ │ └── ltqtapi.po │ │ ├── fr │ │ │ └── ltqtapi.po │ │ ├── ga │ │ │ └── ltqtapi.po │ │ ├── he │ │ │ └── ltqtapi.po │ │ ├── hi │ │ │ └── ltqtapi.po │ │ ├── hu │ │ │ └── ltqtapi.po │ │ ├── it │ │ │ └── ltqtapi.po │ │ ├── ja │ │ │ └── ltqtapi.po │ │ ├── ko │ │ │ └── ltqtapi.po │ │ ├── lt │ │ │ └── ltqtapi.po │ │ ├── mr │ │ │ └── ltqtapi.po │ │ ├── ms │ │ │ └── ltqtapi.po │ │ ├── nb_NO │ │ │ └── ltqtapi.po │ │ ├── nl │ │ │ └── ltqtapi.po │ │ ├── pl │ │ │ └── ltqtapi.po │ │ ├── pt │ │ │ └── ltqtapi.po │ │ ├── pt_BR │ │ │ └── ltqtapi.po │ │ ├── ro │ │ │ └── ltqtapi.po │ │ ├── ru │ │ │ └── ltqtapi.po │ │ ├── sk │ │ │ └── ltqtapi.po │ │ ├── sv │ │ │ └── ltqtapi.po │ │ ├── templates │ │ │ └── ltqtapi.pot │ │ ├── tr │ │ │ └── ltqtapi.po │ │ ├── uk │ │ │ └── ltqtapi.po │ │ ├── vi │ │ │ └── ltqtapi.po │ │ ├── yua │ │ │ └── ltqtapi.po │ │ ├── zh_Hans │ │ │ └── ltqtapi.po │ │ └── zh_Hant │ │ │ └── ltqtapi.po │ └── root │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-ltqtapi.json ├── 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 │ ├── po │ │ ├── ar │ │ │ └── lxc.po │ │ ├── bg │ │ │ └── lxc.po │ │ ├── bn_BD │ │ │ └── lxc.po │ │ ├── ca │ │ │ └── lxc.po │ │ ├── cs │ │ │ └── lxc.po │ │ ├── da │ │ │ └── lxc.po │ │ ├── de │ │ │ └── lxc.po │ │ ├── el │ │ │ └── lxc.po │ │ ├── es │ │ │ └── lxc.po │ │ ├── fi │ │ │ └── lxc.po │ │ ├── fr │ │ │ └── lxc.po │ │ ├── ga │ │ │ └── lxc.po │ │ ├── he │ │ │ └── lxc.po │ │ ├── hi │ │ │ └── lxc.po │ │ ├── hu │ │ │ └── lxc.po │ │ ├── it │ │ │ └── lxc.po │ │ ├── ja │ │ │ └── lxc.po │ │ ├── ko │ │ │ └── lxc.po │ │ ├── lt │ │ │ └── lxc.po │ │ ├── mr │ │ │ └── lxc.po │ │ ├── ms │ │ │ └── lxc.po │ │ ├── nb_NO │ │ │ └── lxc.po │ │ ├── nl │ │ │ └── lxc.po │ │ ├── pl │ │ │ └── lxc.po │ │ ├── pt │ │ │ └── lxc.po │ │ ├── pt_BR │ │ │ └── lxc.po │ │ ├── ro │ │ │ └── lxc.po │ │ ├── ru │ │ │ └── lxc.po │ │ ├── sk │ │ │ └── lxc.po │ │ ├── sv │ │ │ └── lxc.po │ │ ├── templates │ │ │ └── lxc.pot │ │ ├── tr │ │ │ └── lxc.po │ │ ├── uk │ │ │ └── lxc.po │ │ ├── vi │ │ │ └── lxc.po │ │ ├── yua │ │ │ └── lxc.po │ │ ├── zh_Hans │ │ │ └── lxc.po │ │ └── zh_Hant │ │ │ └── lxc.po │ └── root │ │ ├── etc │ │ └── config │ │ │ └── lxc │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-lxc.json ├── luci-app-minidlna │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ ├── minidlna.js │ │ │ └── status │ │ │ └── include │ │ │ └── 80_minidlna.js │ ├── po │ │ ├── ar │ │ │ └── minidlna.po │ │ ├── bg │ │ │ └── minidlna.po │ │ ├── bn_BD │ │ │ └── minidlna.po │ │ ├── ca │ │ │ └── minidlna.po │ │ ├── cs │ │ │ └── minidlna.po │ │ ├── da │ │ │ └── minidlna.po │ │ ├── de │ │ │ └── minidlna.po │ │ ├── el │ │ │ └── minidlna.po │ │ ├── es │ │ │ └── minidlna.po │ │ ├── fi │ │ │ └── minidlna.po │ │ ├── fr │ │ │ └── minidlna.po │ │ ├── ga │ │ │ └── minidlna.po │ │ ├── he │ │ │ └── minidlna.po │ │ ├── hi │ │ │ └── minidlna.po │ │ ├── hu │ │ │ └── minidlna.po │ │ ├── it │ │ │ └── minidlna.po │ │ ├── ja │ │ │ └── minidlna.po │ │ ├── ko │ │ │ └── minidlna.po │ │ ├── lt │ │ │ └── minidlna.po │ │ ├── mr │ │ │ └── minidlna.po │ │ ├── ms │ │ │ └── minidlna.po │ │ ├── nb_NO │ │ │ └── minidlna.po │ │ ├── nl │ │ │ └── minidlna.po │ │ ├── pl │ │ │ └── minidlna.po │ │ ├── pt │ │ │ └── minidlna.po │ │ ├── pt_BR │ │ │ └── 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 │ │ ├── yua │ │ │ └── minidlna.po │ │ ├── zh_Hans │ │ │ └── minidlna.po │ │ └── zh_Hant │ │ │ └── minidlna.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-minidlna.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-minidlna.json ├── luci-app-mjpg-streamer │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── mjpg-streamer │ │ │ └── mjpg-streamer.js │ ├── po │ │ ├── ar │ │ │ └── mjpg-streamer.po │ │ ├── bg │ │ │ └── mjpg-streamer.po │ │ ├── bn_BD │ │ │ └── mjpg-streamer.po │ │ ├── ca │ │ │ └── mjpg-streamer.po │ │ ├── cs │ │ │ └── mjpg-streamer.po │ │ ├── da │ │ │ └── mjpg-streamer.po │ │ ├── de │ │ │ └── mjpg-streamer.po │ │ ├── el │ │ │ └── mjpg-streamer.po │ │ ├── es │ │ │ └── mjpg-streamer.po │ │ ├── fi │ │ │ └── mjpg-streamer.po │ │ ├── fr │ │ │ └── mjpg-streamer.po │ │ ├── ga │ │ │ └── mjpg-streamer.po │ │ ├── he │ │ │ └── mjpg-streamer.po │ │ ├── hi │ │ │ └── mjpg-streamer.po │ │ ├── hu │ │ │ └── mjpg-streamer.po │ │ ├── it │ │ │ └── mjpg-streamer.po │ │ ├── ja │ │ │ └── mjpg-streamer.po │ │ ├── ko │ │ │ └── mjpg-streamer.po │ │ ├── lt │ │ │ └── mjpg-streamer.po │ │ ├── mr │ │ │ └── mjpg-streamer.po │ │ ├── ms │ │ │ └── mjpg-streamer.po │ │ ├── nb_NO │ │ │ └── mjpg-streamer.po │ │ ├── nl │ │ │ └── mjpg-streamer.po │ │ ├── pl │ │ │ └── mjpg-streamer.po │ │ ├── pt │ │ │ └── mjpg-streamer.po │ │ ├── pt_BR │ │ │ └── mjpg-streamer.po │ │ ├── ro │ │ │ └── mjpg-streamer.po │ │ ├── ru │ │ │ └── mjpg-streamer.po │ │ ├── sk │ │ │ └── mjpg-streamer.po │ │ ├── sv │ │ │ └── mjpg-streamer.po │ │ ├── templates │ │ │ └── mjpg-streamer.pot │ │ ├── tr │ │ │ └── mjpg-streamer.po │ │ ├── uk │ │ │ └── mjpg-streamer.po │ │ ├── vi │ │ │ └── mjpg-streamer.po │ │ ├── zh_Hans │ │ │ └── mjpg-streamer.po │ │ └── zh_Hant │ │ │ └── mjpg-streamer.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-mjpg-streamer.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-mjpg-streamer.json ├── luci-app-mosquitto │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── mosquitto │ │ │ └── mosquitto.js │ ├── po │ │ ├── ar │ │ │ └── mosquitto.po │ │ ├── bg │ │ │ └── mosquitto.po │ │ ├── bn_BD │ │ │ └── mosquitto.po │ │ ├── ca │ │ │ └── mosquitto.po │ │ ├── cs │ │ │ └── mosquitto.po │ │ ├── da │ │ │ └── mosquitto.po │ │ ├── de │ │ │ └── mosquitto.po │ │ ├── el │ │ │ └── mosquitto.po │ │ ├── es │ │ │ └── mosquitto.po │ │ ├── fi │ │ │ └── mosquitto.po │ │ ├── fr │ │ │ └── mosquitto.po │ │ ├── ga │ │ │ └── mosquitto.po │ │ ├── he │ │ │ └── mosquitto.po │ │ ├── hi │ │ │ └── mosquitto.po │ │ ├── hu │ │ │ └── mosquitto.po │ │ ├── it │ │ │ └── mosquitto.po │ │ ├── ja │ │ │ └── mosquitto.po │ │ ├── ko │ │ │ └── mosquitto.po │ │ ├── lt │ │ │ └── mosquitto.po │ │ ├── mr │ │ │ └── mosquitto.po │ │ ├── ms │ │ │ └── mosquitto.po │ │ ├── nb_NO │ │ │ └── mosquitto.po │ │ ├── nl │ │ │ └── mosquitto.po │ │ ├── pl │ │ │ └── mosquitto.po │ │ ├── pt │ │ │ └── mosquitto.po │ │ ├── pt_BR │ │ │ └── mosquitto.po │ │ ├── ro │ │ │ └── mosquitto.po │ │ ├── ru │ │ │ └── mosquitto.po │ │ ├── sk │ │ │ └── mosquitto.po │ │ ├── sv │ │ │ └── mosquitto.po │ │ ├── templates │ │ │ └── mosquitto.pot │ │ ├── tr │ │ │ └── mosquitto.po │ │ ├── uk │ │ │ └── mosquitto.po │ │ ├── vi │ │ │ └── mosquitto.po │ │ ├── zh_Hans │ │ │ └── mosquitto.po │ │ └── zh_Hant │ │ │ └── mosquitto.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-mosquitto.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-mosquitto.json ├── luci-app-mwan3 │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ ├── mwan3 │ │ │ ├── mwan3.css │ │ │ ├── network │ │ │ │ ├── globals.js │ │ │ │ ├── interface.js │ │ │ │ ├── member.js │ │ │ │ ├── notify.js │ │ │ │ ├── policy.js │ │ │ │ └── rule.js │ │ │ └── status │ │ │ │ ├── detail.js │ │ │ │ ├── diagnostics.js │ │ │ │ ├── overview.js │ │ │ │ └── troubleshooting.js │ │ │ └── status │ │ │ └── include │ │ │ └── 90_mwan3.js │ ├── po │ │ ├── ar │ │ │ └── mwan3.po │ │ ├── bg │ │ │ └── mwan3.po │ │ ├── bn_BD │ │ │ └── mwan3.po │ │ ├── ca │ │ │ └── mwan3.po │ │ ├── cs │ │ │ └── mwan3.po │ │ ├── da │ │ │ └── mwan3.po │ │ ├── de │ │ │ └── mwan3.po │ │ ├── el │ │ │ └── mwan3.po │ │ ├── es │ │ │ └── mwan3.po │ │ ├── fa │ │ │ └── mwan3.po │ │ ├── fi │ │ │ └── mwan3.po │ │ ├── fr │ │ │ └── mwan3.po │ │ ├── ga │ │ │ └── mwan3.po │ │ ├── he │ │ │ └── mwan3.po │ │ ├── hi │ │ │ └── mwan3.po │ │ ├── hu │ │ │ └── mwan3.po │ │ ├── it │ │ │ └── mwan3.po │ │ ├── ja │ │ │ └── mwan3.po │ │ ├── ko │ │ │ └── mwan3.po │ │ ├── lt │ │ │ └── mwan3.po │ │ ├── mr │ │ │ └── mwan3.po │ │ ├── ms │ │ │ └── mwan3.po │ │ ├── nb_NO │ │ │ └── mwan3.po │ │ ├── nl │ │ │ └── mwan3.po │ │ ├── pl │ │ │ └── mwan3.po │ │ ├── pt │ │ │ └── mwan3.po │ │ ├── pt_BR │ │ │ └── mwan3.po │ │ ├── ro │ │ │ └── mwan3.po │ │ ├── ru │ │ │ └── mwan3.po │ │ ├── sk │ │ │ └── mwan3.po │ │ ├── sv │ │ │ └── mwan3.po │ │ ├── templates │ │ │ └── mwan3.pot │ │ ├── tr │ │ │ └── mwan3.po │ │ ├── uk │ │ │ └── mwan3.po │ │ ├── vi │ │ │ └── mwan3.po │ │ ├── yua │ │ │ └── mwan3.po │ │ ├── zh_Hans │ │ │ └── mwan3.po │ │ └── zh_Hant │ │ │ └── mwan3.po │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── 60_luci-mwan3 │ │ └── usr │ │ ├── libexec │ │ └── luci-mwan3 │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-mwan3.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-mwan3.json ├── luci-app-natmap │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── natmap.js │ ├── po │ │ ├── ar │ │ │ └── natmap.po │ │ ├── bg │ │ │ └── natmap.po │ │ ├── bn_BD │ │ │ └── natmap.po │ │ ├── ca │ │ │ └── natmap.po │ │ ├── cs │ │ │ └── natmap.po │ │ ├── da │ │ │ └── natmap.po │ │ ├── de │ │ │ └── natmap.po │ │ ├── el │ │ │ └── natmap.po │ │ ├── es │ │ │ └── natmap.po │ │ ├── fi │ │ │ └── natmap.po │ │ ├── fr │ │ │ └── natmap.po │ │ ├── ga │ │ │ └── natmap.po │ │ ├── he │ │ │ └── natmap.po │ │ ├── hi │ │ │ └── natmap.po │ │ ├── hu │ │ │ └── natmap.po │ │ ├── it │ │ │ └── natmap.po │ │ ├── ja │ │ │ └── natmap.po │ │ ├── ko │ │ │ └── natmap.po │ │ ├── lt │ │ │ └── natmap.po │ │ ├── mr │ │ │ └── natmap.po │ │ ├── ms │ │ │ └── natmap.po │ │ ├── nb_NO │ │ │ └── natmap.po │ │ ├── nl │ │ │ └── natmap.po │ │ ├── pl │ │ │ └── natmap.po │ │ ├── pt │ │ │ └── natmap.po │ │ ├── pt_BR │ │ │ └── natmap.po │ │ ├── ro │ │ │ └── natmap.po │ │ ├── ru │ │ │ └── natmap.po │ │ ├── sk │ │ │ └── natmap.po │ │ ├── sv │ │ │ └── natmap.po │ │ ├── templates │ │ │ └── natmap.pot │ │ ├── tr │ │ │ └── natmap.po │ │ ├── uk │ │ │ └── natmap.po │ │ ├── vi │ │ │ └── natmap.po │ │ ├── yua │ │ │ └── natmap.po │ │ ├── zh_Hans │ │ │ └── natmap.po │ │ └── zh_Hant │ │ │ └── natmap.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-natmap.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-natmap.json ├── luci-app-nextdns │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── nextdns │ │ │ ├── logread.js │ │ │ └── overview.js │ ├── po │ │ ├── ar │ │ │ └── nextdns.po │ │ ├── bg │ │ │ └── nextdns.po │ │ ├── bn_BD │ │ │ └── nextdns.po │ │ ├── ca │ │ │ └── nextdns.po │ │ ├── cs │ │ │ └── nextdns.po │ │ ├── da │ │ │ └── nextdns.po │ │ ├── de │ │ │ └── nextdns.po │ │ ├── el │ │ │ └── nextdns.po │ │ ├── es │ │ │ └── nextdns.po │ │ ├── fi │ │ │ └── nextdns.po │ │ ├── fr │ │ │ └── nextdns.po │ │ ├── ga │ │ │ └── nextdns.po │ │ ├── he │ │ │ └── nextdns.po │ │ ├── hi │ │ │ └── nextdns.po │ │ ├── hu │ │ │ └── nextdns.po │ │ ├── it │ │ │ └── nextdns.po │ │ ├── ja │ │ │ └── nextdns.po │ │ ├── ko │ │ │ └── nextdns.po │ │ ├── lt │ │ │ └── nextdns.po │ │ ├── mr │ │ │ └── nextdns.po │ │ ├── ms │ │ │ └── nextdns.po │ │ ├── nb_NO │ │ │ └── nextdns.po │ │ ├── nl │ │ │ └── nextdns.po │ │ ├── pl │ │ │ └── nextdns.po │ │ ├── pt │ │ │ └── nextdns.po │ │ ├── pt_BR │ │ │ └── nextdns.po │ │ ├── ro │ │ │ └── nextdns.po │ │ ├── ru │ │ │ └── nextdns.po │ │ ├── sk │ │ │ └── nextdns.po │ │ ├── sv │ │ │ └── nextdns.po │ │ ├── templates │ │ │ └── nextdns.pot │ │ ├── tr │ │ │ └── nextdns.po │ │ ├── uk │ │ │ └── nextdns.po │ │ ├── vi │ │ │ └── nextdns.po │ │ ├── yua │ │ │ └── nextdns.po │ │ ├── zh_Hans │ │ │ └── nextdns.po │ │ └── zh_Hant │ │ │ └── nextdns.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-nextdns.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-nextdns.json ├── luci-app-nft-qos │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── nft-qos.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── nft-qos │ │ │ │ └── nft-qos.lua │ │ └── view │ │ │ └── nft-qos │ │ │ └── rate.htm │ ├── po │ │ ├── ar │ │ │ └── nft-qos.po │ │ ├── bg │ │ │ └── nft-qos.po │ │ ├── bn_BD │ │ │ └── nft-qos.po │ │ ├── ca │ │ │ └── nft-qos.po │ │ ├── cs │ │ │ └── nft-qos.po │ │ ├── da │ │ │ └── nft-qos.po │ │ ├── de │ │ │ └── nft-qos.po │ │ ├── el │ │ │ └── nft-qos.po │ │ ├── es │ │ │ └── nft-qos.po │ │ ├── fi │ │ │ └── nft-qos.po │ │ ├── fr │ │ │ └── nft-qos.po │ │ ├── ga │ │ │ └── nft-qos.po │ │ ├── he │ │ │ └── nft-qos.po │ │ ├── hi │ │ │ └── nft-qos.po │ │ ├── hu │ │ │ └── nft-qos.po │ │ ├── it │ │ │ └── nft-qos.po │ │ ├── ja │ │ │ └── nft-qos.po │ │ ├── ko │ │ │ └── nft-qos.po │ │ ├── lt │ │ │ └── nft-qos.po │ │ ├── mr │ │ │ └── nft-qos.po │ │ ├── ms │ │ │ └── nft-qos.po │ │ ├── nb_NO │ │ │ └── nft-qos.po │ │ ├── nl │ │ │ └── nft-qos.po │ │ ├── pl │ │ │ └── nft-qos.po │ │ ├── pt │ │ │ └── nft-qos.po │ │ ├── pt_BR │ │ │ └── nft-qos.po │ │ ├── ro │ │ │ └── nft-qos.po │ │ ├── ru │ │ │ └── nft-qos.po │ │ ├── sk │ │ │ └── nft-qos.po │ │ ├── sv │ │ │ └── nft-qos.po │ │ ├── templates │ │ │ └── nft-qos.pot │ │ ├── tr │ │ │ └── nft-qos.po │ │ ├── uk │ │ │ └── nft-qos.po │ │ ├── vi │ │ │ └── nft-qos.po │ │ ├── zh_Hans │ │ │ └── nft-qos.po │ │ └── zh_Hant │ │ │ └── nft-qos.po │ └── root │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-nft-qos.json ├── luci-app-nlbwmon │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ ├── nlbw.css │ │ │ └── nlbw │ │ │ ├── backup.js │ │ │ ├── config.js │ │ │ └── display.js │ ├── po │ │ ├── ar │ │ │ └── nlbwmon.po │ │ ├── bg │ │ │ └── nlbwmon.po │ │ ├── bn_BD │ │ │ └── nlbwmon.po │ │ ├── ca │ │ │ └── nlbwmon.po │ │ ├── cs │ │ │ └── nlbwmon.po │ │ ├── da │ │ │ └── nlbwmon.po │ │ ├── de │ │ │ └── nlbwmon.po │ │ ├── el │ │ │ └── nlbwmon.po │ │ ├── es │ │ │ └── nlbwmon.po │ │ ├── fi │ │ │ └── nlbwmon.po │ │ ├── fr │ │ │ └── nlbwmon.po │ │ ├── ga │ │ │ └── nlbwmon.po │ │ ├── he │ │ │ └── nlbwmon.po │ │ ├── hi │ │ │ └── nlbwmon.po │ │ ├── hu │ │ │ └── nlbwmon.po │ │ ├── it │ │ │ └── nlbwmon.po │ │ ├── ja │ │ │ └── nlbwmon.po │ │ ├── ko │ │ │ └── nlbwmon.po │ │ ├── lt │ │ │ └── nlbwmon.po │ │ ├── mr │ │ │ └── nlbwmon.po │ │ ├── ms │ │ │ └── nlbwmon.po │ │ ├── nb_NO │ │ │ └── nlbwmon.po │ │ ├── nl │ │ │ └── nlbwmon.po │ │ ├── pl │ │ │ └── nlbwmon.po │ │ ├── pt │ │ │ └── nlbwmon.po │ │ ├── pt_BR │ │ │ └── nlbwmon.po │ │ ├── ro │ │ │ └── nlbwmon.po │ │ ├── ru │ │ │ └── nlbwmon.po │ │ ├── sk │ │ │ └── nlbwmon.po │ │ ├── sv │ │ │ └── nlbwmon.po │ │ ├── templates │ │ │ └── nlbwmon.pot │ │ ├── tr │ │ │ └── nlbwmon.po │ │ ├── uk │ │ │ └── nlbwmon.po │ │ ├── vi │ │ │ └── nlbwmon.po │ │ ├── yua │ │ │ └── nlbwmon.po │ │ ├── zh_Hans │ │ │ └── nlbwmon.po │ │ └── zh_Hant │ │ │ └── nlbwmon.po │ └── root │ │ └── usr │ │ ├── libexec │ │ └── nlbwmon-action │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-nlbwmon.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-nlbwmon.json ├── luci-app-nut │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── nut │ │ │ ├── nut_cgi.js │ │ │ ├── nut_monitor.js │ │ │ └── nut_server.js │ ├── po │ │ ├── ar │ │ │ └── nut.po │ │ ├── bg │ │ │ └── nut.po │ │ ├── bn_BD │ │ │ └── nut.po │ │ ├── ca │ │ │ └── nut.po │ │ ├── cs │ │ │ └── nut.po │ │ ├── da │ │ │ └── nut.po │ │ ├── de │ │ │ └── nut.po │ │ ├── el │ │ │ └── nut.po │ │ ├── es │ │ │ └── nut.po │ │ ├── fi │ │ │ └── nut.po │ │ ├── fr │ │ │ └── nut.po │ │ ├── ga │ │ │ └── nut.po │ │ ├── he │ │ │ └── nut.po │ │ ├── hi │ │ │ └── nut.po │ │ ├── hu │ │ │ └── nut.po │ │ ├── it │ │ │ └── nut.po │ │ ├── ja │ │ │ └── nut.po │ │ ├── ko │ │ │ └── nut.po │ │ ├── lt │ │ │ └── nut.po │ │ ├── mr │ │ │ └── nut.po │ │ ├── ms │ │ │ └── nut.po │ │ ├── nb_NO │ │ │ └── nut.po │ │ ├── nl │ │ │ └── nut.po │ │ ├── pl │ │ │ └── nut.po │ │ ├── pt │ │ │ └── nut.po │ │ ├── pt_BR │ │ │ └── nut.po │ │ ├── ro │ │ │ └── nut.po │ │ ├── ru │ │ │ └── nut.po │ │ ├── sgs │ │ │ └── nut.po │ │ ├── sk │ │ │ └── nut.po │ │ ├── sr │ │ │ └── nut.po │ │ ├── sv │ │ │ └── nut.po │ │ ├── templates │ │ │ └── nut.pot │ │ ├── tr │ │ │ └── nut.po │ │ ├── uk │ │ │ └── nut.po │ │ ├── vi │ │ │ └── nut.po │ │ ├── zh_Hans │ │ │ └── nut.po │ │ └── zh_Hant │ │ │ └── nut.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-nut.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-nut.json ├── 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 │ ├── po │ │ ├── ar │ │ │ └── ocserv.po │ │ ├── bg │ │ │ └── ocserv.po │ │ ├── bn_BD │ │ │ └── ocserv.po │ │ ├── ca │ │ │ └── ocserv.po │ │ ├── cs │ │ │ └── ocserv.po │ │ ├── da │ │ │ └── ocserv.po │ │ ├── de │ │ │ └── ocserv.po │ │ ├── el │ │ │ └── ocserv.po │ │ ├── es │ │ │ └── ocserv.po │ │ ├── fi │ │ │ └── ocserv.po │ │ ├── fr │ │ │ └── ocserv.po │ │ ├── ga │ │ │ └── ocserv.po │ │ ├── he │ │ │ └── ocserv.po │ │ ├── hi │ │ │ └── ocserv.po │ │ ├── hu │ │ │ └── ocserv.po │ │ ├── it │ │ │ └── ocserv.po │ │ ├── ja │ │ │ └── ocserv.po │ │ ├── ko │ │ │ └── ocserv.po │ │ ├── lt │ │ │ └── ocserv.po │ │ ├── mr │ │ │ └── ocserv.po │ │ ├── ms │ │ │ └── ocserv.po │ │ ├── nb_NO │ │ │ └── ocserv.po │ │ ├── nl │ │ │ └── ocserv.po │ │ ├── pl │ │ │ └── ocserv.po │ │ ├── pt │ │ │ └── ocserv.po │ │ ├── pt_BR │ │ │ └── ocserv.po │ │ ├── ro │ │ │ └── ocserv.po │ │ ├── ru │ │ │ └── ocserv.po │ │ ├── sk │ │ │ └── ocserv.po │ │ ├── sv │ │ │ └── ocserv.po │ │ ├── templates │ │ │ └── ocserv.pot │ │ ├── tr │ │ │ └── ocserv.po │ │ ├── uk │ │ │ └── ocserv.po │ │ ├── vi │ │ │ └── ocserv.po │ │ ├── zh_Hans │ │ │ └── ocserv.po │ │ └── zh_Hant │ │ │ └── ocserv.po │ └── root │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-ocserv.json ├── luci-app-olsr-services │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── freifunk-services │ │ │ └── services.js │ ├── po │ │ ├── ar │ │ │ └── olsr-services.po │ │ ├── bg │ │ │ └── olsr-services.po │ │ ├── bn_BD │ │ │ └── olsr-services.po │ │ ├── ca │ │ │ └── olsr-services.po │ │ ├── cs │ │ │ └── olsr-services.po │ │ ├── da │ │ │ └── olsr-services.po │ │ ├── de │ │ │ └── olsr-services.po │ │ ├── el │ │ │ └── olsr-services.po │ │ ├── es │ │ │ └── olsr-services.po │ │ ├── fi │ │ │ └── olsr-services.po │ │ ├── fr │ │ │ └── olsr-services.po │ │ ├── ga │ │ │ └── olsr-services.po │ │ ├── he │ │ │ └── olsr-services.po │ │ ├── hi │ │ │ └── olsr-services.po │ │ ├── hu │ │ │ └── olsr-services.po │ │ ├── it │ │ │ └── olsr-services.po │ │ ├── ja │ │ │ └── olsr-services.po │ │ ├── ko │ │ │ └── olsr-services.po │ │ ├── lt │ │ │ └── olsr-services.po │ │ ├── mr │ │ │ └── olsr-services.po │ │ ├── ms │ │ │ └── olsr-services.po │ │ ├── nb_NO │ │ │ └── olsr-services.po │ │ ├── nl │ │ │ └── olsr-services.po │ │ ├── pl │ │ │ └── olsr-services.po │ │ ├── pt │ │ │ └── olsr-services.po │ │ ├── pt_BR │ │ │ └── olsr-services.po │ │ ├── ro │ │ │ └── olsr-services.po │ │ ├── ru │ │ │ └── olsr-services.po │ │ ├── sk │ │ │ └── olsr-services.po │ │ ├── sv │ │ │ └── olsr-services.po │ │ ├── templates │ │ │ └── olsr-services.pot │ │ ├── tr │ │ │ └── olsr-services.po │ │ ├── uk │ │ │ └── olsr-services.po │ │ ├── vi │ │ │ └── olsr-services.po │ │ ├── yua │ │ │ └── olsr-services.po │ │ ├── zh_Hans │ │ │ └── olsr-services.po │ │ └── zh_Hant │ │ │ └── olsr-services.po │ └── root │ │ └── usr │ │ ├── libexec │ │ └── rpcd │ │ │ └── olsr-services │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-olsr-services.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-olsr-services.json ├── luci-app-olsr-viz │ ├── Makefile │ ├── htdocs │ │ └── 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 │ │ │ └── view │ │ │ └── olsr-viz │ │ │ └── olsr-viz-view.js │ ├── po │ │ ├── ar │ │ │ └── olsr-viz.po │ │ ├── bg │ │ │ └── olsr-viz.po │ │ ├── bn_BD │ │ │ └── olsr-viz.po │ │ ├── ca │ │ │ └── olsr-viz.po │ │ ├── cs │ │ │ └── olsr-viz.po │ │ ├── da │ │ │ └── olsr-viz.po │ │ ├── de │ │ │ └── olsr-viz.po │ │ ├── el │ │ │ └── olsr-viz.po │ │ ├── es │ │ │ └── olsr-viz.po │ │ ├── fi │ │ │ └── olsr-viz.po │ │ ├── fr │ │ │ └── olsr-viz.po │ │ ├── ga │ │ │ └── olsr-viz.po │ │ ├── he │ │ │ └── olsr-viz.po │ │ ├── hi │ │ │ └── olsr-viz.po │ │ ├── hu │ │ │ └── olsr-viz.po │ │ ├── it │ │ │ └── olsr-viz.po │ │ ├── ja │ │ │ └── olsr-viz.po │ │ ├── ko │ │ │ └── olsr-viz.po │ │ ├── lt │ │ │ └── olsr-viz.po │ │ ├── mr │ │ │ └── olsr-viz.po │ │ ├── ms │ │ │ └── olsr-viz.po │ │ ├── nb_NO │ │ │ └── olsr-viz.po │ │ ├── nl │ │ │ └── olsr-viz.po │ │ ├── pl │ │ │ └── olsr-viz.po │ │ ├── pt │ │ │ └── olsr-viz.po │ │ ├── pt_BR │ │ │ └── olsr-viz.po │ │ ├── ro │ │ │ └── olsr-viz.po │ │ ├── ru │ │ │ └── olsr-viz.po │ │ ├── sk │ │ │ └── olsr-viz.po │ │ ├── sr │ │ │ └── olsr-viz.po │ │ ├── sv │ │ │ └── olsr-viz.po │ │ ├── templates │ │ │ └── olsr-viz.pot │ │ ├── tr │ │ │ └── olsr-viz.po │ │ ├── uk │ │ │ └── olsr-viz.po │ │ ├── vi │ │ │ └── olsr-viz.po │ │ ├── yua │ │ │ └── olsr-viz.po │ │ ├── zh_Hans │ │ │ └── olsr-viz.po │ │ └── zh_Hant │ │ │ └── olsr-viz.po │ └── root │ │ └── usr │ │ ├── libexec │ │ └── rpcd │ │ │ └── olsrvizinfo │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-olsr-viz.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-olsr-viz-unauthenticated.json ├── luci-app-olsr │ ├── Makefile │ ├── htdocs │ │ ├── cgi-bin-nodes.html │ │ ├── cgi-bin-status.html │ │ └── luci-static │ │ │ └── resources │ │ │ ├── common │ │ │ └── common_js.js │ │ │ └── view │ │ │ └── olsr │ │ │ ├── frontend │ │ │ ├── olsrd.js │ │ │ ├── olsrd6.js │ │ │ ├── olsrddisplay.js │ │ │ ├── olsrdhna.js │ │ │ ├── olsrdhna6.js │ │ │ ├── olsrdiface.js │ │ │ ├── olsrdiface6.js │ │ │ ├── olsrdplugins.js │ │ │ └── olsrdplugins6.js │ │ │ └── status-olsr │ │ │ ├── error_olsr.js │ │ │ ├── hna.js │ │ │ ├── interfaces.js │ │ │ ├── mid.js │ │ │ ├── neighbors.js │ │ │ ├── routes.js │ │ │ ├── smartgw.js │ │ │ └── topology.js │ ├── po │ │ ├── ar │ │ │ └── olsr.po │ │ ├── bg │ │ │ └── olsr.po │ │ ├── bn_BD │ │ │ └── olsr.po │ │ ├── ca │ │ │ └── olsr.po │ │ ├── cs │ │ │ └── olsr.po │ │ ├── da │ │ │ └── olsr.po │ │ ├── de │ │ │ └── olsr.po │ │ ├── el │ │ │ └── olsr.po │ │ ├── es │ │ │ └── olsr.po │ │ ├── fi │ │ │ └── olsr.po │ │ ├── fr │ │ │ └── olsr.po │ │ ├── ga │ │ │ └── olsr.po │ │ ├── he │ │ │ └── olsr.po │ │ ├── hi │ │ │ └── olsr.po │ │ ├── hu │ │ │ └── olsr.po │ │ ├── it │ │ │ └── olsr.po │ │ ├── ja │ │ │ └── olsr.po │ │ ├── ko │ │ │ └── olsr.po │ │ ├── lt │ │ │ └── olsr.po │ │ ├── mr │ │ │ └── olsr.po │ │ ├── ms │ │ │ └── olsr.po │ │ ├── nb_NO │ │ │ └── olsr.po │ │ ├── nl │ │ │ └── olsr.po │ │ ├── pl │ │ │ └── olsr.po │ │ ├── pt │ │ │ └── olsr.po │ │ ├── pt_BR │ │ │ └── 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_Hans │ │ │ └── olsr.po │ │ └── zh_Hant │ │ │ └── olsr.po │ └── root │ │ ├── etc │ │ └── config │ │ │ └── luci_olsr │ │ └── usr │ │ ├── libexec │ │ └── rpcd │ │ │ └── olsrinfo │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ ├── luci-app-olsr-backend.json │ │ │ └── luci-app-olsr-frontend.json │ │ ├── rpcd │ │ └── acl.d │ │ │ ├── luci-app-olsr-unauthenticated.json │ │ │ └── luci-app-olsr.json │ │ └── ucitrack │ │ ├── luci-app-olsr.json │ │ └── luci-app-olsr6.json ├── luci-app-omcproxy │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── omcproxy.js │ ├── po │ │ ├── ar │ │ │ └── omcproxy.po │ │ ├── bg │ │ │ └── omcproxy.po │ │ ├── bn_BD │ │ │ └── omcproxy.po │ │ ├── ca │ │ │ └── omcproxy.po │ │ ├── cs │ │ │ └── omcproxy.po │ │ ├── da │ │ │ └── omcproxy.po │ │ ├── de │ │ │ └── omcproxy.po │ │ ├── el │ │ │ └── omcproxy.po │ │ ├── es │ │ │ └── omcproxy.po │ │ ├── fi │ │ │ └── omcproxy.po │ │ ├── fr │ │ │ └── omcproxy.po │ │ ├── ga │ │ │ └── omcproxy.po │ │ ├── he │ │ │ └── omcproxy.po │ │ ├── hi │ │ │ └── omcproxy.po │ │ ├── hu │ │ │ └── omcproxy.po │ │ ├── id │ │ │ └── omcproxy.po │ │ ├── it │ │ │ └── omcproxy.po │ │ ├── ja │ │ │ └── omcproxy.po │ │ ├── ko │ │ │ └── omcproxy.po │ │ ├── lt │ │ │ └── omcproxy.po │ │ ├── mr │ │ │ └── omcproxy.po │ │ ├── ms │ │ │ └── omcproxy.po │ │ ├── nb_NO │ │ │ └── omcproxy.po │ │ ├── nl │ │ │ └── omcproxy.po │ │ ├── pl │ │ │ └── omcproxy.po │ │ ├── pt │ │ │ └── omcproxy.po │ │ ├── pt_BR │ │ │ └── omcproxy.po │ │ ├── ro │ │ │ └── omcproxy.po │ │ ├── ru │ │ │ └── omcproxy.po │ │ ├── sk │ │ │ └── omcproxy.po │ │ ├── sv │ │ │ └── omcproxy.po │ │ ├── templates │ │ │ └── omcproxy.pot │ │ ├── tr │ │ │ └── omcproxy.po │ │ ├── uk │ │ │ └── omcproxy.po │ │ ├── vi │ │ │ └── omcproxy.po │ │ ├── yua │ │ │ └── omcproxy.po │ │ ├── zh_Hans │ │ │ └── omcproxy.po │ │ └── zh_Hant │ │ │ └── omcproxy.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-omcproxy.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-omcproxy.json ├── luci-app-openvpn │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── openvpn.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ ├── openvpn-advanced.lua │ │ │ │ ├── openvpn-basic.lua │ │ │ │ ├── openvpn-file.lua │ │ │ │ └── openvpn.lua │ │ └── view │ │ │ └── openvpn │ │ │ ├── cbi-select-input-add.htm │ │ │ ├── ovpn_css.htm │ │ │ └── pageswitch.htm │ ├── po │ │ ├── ar │ │ │ └── openvpn.po │ │ ├── bg │ │ │ └── openvpn.po │ │ ├── bn_BD │ │ │ └── openvpn.po │ │ ├── ca │ │ │ └── openvpn.po │ │ ├── cs │ │ │ └── openvpn.po │ │ ├── da │ │ │ └── openvpn.po │ │ ├── de │ │ │ └── openvpn.po │ │ ├── el │ │ │ └── openvpn.po │ │ ├── es │ │ │ └── openvpn.po │ │ ├── fa │ │ │ └── openvpn.po │ │ ├── fi │ │ │ └── openvpn.po │ │ ├── fil │ │ │ └── openvpn.po │ │ ├── fr │ │ │ └── openvpn.po │ │ ├── ga │ │ │ └── openvpn.po │ │ ├── he │ │ │ └── openvpn.po │ │ ├── hi │ │ │ └── openvpn.po │ │ ├── hu │ │ │ └── openvpn.po │ │ ├── it │ │ │ └── openvpn.po │ │ ├── ja │ │ │ └── openvpn.po │ │ ├── ko │ │ │ └── openvpn.po │ │ ├── lt │ │ │ └── openvpn.po │ │ ├── mr │ │ │ └── openvpn.po │ │ ├── ms │ │ │ └── openvpn.po │ │ ├── nb_NO │ │ │ └── openvpn.po │ │ ├── nl │ │ │ └── openvpn.po │ │ ├── pl │ │ │ └── openvpn.po │ │ ├── pt │ │ │ └── openvpn.po │ │ ├── pt_BR │ │ │ └── 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 │ │ ├── yua │ │ │ └── openvpn.po │ │ ├── zh_Hans │ │ │ └── openvpn.po │ │ └── zh_Hant │ │ │ └── openvpn.po │ └── root │ │ ├── etc │ │ └── config │ │ │ └── openvpn_recipes │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-openvpn.json ├── luci-app-openwisp │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── openwisp.js │ ├── po │ │ ├── ar │ │ │ └── openwisp.po │ │ ├── bg │ │ │ └── openwisp.po │ │ ├── bn_BD │ │ │ └── openwisp.po │ │ ├── ca │ │ │ └── openwisp.po │ │ ├── cs │ │ │ └── openwisp.po │ │ ├── da │ │ │ └── openwisp.po │ │ ├── de │ │ │ └── openwisp.po │ │ ├── el │ │ │ └── openwisp.po │ │ ├── es │ │ │ └── openwisp.po │ │ ├── fi │ │ │ └── openwisp.po │ │ ├── fr │ │ │ └── openwisp.po │ │ ├── ga │ │ │ └── openwisp.po │ │ ├── he │ │ │ └── openwisp.po │ │ ├── hi │ │ │ └── openwisp.po │ │ ├── hu │ │ │ └── openwisp.po │ │ ├── it │ │ │ └── openwisp.po │ │ ├── ja │ │ │ └── openwisp.po │ │ ├── ko │ │ │ └── openwisp.po │ │ ├── lt │ │ │ └── openwisp.po │ │ ├── mr │ │ │ └── openwisp.po │ │ ├── ms │ │ │ └── openwisp.po │ │ ├── nb_NO │ │ │ └── openwisp.po │ │ ├── nl │ │ │ └── openwisp.po │ │ ├── pl │ │ │ └── openwisp.po │ │ ├── pt │ │ │ └── openwisp.po │ │ ├── pt_BR │ │ │ └── openwisp.po │ │ ├── ro │ │ │ └── openwisp.po │ │ ├── ru │ │ │ └── openwisp.po │ │ ├── sk │ │ │ └── openwisp.po │ │ ├── sv │ │ │ └── openwisp.po │ │ ├── templates │ │ │ └── openwisp.pot │ │ ├── tr │ │ │ └── openwisp.po │ │ ├── uk │ │ │ └── openwisp.po │ │ ├── vi │ │ │ └── openwisp.po │ │ ├── zh_Hans │ │ │ └── openwisp.po │ │ └── zh_Hant │ │ │ └── openwisp.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-openwisp.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-openwisp.json ├── luci-app-p910nd │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── p910nd.js │ ├── po │ │ ├── ar │ │ │ └── p910nd.po │ │ ├── bg │ │ │ └── p910nd.po │ │ ├── bn_BD │ │ │ └── p910nd.po │ │ ├── ca │ │ │ └── p910nd.po │ │ ├── cs │ │ │ └── p910nd.po │ │ ├── da │ │ │ └── p910nd.po │ │ ├── de │ │ │ └── p910nd.po │ │ ├── el │ │ │ └── p910nd.po │ │ ├── es │ │ │ └── p910nd.po │ │ ├── fi │ │ │ └── p910nd.po │ │ ├── fr │ │ │ └── p910nd.po │ │ ├── ga │ │ │ └── p910nd.po │ │ ├── he │ │ │ └── p910nd.po │ │ ├── hi │ │ │ └── p910nd.po │ │ ├── hu │ │ │ └── p910nd.po │ │ ├── it │ │ │ └── p910nd.po │ │ ├── ja │ │ │ └── p910nd.po │ │ ├── ko │ │ │ └── p910nd.po │ │ ├── lt │ │ │ └── p910nd.po │ │ ├── mr │ │ │ └── p910nd.po │ │ ├── ms │ │ │ └── p910nd.po │ │ ├── nb_NO │ │ │ └── p910nd.po │ │ ├── nl │ │ │ └── p910nd.po │ │ ├── pl │ │ │ └── p910nd.po │ │ ├── pt │ │ │ └── p910nd.po │ │ ├── pt_BR │ │ │ └── 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_Hans │ │ │ └── p910nd.po │ │ └── zh_Hant │ │ │ └── p910nd.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-p910nd.json │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-p910nd.json │ │ └── ucitrack │ │ └── luci-app-p910nd.json ├── luci-app-package-manager │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── package-manager.js │ ├── po │ │ ├── ar │ │ │ └── package-manager.po │ │ ├── bg │ │ │ └── package-manager.po │ │ ├── bn_BD │ │ │ └── package-manager.po │ │ ├── ca │ │ │ └── package-manager.po │ │ ├── cs │ │ │ └── package-manager.po │ │ ├── da │ │ │ └── package-manager.po │ │ ├── de │ │ │ └── package-manager.po │ │ ├── el │ │ │ └── package-manager.po │ │ ├── es │ │ │ └── package-manager.po │ │ ├── fa │ │ │ └── package-manager.po │ │ ├── fi │ │ │ └── package-manager.po │ │ ├── fr │ │ │ └── package-manager.po │ │ ├── ga │ │ │ └── package-manager.po │ │ ├── he │ │ │ └── package-manager.po │ │ ├── hi │ │ │ └── package-manager.po │ │ ├── hu │ │ │ └── package-manager.po │ │ ├── it │ │ │ └── package-manager.po │ │ ├── ja │ │ │ └── package-manager.po │ │ ├── ko │ │ │ └── package-manager.po │ │ ├── lt │ │ │ └── package-manager.po │ │ ├── mr │ │ │ └── package-manager.po │ │ ├── ms │ │ │ └── package-manager.po │ │ ├── nb_NO │ │ │ └── package-manager.po │ │ ├── nl │ │ │ └── package-manager.po │ │ ├── pl │ │ │ └── package-manager.po │ │ ├── pt │ │ │ └── package-manager.po │ │ ├── pt_BR │ │ │ └── package-manager.po │ │ ├── ro │ │ │ └── package-manager.po │ │ ├── ru │ │ │ └── package-manager.po │ │ ├── sk │ │ │ └── package-manager.po │ │ ├── sv │ │ │ └── package-manager.po │ │ ├── templates │ │ │ └── package-manager.pot │ │ ├── tr │ │ │ └── package-manager.po │ │ ├── uk │ │ │ └── package-manager.po │ │ ├── ur │ │ │ └── package-manager.po │ │ ├── vi │ │ │ └── package-manager.po │ │ ├── yua │ │ │ └── package-manager.po │ │ ├── zh_Hans │ │ │ └── package-manager.po │ │ └── zh_Hant │ │ │ └── package-manager.po │ └── root │ │ └── usr │ │ ├── libexec │ │ └── package-manager-call │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-package-manager.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-package-manager.json ├── luci-app-pagekitec │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── pagekitec.js │ ├── po │ │ ├── ar │ │ │ └── pagekitec.po │ │ ├── bg │ │ │ └── pagekitec.po │ │ ├── bn_BD │ │ │ └── pagekitec.po │ │ ├── ca │ │ │ └── pagekitec.po │ │ ├── cs │ │ │ └── pagekitec.po │ │ ├── da │ │ │ └── pagekitec.po │ │ ├── de │ │ │ └── pagekitec.po │ │ ├── el │ │ │ └── pagekitec.po │ │ ├── es │ │ │ └── pagekitec.po │ │ ├── fi │ │ │ └── pagekitec.po │ │ ├── fr │ │ │ └── pagekitec.po │ │ ├── ga │ │ │ └── pagekitec.po │ │ ├── he │ │ │ └── pagekitec.po │ │ ├── hi │ │ │ └── pagekitec.po │ │ ├── hu │ │ │ └── pagekitec.po │ │ ├── it │ │ │ └── pagekitec.po │ │ ├── ja │ │ │ └── pagekitec.po │ │ ├── ko │ │ │ └── pagekitec.po │ │ ├── lt │ │ │ └── pagekitec.po │ │ ├── mr │ │ │ └── pagekitec.po │ │ ├── ms │ │ │ └── pagekitec.po │ │ ├── nb_NO │ │ │ └── pagekitec.po │ │ ├── nl │ │ │ └── pagekitec.po │ │ ├── pl │ │ │ └── pagekitec.po │ │ ├── pt │ │ │ └── pagekitec.po │ │ ├── pt_BR │ │ │ └── pagekitec.po │ │ ├── ro │ │ │ └── pagekitec.po │ │ ├── ru │ │ │ └── pagekitec.po │ │ ├── sk │ │ │ └── pagekitec.po │ │ ├── sv │ │ │ └── pagekitec.po │ │ ├── templates │ │ │ └── pagekitec.pot │ │ ├── tr │ │ │ └── pagekitec.po │ │ ├── uk │ │ │ └── pagekitec.po │ │ ├── vi │ │ │ └── pagekitec.po │ │ ├── yua │ │ │ └── pagekitec.po │ │ ├── zh_Hans │ │ │ └── pagekitec.po │ │ └── zh_Hant │ │ │ └── pagekitec.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-pagekitec.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-pagekitec.json ├── luci-app-pbr │ ├── Makefile │ ├── README.md │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── pbr │ │ │ └── status.js │ │ │ └── view │ │ │ ├── pbr │ │ │ └── overview.js │ │ │ └── status │ │ │ └── include │ │ │ └── 72_pbr.js │ ├── po │ │ ├── ar │ │ │ └── pbr.po │ │ ├── bg │ │ │ └── pbr.po │ │ ├── bn_BD │ │ │ └── pbr.po │ │ ├── ca │ │ │ └── pbr.po │ │ ├── cs │ │ │ └── pbr.po │ │ ├── da │ │ │ └── pbr.po │ │ ├── de │ │ │ └── pbr.po │ │ ├── el │ │ │ └── pbr.po │ │ ├── es │ │ │ └── pbr.po │ │ ├── fi │ │ │ └── pbr.po │ │ ├── fr │ │ │ └── pbr.po │ │ ├── ga │ │ │ └── pbr.po │ │ ├── he │ │ │ └── pbr.po │ │ ├── hi │ │ │ └── pbr.po │ │ ├── hu │ │ │ └── pbr.po │ │ ├── it │ │ │ └── pbr.po │ │ ├── ja │ │ │ └── pbr.po │ │ ├── ko │ │ │ └── pbr.po │ │ ├── lt │ │ │ └── pbr.po │ │ ├── mr │ │ │ └── pbr.po │ │ ├── ms │ │ │ └── pbr.po │ │ ├── nb_NO │ │ │ └── pbr.po │ │ ├── nl │ │ │ └── pbr.po │ │ ├── pl │ │ │ └── pbr.po │ │ ├── pt │ │ │ └── pbr.po │ │ ├── pt_BR │ │ │ └── pbr.po │ │ ├── ro │ │ │ └── pbr.po │ │ ├── ru │ │ │ └── pbr.po │ │ ├── sk │ │ │ └── pbr.po │ │ ├── sv │ │ │ └── pbr.po │ │ ├── templates │ │ │ └── pbr.pot │ │ ├── tr │ │ │ └── pbr.po │ │ ├── uk │ │ │ └── pbr.po │ │ ├── vi │ │ │ └── pbr.po │ │ ├── zh_Hans │ │ │ ├── pbr.po │ │ │ └── zh-cn │ │ │ │ └── pbr.po │ │ └── zh_Hant │ │ │ ├── pbr.po │ │ │ └── zh-tw │ │ │ └── pbr.po │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── 40_luci-pbr │ │ └── usr │ │ ├── libexec │ │ └── rpcd │ │ │ └── luci.pbr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-pbr.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-pbr.json ├── luci-app-privoxy │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── privoxy.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── privoxy.lua │ │ └── view │ │ │ └── privoxy │ │ │ ├── detail_logview.htm │ │ │ └── detail_startstop.htm │ ├── po │ │ ├── ar │ │ │ └── privoxy.po │ │ ├── bg │ │ │ └── privoxy.po │ │ ├── bn_BD │ │ │ └── privoxy.po │ │ ├── ca │ │ │ └── privoxy.po │ │ ├── cs │ │ │ └── privoxy.po │ │ ├── da │ │ │ └── privoxy.po │ │ ├── de │ │ │ └── privoxy.po │ │ ├── el │ │ │ └── privoxy.po │ │ ├── es │ │ │ └── privoxy.po │ │ ├── fi │ │ │ └── privoxy.po │ │ ├── fr │ │ │ └── privoxy.po │ │ ├── ga │ │ │ └── privoxy.po │ │ ├── he │ │ │ └── privoxy.po │ │ ├── hi │ │ │ └── privoxy.po │ │ ├── hu │ │ │ └── privoxy.po │ │ ├── it │ │ │ └── privoxy.po │ │ ├── ja │ │ │ └── privoxy.po │ │ ├── ko │ │ │ └── privoxy.po │ │ ├── lt │ │ │ └── privoxy.po │ │ ├── mr │ │ │ └── privoxy.po │ │ ├── ms │ │ │ └── privoxy.po │ │ ├── nb_NO │ │ │ └── privoxy.po │ │ ├── nl │ │ │ └── privoxy.po │ │ ├── pl │ │ │ └── privoxy.po │ │ ├── pt │ │ │ └── privoxy.po │ │ ├── pt_BR │ │ │ └── privoxy.po │ │ ├── ro │ │ │ └── privoxy.po │ │ ├── ru │ │ │ └── privoxy.po │ │ ├── sk │ │ │ └── privoxy.po │ │ ├── sv │ │ │ └── privoxy.po │ │ ├── templates │ │ │ └── privoxy.pot │ │ ├── tr │ │ │ └── privoxy.po │ │ ├── uk │ │ │ └── privoxy.po │ │ ├── vi │ │ │ └── privoxy.po │ │ ├── zh_Hans │ │ │ └── privoxy.po │ │ └── zh_Hant │ │ │ └── privoxy.po │ └── root │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-privoxy.json ├── luci-app-qos │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── qos │ │ │ └── qos.js │ ├── po │ │ ├── ar │ │ │ └── qos.po │ │ ├── bg │ │ │ └── qos.po │ │ ├── bn_BD │ │ │ └── qos.po │ │ ├── ca │ │ │ └── qos.po │ │ ├── cs │ │ │ └── qos.po │ │ ├── da │ │ │ └── qos.po │ │ ├── de │ │ │ └── qos.po │ │ ├── el │ │ │ └── qos.po │ │ ├── es │ │ │ └── qos.po │ │ ├── fi │ │ │ └── qos.po │ │ ├── fr │ │ │ └── qos.po │ │ ├── ga │ │ │ └── qos.po │ │ ├── he │ │ │ └── qos.po │ │ ├── hi │ │ │ └── qos.po │ │ ├── hu │ │ │ └── qos.po │ │ ├── it │ │ │ └── qos.po │ │ ├── ja │ │ │ └── qos.po │ │ ├── ko │ │ │ └── qos.po │ │ ├── lt │ │ │ └── qos.po │ │ ├── mr │ │ │ └── qos.po │ │ ├── ms │ │ │ └── qos.po │ │ ├── nb_NO │ │ │ └── qos.po │ │ ├── nl │ │ │ └── qos.po │ │ ├── pl │ │ │ └── qos.po │ │ ├── pt │ │ │ └── qos.po │ │ ├── pt_BR │ │ │ └── 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 │ │ ├── yua │ │ │ └── qos.po │ │ ├── zh_Hans │ │ │ └── qos.po │ │ └── zh_Hant │ │ │ └── qos.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-qos.json │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-qos.json │ │ └── ucitrack │ │ └── luci-app-qos.json ├── luci-app-radicale │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── radicale.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── radicale.lua │ │ └── view │ │ │ └── radicale │ │ │ ├── btn_startstop.htm │ │ │ └── tabmap_nsections.htm │ ├── po │ │ ├── ar │ │ │ └── radicale.po │ │ ├── bg │ │ │ └── radicale.po │ │ ├── bn_BD │ │ │ └── radicale.po │ │ ├── ca │ │ │ └── radicale.po │ │ ├── cs │ │ │ └── radicale.po │ │ ├── da │ │ │ └── radicale.po │ │ ├── de │ │ │ └── radicale.po │ │ ├── el │ │ │ └── radicale.po │ │ ├── es │ │ │ └── radicale.po │ │ ├── fi │ │ │ └── radicale.po │ │ ├── fr │ │ │ └── radicale.po │ │ ├── ga │ │ │ └── radicale.po │ │ ├── he │ │ │ └── radicale.po │ │ ├── hi │ │ │ └── radicale.po │ │ ├── hu │ │ │ └── radicale.po │ │ ├── it │ │ │ └── radicale.po │ │ ├── ja │ │ │ └── radicale.po │ │ ├── ko │ │ │ └── radicale.po │ │ ├── lt │ │ │ └── radicale.po │ │ ├── mr │ │ │ └── radicale.po │ │ ├── ms │ │ │ └── radicale.po │ │ ├── nb_NO │ │ │ └── radicale.po │ │ ├── nl │ │ │ └── radicale.po │ │ ├── pl │ │ │ └── radicale.po │ │ ├── pt │ │ │ └── radicale.po │ │ ├── pt_BR │ │ │ └── radicale.po │ │ ├── ro │ │ │ └── radicale.po │ │ ├── ru │ │ │ └── radicale.po │ │ ├── sk │ │ │ └── radicale.po │ │ ├── sv │ │ │ └── radicale.po │ │ ├── templates │ │ │ └── radicale.pot │ │ ├── tr │ │ │ └── radicale.po │ │ ├── uk │ │ │ └── radicale.po │ │ ├── vi │ │ │ └── radicale.po │ │ ├── zh_Hans │ │ │ └── radicale.po │ │ └── zh_Hant │ │ │ └── radicale.po │ └── root │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-radicale.json ├── luci-app-radicale2 │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── radicale2.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── radicale2 │ │ │ │ ├── auth.lua │ │ │ │ ├── logging.lua │ │ │ │ ├── server.lua │ │ │ │ └── storage.lua │ │ └── view │ │ │ └── cbi │ │ │ └── raduigo.htm │ ├── po │ │ ├── ar │ │ │ └── radicale2.po │ │ ├── bg │ │ │ └── radicale2.po │ │ ├── bn_BD │ │ │ └── radicale2.po │ │ ├── ca │ │ │ └── radicale2.po │ │ ├── cs │ │ │ └── radicale2.po │ │ ├── da │ │ │ └── radicale2.po │ │ ├── de │ │ │ └── radicale2.po │ │ ├── el │ │ │ └── radicale2.po │ │ ├── es │ │ │ └── radicale2.po │ │ ├── fi │ │ │ └── radicale2.po │ │ ├── fr │ │ │ └── radicale2.po │ │ ├── ga │ │ │ └── radicale2.po │ │ ├── he │ │ │ └── radicale2.po │ │ ├── hi │ │ │ └── radicale2.po │ │ ├── hu │ │ │ └── radicale2.po │ │ ├── it │ │ │ └── radicale2.po │ │ ├── ja │ │ │ └── radicale2.po │ │ ├── ko │ │ │ └── radicale2.po │ │ ├── lt │ │ │ └── radicale2.po │ │ ├── mr │ │ │ └── radicale2.po │ │ ├── ms │ │ │ └── radicale2.po │ │ ├── nb_NO │ │ │ └── radicale2.po │ │ ├── nl │ │ │ └── radicale2.po │ │ ├── pl │ │ │ └── radicale2.po │ │ ├── pt │ │ │ └── radicale2.po │ │ ├── pt_BR │ │ │ └── radicale2.po │ │ ├── ro │ │ │ └── radicale2.po │ │ ├── ru │ │ │ └── radicale2.po │ │ ├── sk │ │ │ └── radicale2.po │ │ ├── sv │ │ │ └── radicale2.po │ │ ├── templates │ │ │ └── radicale2.pot │ │ ├── tr │ │ │ └── radicale2.po │ │ ├── uk │ │ │ └── radicale2.po │ │ ├── vi │ │ │ └── radicale2.po │ │ ├── zh_Hans │ │ │ └── radicale2.po │ │ └── zh_Hant │ │ │ └── radicale2.po │ └── root │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-radicale2.json ├── luci-app-rp-pppoe-server │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── pppoe │ │ │ ├── rp-pppoe-relay.js │ │ │ └── rp-pppoe-server.js │ ├── po │ │ ├── ar │ │ │ └── rp-pppoe-server.po │ │ ├── bg │ │ │ └── rp-pppoe-server.po │ │ ├── bn_BD │ │ │ └── rp-pppoe-server.po │ │ ├── ca │ │ │ └── rp-pppoe-server.po │ │ ├── cs │ │ │ └── rp-pppoe-server.po │ │ ├── da │ │ │ └── rp-pppoe-server.po │ │ ├── de │ │ │ └── rp-pppoe-server.po │ │ ├── el │ │ │ └── rp-pppoe-server.po │ │ ├── es │ │ │ └── rp-pppoe-server.po │ │ ├── fi │ │ │ └── rp-pppoe-server.po │ │ ├── fr │ │ │ └── rp-pppoe-server.po │ │ ├── ga │ │ │ └── rp-pppoe-server.po │ │ ├── he │ │ │ └── rp-pppoe-server.po │ │ ├── hi │ │ │ └── rp-pppoe-server.po │ │ ├── hu │ │ │ └── rp-pppoe-server.po │ │ ├── it │ │ │ └── rp-pppoe-server.po │ │ ├── ja │ │ │ └── rp-pppoe-server.po │ │ ├── ko │ │ │ └── rp-pppoe-server.po │ │ ├── lt │ │ │ └── rp-pppoe-server.po │ │ ├── mr │ │ │ └── rp-pppoe-server.po │ │ ├── ms │ │ │ └── rp-pppoe-server.po │ │ ├── nb_NO │ │ │ └── rp-pppoe-server.po │ │ ├── nl │ │ │ └── rp-pppoe-server.po │ │ ├── pl │ │ │ └── rp-pppoe-server.po │ │ ├── pt │ │ │ └── rp-pppoe-server.po │ │ ├── pt_BR │ │ │ └── rp-pppoe-server.po │ │ ├── ro │ │ │ └── rp-pppoe-server.po │ │ ├── ru │ │ │ └── rp-pppoe-server.po │ │ ├── sk │ │ │ └── rp-pppoe-server.po │ │ ├── sv │ │ │ └── rp-pppoe-server.po │ │ ├── templates │ │ │ └── rp-pppoe-server.pot │ │ ├── tr │ │ │ └── rp-pppoe-server.po │ │ ├── uk │ │ │ └── rp-pppoe-server.po │ │ ├── vi │ │ │ └── rp-pppoe-server.po │ │ ├── yua │ │ │ └── rp-pppoe-server.po │ │ ├── zh_Hans │ │ │ └── rp-pppoe-server.po │ │ └── zh_Hant │ │ │ └── rp-pppoe-server.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-rp-pppoe-server.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-rp-pppoe-server.json ├── luci-app-samba4 │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── samba4.js │ ├── po │ │ ├── ar │ │ │ └── samba4.po │ │ ├── bg │ │ │ └── samba4.po │ │ ├── bn_BD │ │ │ └── samba4.po │ │ ├── bs │ │ │ └── samba4.po │ │ ├── ca │ │ │ └── samba4.po │ │ ├── cs │ │ │ └── samba4.po │ │ ├── da │ │ │ └── samba4.po │ │ ├── de │ │ │ └── samba4.po │ │ ├── el │ │ │ └── samba4.po │ │ ├── es │ │ │ └── samba4.po │ │ ├── fa │ │ │ └── samba4.po │ │ ├── fi │ │ │ └── samba4.po │ │ ├── fr │ │ │ └── samba4.po │ │ ├── ga │ │ │ └── samba4.po │ │ ├── he │ │ │ └── samba4.po │ │ ├── hi │ │ │ └── samba4.po │ │ ├── hu │ │ │ └── samba4.po │ │ ├── it │ │ │ └── samba4.po │ │ ├── ja │ │ │ └── samba4.po │ │ ├── ko │ │ │ └── samba4.po │ │ ├── lt │ │ │ └── samba4.po │ │ ├── mr │ │ │ └── samba4.po │ │ ├── ms │ │ │ └── samba4.po │ │ ├── nb_NO │ │ │ └── samba4.po │ │ ├── nl │ │ │ └── samba4.po │ │ ├── pl │ │ │ └── samba4.po │ │ ├── pt │ │ │ └── samba4.po │ │ ├── pt_BR │ │ │ └── samba4.po │ │ ├── ro │ │ │ └── samba4.po │ │ ├── ru │ │ │ └── samba4.po │ │ ├── sk │ │ │ └── samba4.po │ │ ├── sr │ │ │ └── samba4.po │ │ ├── sv │ │ │ └── samba4.po │ │ ├── templates │ │ │ └── samba4.pot │ │ ├── tr │ │ │ └── samba4.po │ │ ├── uk │ │ │ └── samba4.po │ │ ├── vi │ │ │ └── samba4.po │ │ ├── yua │ │ │ └── samba4.po │ │ ├── zh_Hans │ │ │ └── samba4.po │ │ └── zh_Hant │ │ │ └── samba4.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-samba4.json │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-samba4.json │ │ └── ucitrack │ │ └── luci-app-samba4.json ├── luci-app-ser2net │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── ser2net │ │ │ ├── leds.js │ │ │ ├── proxies.js │ │ │ └── settings.js │ ├── po │ │ ├── ar │ │ │ └── ser2net.po │ │ ├── bg │ │ │ └── ser2net.po │ │ ├── bn_BD │ │ │ └── ser2net.po │ │ ├── ca │ │ │ └── ser2net.po │ │ ├── cs │ │ │ └── ser2net.po │ │ ├── da │ │ │ └── ser2net.po │ │ ├── de │ │ │ └── ser2net.po │ │ ├── el │ │ │ └── ser2net.po │ │ ├── es │ │ │ └── ser2net.po │ │ ├── fi │ │ │ └── ser2net.po │ │ ├── fr │ │ │ └── ser2net.po │ │ ├── ga │ │ │ └── ser2net.po │ │ ├── he │ │ │ └── ser2net.po │ │ ├── hi │ │ │ └── ser2net.po │ │ ├── hu │ │ │ └── ser2net.po │ │ ├── id │ │ │ └── ser2net.po │ │ ├── it │ │ │ └── ser2net.po │ │ ├── ja │ │ │ └── ser2net.po │ │ ├── ko │ │ │ └── ser2net.po │ │ ├── lt │ │ │ └── ser2net.po │ │ ├── mr │ │ │ └── ser2net.po │ │ ├── ms │ │ │ └── ser2net.po │ │ ├── nb_NO │ │ │ └── ser2net.po │ │ ├── nl │ │ │ └── ser2net.po │ │ ├── pl │ │ │ └── ser2net.po │ │ ├── pt │ │ │ └── ser2net.po │ │ ├── pt_BR │ │ │ └── ser2net.po │ │ ├── ro │ │ │ └── ser2net.po │ │ ├── ru │ │ │ └── ser2net.po │ │ ├── sk │ │ │ └── ser2net.po │ │ ├── sv │ │ │ └── ser2net.po │ │ ├── templates │ │ │ └── ser2net.pot │ │ ├── tr │ │ │ └── ser2net.po │ │ ├── uk │ │ │ └── ser2net.po │ │ ├── vi │ │ │ └── ser2net.po │ │ ├── zh_Hans │ │ │ └── ser2net.po │ │ └── zh_Hant │ │ │ └── ser2net.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-ser2net.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-ser2net.json ├── luci-app-shadowsocks-libev │ └── po │ │ └── lt │ │ └── shadowsocks-libev.po ├── luci-app-siitwizard │ ├── Makefile │ ├── luasrc │ │ └── model │ │ │ └── cbi │ │ │ └── siitwizard.lua │ └── root │ │ ├── etc │ │ └── config │ │ │ └── siit │ │ └── usr │ │ └── share │ │ └── luci │ │ └── menu.d │ │ └── luci-app-siitwizard.json ├── luci-app-smartdns │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── smartdns │ │ │ └── smartdns.js │ ├── po │ │ ├── ar │ │ │ └── smartdns.po │ │ ├── bg │ │ │ └── smartdns.po │ │ ├── bn_BD │ │ │ └── smartdns.po │ │ ├── ca │ │ │ └── smartdns.po │ │ ├── cs │ │ │ └── smartdns.po │ │ ├── da │ │ │ └── smartdns.po │ │ ├── de │ │ │ └── smartdns.po │ │ ├── el │ │ │ └── smartdns.po │ │ ├── es │ │ │ └── smartdns.po │ │ ├── fi │ │ │ └── smartdns.po │ │ ├── fr │ │ │ └── smartdns.po │ │ ├── ga │ │ │ └── smartdns.po │ │ ├── he │ │ │ └── smartdns.po │ │ ├── hi │ │ │ └── smartdns.po │ │ ├── hu │ │ │ └── smartdns.po │ │ ├── it │ │ │ └── smartdns.po │ │ ├── ja │ │ │ └── smartdns.po │ │ ├── ko │ │ │ └── smartdns.po │ │ ├── lt │ │ │ └── smartdns.po │ │ ├── mr │ │ │ └── smartdns.po │ │ ├── ms │ │ │ └── smartdns.po │ │ ├── nb_NO │ │ │ └── smartdns.po │ │ ├── nl │ │ │ └── smartdns.po │ │ ├── pl │ │ │ └── smartdns.po │ │ ├── pt │ │ │ └── smartdns.po │ │ ├── pt_BR │ │ │ └── smartdns.po │ │ ├── ro │ │ │ └── smartdns.po │ │ ├── ru │ │ │ └── smartdns.po │ │ ├── sk │ │ │ └── smartdns.po │ │ ├── sv │ │ │ └── smartdns.po │ │ ├── templates │ │ │ └── smartdns.pot │ │ ├── tr │ │ │ └── smartdns.po │ │ ├── uk │ │ │ └── smartdns.po │ │ ├── vi │ │ │ └── smartdns.po │ │ ├── zh_Hans │ │ │ └── smartdns.po │ │ └── zh_Hant │ │ │ └── smartdns.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-smartdns.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-smartdns.json ├── luci-app-snmpd │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── snmpd │ │ │ └── snmpd.js │ ├── po │ │ ├── ar │ │ │ └── snmpd.po │ │ ├── bg │ │ │ └── snmpd.po │ │ ├── bn_BD │ │ │ └── snmpd.po │ │ ├── ca │ │ │ └── snmpd.po │ │ ├── cs │ │ │ └── snmpd.po │ │ ├── da │ │ │ └── snmpd.po │ │ ├── de │ │ │ └── snmpd.po │ │ ├── el │ │ │ └── snmpd.po │ │ ├── es │ │ │ └── snmpd.po │ │ ├── fi │ │ │ └── snmpd.po │ │ ├── fr │ │ │ └── snmpd.po │ │ ├── ga │ │ │ └── snmpd.po │ │ ├── he │ │ │ └── snmpd.po │ │ ├── hi │ │ │ └── snmpd.po │ │ ├── hu │ │ │ └── snmpd.po │ │ ├── it │ │ │ └── snmpd.po │ │ ├── ja │ │ │ └── snmpd.po │ │ ├── ko │ │ │ └── snmpd.po │ │ ├── lt │ │ │ └── snmpd.po │ │ ├── mr │ │ │ └── snmpd.po │ │ ├── ms │ │ │ └── snmpd.po │ │ ├── nb_NO │ │ │ └── snmpd.po │ │ ├── nl │ │ │ └── snmpd.po │ │ ├── pl │ │ │ └── snmpd.po │ │ ├── pt │ │ │ └── snmpd.po │ │ ├── pt_BR │ │ │ └── snmpd.po │ │ ├── ro │ │ │ └── snmpd.po │ │ ├── ru │ │ │ └── snmpd.po │ │ ├── sk │ │ │ └── snmpd.po │ │ ├── sv │ │ │ └── snmpd.po │ │ ├── templates │ │ │ └── snmpd.pot │ │ ├── tr │ │ │ └── snmpd.po │ │ ├── uk │ │ │ └── snmpd.po │ │ ├── vi │ │ │ └── snmpd.po │ │ ├── yua │ │ │ └── snmpd.po │ │ ├── zh_Hans │ │ │ └── snmpd.po │ │ └── zh_Hant │ │ │ └── snmpd.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-snmpd.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-snmpd.json ├── luci-app-softether │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── softether-status.js │ └── root │ │ └── usr │ │ ├── libexec │ │ └── vpncmd-call │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-softether.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-softether.json ├── 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 │ │ ├── ar │ │ │ └── splash.po │ │ ├── bg │ │ │ └── splash.po │ │ ├── bn_BD │ │ │ └── splash.po │ │ ├── ca │ │ │ └── splash.po │ │ ├── cs │ │ │ └── splash.po │ │ ├── da │ │ │ └── splash.po │ │ ├── de │ │ │ └── splash.po │ │ ├── el │ │ │ └── splash.po │ │ ├── es │ │ │ └── splash.po │ │ ├── fi │ │ │ └── splash.po │ │ ├── fr │ │ │ └── splash.po │ │ ├── ga │ │ │ └── splash.po │ │ ├── he │ │ │ └── splash.po │ │ ├── hi │ │ │ └── splash.po │ │ ├── hu │ │ │ └── splash.po │ │ ├── id │ │ │ └── splash.po │ │ ├── it │ │ │ └── splash.po │ │ ├── ja │ │ │ └── splash.po │ │ ├── ko │ │ │ └── splash.po │ │ ├── lt │ │ │ └── splash.po │ │ ├── mr │ │ │ └── splash.po │ │ ├── ms │ │ │ └── splash.po │ │ ├── nb_NO │ │ │ └── splash.po │ │ ├── nl │ │ │ └── splash.po │ │ ├── pl │ │ │ └── splash.po │ │ ├── pt │ │ │ └── splash.po │ │ ├── pt_BR │ │ │ └── splash.po │ │ ├── ro │ │ │ └── splash.po │ │ ├── ru │ │ │ └── splash.po │ │ ├── sk │ │ │ └── splash.po │ │ ├── sr │ │ │ └── splash.po │ │ ├── sv │ │ │ └── splash.po │ │ ├── templates │ │ │ └── splash.pot │ │ ├── tr │ │ │ └── splash.po │ │ ├── uk │ │ │ └── splash.po │ │ ├── vi │ │ │ └── splash.po │ │ ├── yua │ │ │ └── splash.po │ │ ├── zh_Hans │ │ │ └── splash.po │ │ └── zh_Hant │ │ │ └── splash.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ ├── luci_splash │ │ │ └── luci_splash_leases │ │ ├── hotplug.d │ │ │ └── iface │ │ │ │ └── 25-splash │ │ └── init.d │ │ │ └── luci_splash │ │ └── usr │ │ ├── sbin │ │ └── luci-splash │ │ └── share │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-splash.json │ │ └── ucitrack │ │ └── luci-app-splash.json ├── luci-app-sqm │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── network │ │ │ └── sqm.js │ ├── po │ │ ├── ar │ │ │ └── sqm.po │ │ ├── bg │ │ │ └── sqm.po │ │ ├── bn_BD │ │ │ └── sqm.po │ │ ├── ca │ │ │ └── sqm.po │ │ ├── cs │ │ │ └── sqm.po │ │ ├── da │ │ │ └── sqm.po │ │ ├── de │ │ │ └── sqm.po │ │ ├── el │ │ │ └── sqm.po │ │ ├── es │ │ │ └── sqm.po │ │ ├── fi │ │ │ └── sqm.po │ │ ├── fr │ │ │ └── sqm.po │ │ ├── ga │ │ │ └── sqm.po │ │ ├── he │ │ │ └── sqm.po │ │ ├── hi │ │ │ └── sqm.po │ │ ├── hu │ │ │ └── sqm.po │ │ ├── it │ │ │ └── sqm.po │ │ ├── ja │ │ │ └── sqm.po │ │ ├── ko │ │ │ └── sqm.po │ │ ├── lt │ │ │ └── sqm.po │ │ ├── mr │ │ │ └── sqm.po │ │ ├── ms │ │ │ └── sqm.po │ │ ├── nb_NO │ │ │ └── sqm.po │ │ ├── nl │ │ │ └── sqm.po │ │ ├── pl │ │ │ └── sqm.po │ │ ├── pt │ │ │ └── sqm.po │ │ ├── pt_BR │ │ │ └── sqm.po │ │ ├── ro │ │ │ └── sqm.po │ │ ├── ru │ │ │ └── sqm.po │ │ ├── sk │ │ │ └── sqm.po │ │ ├── sv │ │ │ └── sqm.po │ │ ├── templates │ │ │ └── sqm.pot │ │ ├── tr │ │ │ └── sqm.po │ │ ├── uk │ │ │ └── sqm.po │ │ ├── vi │ │ │ └── sqm.po │ │ ├── zh_Hans │ │ │ └── sqm.po │ │ └── zh_Hant │ │ │ └── sqm.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-sqm.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-sqm.json ├── luci-app-squid │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── squid.js │ ├── po │ │ ├── ar │ │ │ └── squid.po │ │ ├── bg │ │ │ └── squid.po │ │ ├── bn_BD │ │ │ └── squid.po │ │ ├── ca │ │ │ └── squid.po │ │ ├── cs │ │ │ └── squid.po │ │ ├── da │ │ │ └── squid.po │ │ ├── de │ │ │ └── squid.po │ │ ├── el │ │ │ └── squid.po │ │ ├── es │ │ │ └── squid.po │ │ ├── fi │ │ │ └── squid.po │ │ ├── fr │ │ │ └── squid.po │ │ ├── ga │ │ │ └── squid.po │ │ ├── he │ │ │ └── squid.po │ │ ├── hi │ │ │ └── squid.po │ │ ├── hu │ │ │ └── squid.po │ │ ├── it │ │ │ └── squid.po │ │ ├── ja │ │ │ └── squid.po │ │ ├── ko │ │ │ └── squid.po │ │ ├── lt │ │ │ └── squid.po │ │ ├── mr │ │ │ └── squid.po │ │ ├── ms │ │ │ └── squid.po │ │ ├── nb_NO │ │ │ └── squid.po │ │ ├── nl │ │ │ └── squid.po │ │ ├── pl │ │ │ └── squid.po │ │ ├── pt │ │ │ └── squid.po │ │ ├── pt_BR │ │ │ └── squid.po │ │ ├── ro │ │ │ └── squid.po │ │ ├── ru │ │ │ └── squid.po │ │ ├── sk │ │ │ └── squid.po │ │ ├── sv │ │ │ └── squid.po │ │ ├── templates │ │ │ └── squid.pot │ │ ├── tr │ │ │ └── squid.po │ │ ├── uk │ │ │ └── squid.po │ │ ├── vi │ │ │ └── squid.po │ │ ├── yua │ │ │ └── squid.po │ │ ├── zh_Hans │ │ │ └── squid.po │ │ └── zh_Hant │ │ │ └── squid.po │ └── root │ │ └── usr │ │ ├── libexec │ │ └── rpcd │ │ │ └── luci.squid │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-squid.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-squid.json ├── luci-app-sshtunnel │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── sshtunnel │ │ │ ├── ssh_hosts.js │ │ │ ├── ssh_keys.js │ │ │ ├── ssh_servers.js │ │ │ └── ssh_tunnels.js │ ├── po │ │ ├── ar │ │ │ └── sshtunnel.po │ │ ├── bg │ │ │ └── sshtunnel.po │ │ ├── bn_BD │ │ │ └── sshtunnel.po │ │ ├── ca │ │ │ └── sshtunnel.po │ │ ├── cs │ │ │ └── sshtunnel.po │ │ ├── da │ │ │ └── sshtunnel.po │ │ ├── de │ │ │ └── sshtunnel.po │ │ ├── el │ │ │ └── sshtunnel.po │ │ ├── es │ │ │ └── sshtunnel.po │ │ ├── fi │ │ │ └── sshtunnel.po │ │ ├── fr │ │ │ └── sshtunnel.po │ │ ├── ga │ │ │ └── sshtunnel.po │ │ ├── he │ │ │ └── sshtunnel.po │ │ ├── hi │ │ │ └── sshtunnel.po │ │ ├── hu │ │ │ └── sshtunnel.po │ │ ├── it │ │ │ └── sshtunnel.po │ │ ├── ja │ │ │ └── sshtunnel.po │ │ ├── ko │ │ │ └── sshtunnel.po │ │ ├── lt │ │ │ └── sshtunnel.po │ │ ├── mr │ │ │ └── sshtunnel.po │ │ ├── ms │ │ │ └── sshtunnel.po │ │ ├── nb_NO │ │ │ └── sshtunnel.po │ │ ├── nl │ │ │ └── sshtunnel.po │ │ ├── pl │ │ │ └── sshtunnel.po │ │ ├── pt │ │ │ └── sshtunnel.po │ │ ├── pt_BR │ │ │ └── sshtunnel.po │ │ ├── ro │ │ │ └── sshtunnel.po │ │ ├── ru │ │ │ └── sshtunnel.po │ │ ├── sk │ │ │ └── sshtunnel.po │ │ ├── sv │ │ │ └── sshtunnel.po │ │ ├── templates │ │ │ └── sshtunnel.pot │ │ ├── tr │ │ │ └── sshtunnel.po │ │ ├── uk │ │ │ └── sshtunnel.po │ │ ├── vi │ │ │ └── sshtunnel.po │ │ ├── zh_Hans │ │ │ └── sshtunnel.po │ │ └── zh_Hant │ │ │ └── sshtunnel.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-sshtunnel.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-sshtunnel.json ├── luci-app-statistics │ ├── Makefile │ ├── README.md │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── statistics │ │ │ ├── rrdtool.js │ │ │ └── rrdtool │ │ │ │ └── definitions │ │ │ │ ├── apcups.js │ │ │ │ ├── chrony.js │ │ │ │ ├── conntrack.js │ │ │ │ ├── contextswitch.js │ │ │ │ ├── cpu.js │ │ │ │ ├── cpufreq.js │ │ │ │ ├── curl.js │ │ │ │ ├── df.js │ │ │ │ ├── dhcpleases.js │ │ │ │ ├── disk.js │ │ │ │ ├── dns.js │ │ │ │ ├── dsl.js │ │ │ │ ├── entropy.js │ │ │ │ ├── interface.js │ │ │ │ ├── ip6tables.js │ │ │ │ ├── ipstatistics.js │ │ │ │ ├── iptables.js │ │ │ │ ├── irq.js │ │ │ │ ├── iwinfo.js │ │ │ │ ├── load.js │ │ │ │ ├── memory.js │ │ │ │ ├── netlink.js │ │ │ │ ├── nut.js │ │ │ │ ├── olsrd.js │ │ │ │ ├── openvpn.js │ │ │ │ ├── ping.js │ │ │ │ ├── processes.js │ │ │ │ ├── sensors.js │ │ │ │ ├── snmp6.js │ │ │ │ ├── splash_leases.js │ │ │ │ ├── sqm.js │ │ │ │ ├── sqmcake.js │ │ │ │ ├── tcpconns.js │ │ │ │ ├── thermal.js │ │ │ │ ├── uptime.js │ │ │ │ └── users.js │ │ │ └── view │ │ │ └── statistics │ │ │ ├── collectd.js │ │ │ ├── graphs.js │ │ │ └── plugins │ │ │ ├── apcups.js │ │ │ ├── chrony.js │ │ │ ├── conntrack.js │ │ │ ├── contextswitch.js │ │ │ ├── cpu.js │ │ │ ├── cpufreq.js │ │ │ ├── csv.js │ │ │ ├── curl.js │ │ │ ├── df.js │ │ │ ├── dhcpleases.js │ │ │ ├── disk.js │ │ │ ├── dns.js │ │ │ ├── email.js │ │ │ ├── entropy.js │ │ │ ├── exec.js │ │ │ ├── interface.js │ │ │ ├── ipstatistics.js │ │ │ ├── iptables.js │ │ │ ├── irq.js │ │ │ ├── iwinfo.js │ │ │ ├── load.js │ │ │ ├── memory.js │ │ │ ├── mqtt.js │ │ │ ├── netlink.js │ │ │ ├── network.js │ │ │ ├── nut.js │ │ │ ├── olsrd.js │ │ │ ├── openvpn.js │ │ │ ├── ping.js │ │ │ ├── processes.js │ │ │ ├── rrdtool.js │ │ │ ├── sensors.js │ │ │ ├── snmp6.js │ │ │ ├── splash_leases.js │ │ │ ├── syslog.js │ │ │ ├── tcpconns.js │ │ │ ├── thermal.js │ │ │ ├── unixsock.js │ │ │ ├── uptime.js │ │ │ └── users.js │ ├── po │ │ ├── ar │ │ │ └── statistics.po │ │ ├── bg │ │ │ └── statistics.po │ │ ├── bn │ │ │ └── statistics.po │ │ ├── bn_BD │ │ │ └── statistics.po │ │ ├── bs │ │ │ └── statistics.po │ │ ├── ca │ │ │ └── statistics.po │ │ ├── cs │ │ │ └── statistics.po │ │ ├── da │ │ │ └── statistics.po │ │ ├── de │ │ │ └── statistics.po │ │ ├── el │ │ │ └── statistics.po │ │ ├── es │ │ │ └── statistics.po │ │ ├── fa │ │ │ └── statistics.po │ │ ├── fi │ │ │ └── statistics.po │ │ ├── fr │ │ │ └── statistics.po │ │ ├── ga │ │ │ └── statistics.po │ │ ├── gl │ │ │ └── statistics.po │ │ ├── he │ │ │ └── statistics.po │ │ ├── hi │ │ │ └── statistics.po │ │ ├── hu │ │ │ └── statistics.po │ │ ├── id │ │ │ └── statistics.po │ │ ├── it │ │ │ └── statistics.po │ │ ├── ja │ │ │ └── statistics.po │ │ ├── ka │ │ │ └── statistics.po │ │ ├── ko │ │ │ └── statistics.po │ │ ├── lt │ │ │ └── statistics.po │ │ ├── mr │ │ │ └── statistics.po │ │ ├── ms │ │ │ └── statistics.po │ │ ├── nb_NO │ │ │ └── statistics.po │ │ ├── nl │ │ │ └── statistics.po │ │ ├── pl │ │ │ └── statistics.po │ │ ├── pt │ │ │ └── statistics.po │ │ ├── pt_BR │ │ │ └── statistics.po │ │ ├── ro │ │ │ └── statistics.po │ │ ├── ru │ │ │ └── statistics.po │ │ ├── sk │ │ │ └── statistics.po │ │ ├── sl │ │ │ └── statistics.po │ │ ├── sr │ │ │ └── statistics.po │ │ ├── sv │ │ │ └── statistics.po │ │ ├── templates │ │ │ └── statistics.pot │ │ ├── tr │ │ │ └── statistics.po │ │ ├── uk │ │ │ └── statistics.po │ │ ├── vi │ │ │ └── statistics.po │ │ ├── yua │ │ │ └── statistics.po │ │ ├── zh_Hans │ │ │ └── statistics.po │ │ └── zh_Hant │ │ │ └── statistics.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── luci_statistics │ │ ├── init.d │ │ │ └── luci_statistics │ │ ├── luci_statistics │ │ │ └── README.backups │ │ └── uci-defaults │ │ │ └── 40_luci-statistics │ │ ├── lib │ │ └── upgrade │ │ │ └── luci_statistics-add-conffiles.sh │ │ └── usr │ │ ├── libexec │ │ └── stat-genconfig │ │ └── share │ │ ├── luci │ │ ├── menu.d │ │ │ └── luci-app-statistics.json │ │ └── statistics │ │ │ └── plugins │ │ │ ├── apcups.json │ │ │ ├── chrony.json │ │ │ ├── conntrack.json │ │ │ ├── contextswitch.json │ │ │ ├── cpu.json │ │ │ ├── cpufreq.json │ │ │ ├── csv.json │ │ │ ├── curl.json │ │ │ ├── df.json │ │ │ ├── dhcpleases.json │ │ │ ├── disk.json │ │ │ ├── dns.json │ │ │ ├── email.json │ │ │ ├── entropy.json │ │ │ ├── exec.json │ │ │ ├── interface.json │ │ │ ├── ipstatistics.json │ │ │ ├── iptables.json │ │ │ ├── irq.json │ │ │ ├── iwinfo.json │ │ │ ├── load.json │ │ │ ├── memory.json │ │ │ ├── mqtt.json │ │ │ ├── netlink.json │ │ │ ├── network.json │ │ │ ├── nut.json │ │ │ ├── olsrd.json │ │ │ ├── openvpn.json │ │ │ ├── ping.json │ │ │ ├── processes.json │ │ │ ├── rrdtool.json │ │ │ ├── sensors.json │ │ │ ├── snmp6.json │ │ │ ├── splash_leases.json │ │ │ ├── syslog.json │ │ │ ├── tcpconns.json │ │ │ ├── thermal.json │ │ │ ├── unixsock.json │ │ │ └── uptime.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-statistics.json ├── luci-app-strongswan-swanctl │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── strongswan_algorithms.js │ │ │ └── view │ │ │ └── strongswan-swanctl │ │ │ ├── status.js │ │ │ └── swanctl.js │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-strongswan-swanctl.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-strongswan-swanctl.json ├── luci-app-tinyproxy │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── tinyproxy │ │ │ └── tinyproxy.js │ ├── po │ │ ├── ar │ │ │ └── tinyproxy.po │ │ ├── bg │ │ │ └── tinyproxy.po │ │ ├── bn_BD │ │ │ └── tinyproxy.po │ │ ├── ca │ │ │ └── tinyproxy.po │ │ ├── cs │ │ │ └── tinyproxy.po │ │ ├── da │ │ │ └── tinyproxy.po │ │ ├── de │ │ │ └── tinyproxy.po │ │ ├── el │ │ │ └── tinyproxy.po │ │ ├── es │ │ │ └── tinyproxy.po │ │ ├── fi │ │ │ └── tinyproxy.po │ │ ├── fr │ │ │ └── tinyproxy.po │ │ ├── ga │ │ │ └── tinyproxy.po │ │ ├── he │ │ │ └── tinyproxy.po │ │ ├── hi │ │ │ └── tinyproxy.po │ │ ├── hu │ │ │ └── tinyproxy.po │ │ ├── it │ │ │ └── tinyproxy.po │ │ ├── ja │ │ │ └── tinyproxy.po │ │ ├── ko │ │ │ └── tinyproxy.po │ │ ├── lt │ │ │ └── tinyproxy.po │ │ ├── mr │ │ │ └── tinyproxy.po │ │ ├── ms │ │ │ └── tinyproxy.po │ │ ├── nb_NO │ │ │ └── tinyproxy.po │ │ ├── nl │ │ │ └── tinyproxy.po │ │ ├── pl │ │ │ └── tinyproxy.po │ │ ├── pt │ │ │ └── tinyproxy.po │ │ ├── pt_BR │ │ │ └── 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_Hans │ │ │ └── tinyproxy.po │ │ └── zh_Hant │ │ │ └── tinyproxy.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-tinyproxy.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-tinyproxy.json ├── luci-app-tor │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── tor │ │ │ ├── tor-hs.js │ │ │ └── tor.js │ ├── po │ │ ├── ar │ │ │ └── tor.po │ │ ├── bg │ │ │ └── tor.po │ │ ├── bn_BD │ │ │ └── tor.po │ │ ├── ca │ │ │ └── tor.po │ │ ├── cs │ │ │ └── tor.po │ │ ├── da │ │ │ └── tor.po │ │ ├── de │ │ │ └── tor.po │ │ ├── el │ │ │ └── tor.po │ │ ├── es │ │ │ └── tor.po │ │ ├── fi │ │ │ └── tor.po │ │ ├── fr │ │ │ └── tor.po │ │ ├── ga │ │ │ └── tor.po │ │ ├── he │ │ │ └── tor.po │ │ ├── hi │ │ │ └── tor.po │ │ ├── hu │ │ │ └── tor.po │ │ ├── it │ │ │ └── tor.po │ │ ├── ja │ │ │ └── tor.po │ │ ├── ko │ │ │ └── tor.po │ │ ├── lt │ │ │ └── tor.po │ │ ├── mr │ │ │ └── tor.po │ │ ├── ms │ │ │ └── tor.po │ │ ├── nb_NO │ │ │ └── tor.po │ │ ├── nl │ │ │ └── tor.po │ │ ├── pl │ │ │ └── tor.po │ │ ├── pt │ │ │ └── tor.po │ │ ├── pt_BR │ │ │ └── tor.po │ │ ├── ro │ │ │ └── tor.po │ │ ├── ru │ │ │ └── tor.po │ │ ├── sk │ │ │ └── tor.po │ │ ├── sv │ │ │ └── tor.po │ │ ├── templates │ │ │ └── tor.pot │ │ ├── tr │ │ │ └── tor.po │ │ ├── uk │ │ │ └── tor.po │ │ ├── vi │ │ │ └── tor.po │ │ ├── yua │ │ │ └── tor.po │ │ ├── zh_Hans │ │ │ └── tor.po │ │ └── zh_Hant │ │ │ └── tor.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-tor.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-tor.json ├── luci-app-transmission │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── transmission.js │ ├── po │ │ ├── ar │ │ │ └── transmission.po │ │ ├── bg │ │ │ └── transmission.po │ │ ├── bn_BD │ │ │ └── transmission.po │ │ ├── ca │ │ │ └── transmission.po │ │ ├── cs │ │ │ └── transmission.po │ │ ├── da │ │ │ └── transmission.po │ │ ├── de │ │ │ └── transmission.po │ │ ├── el │ │ │ └── transmission.po │ │ ├── es │ │ │ └── transmission.po │ │ ├── fi │ │ │ └── transmission.po │ │ ├── fr │ │ │ └── transmission.po │ │ ├── ga │ │ │ └── transmission.po │ │ ├── he │ │ │ └── transmission.po │ │ ├── hi │ │ │ └── transmission.po │ │ ├── hu │ │ │ └── transmission.po │ │ ├── it │ │ │ └── transmission.po │ │ ├── ja │ │ │ └── transmission.po │ │ ├── ko │ │ │ └── transmission.po │ │ ├── lt │ │ │ └── transmission.po │ │ ├── mr │ │ │ └── transmission.po │ │ ├── ms │ │ │ └── transmission.po │ │ ├── nb_NO │ │ │ └── transmission.po │ │ ├── nl │ │ │ └── transmission.po │ │ ├── pl │ │ │ └── transmission.po │ │ ├── pt │ │ │ └── transmission.po │ │ ├── pt_BR │ │ │ └── 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 │ │ ├── yua │ │ │ └── transmission.po │ │ ├── zh_Hans │ │ │ └── transmission.po │ │ └── zh_Hant │ │ │ └── transmission.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-transmission.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-transmission.json ├── luci-app-travelmate │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── travelmate │ │ │ ├── logread.js │ │ │ ├── overview.js │ │ │ └── stations.js │ ├── po │ │ ├── ar │ │ │ └── travelmate.po │ │ ├── bg │ │ │ └── travelmate.po │ │ ├── bn_BD │ │ │ └── travelmate.po │ │ ├── ca │ │ │ └── travelmate.po │ │ ├── cs │ │ │ └── travelmate.po │ │ ├── da │ │ │ └── travelmate.po │ │ ├── de │ │ │ └── travelmate.po │ │ ├── el │ │ │ └── travelmate.po │ │ ├── es │ │ │ └── travelmate.po │ │ ├── fi │ │ │ └── travelmate.po │ │ ├── fr │ │ │ └── travelmate.po │ │ ├── ga │ │ │ └── travelmate.po │ │ ├── he │ │ │ └── travelmate.po │ │ ├── hi │ │ │ └── travelmate.po │ │ ├── hu │ │ │ └── travelmate.po │ │ ├── it │ │ │ └── travelmate.po │ │ ├── ja │ │ │ └── travelmate.po │ │ ├── ko │ │ │ └── travelmate.po │ │ ├── lt │ │ │ └── travelmate.po │ │ ├── mr │ │ │ └── travelmate.po │ │ ├── ms │ │ │ └── travelmate.po │ │ ├── nb_NO │ │ │ └── travelmate.po │ │ ├── nl │ │ │ └── travelmate.po │ │ ├── pl │ │ │ └── travelmate.po │ │ ├── pt │ │ │ └── travelmate.po │ │ ├── pt_BR │ │ │ └── travelmate.po │ │ ├── ro │ │ │ └── travelmate.po │ │ ├── ru │ │ │ └── travelmate.po │ │ ├── sk │ │ │ └── travelmate.po │ │ ├── sv │ │ │ └── travelmate.po │ │ ├── templates │ │ │ └── travelmate.pot │ │ ├── tr │ │ │ └── travelmate.po │ │ ├── uk │ │ │ └── travelmate.po │ │ ├── vi │ │ │ └── travelmate.po │ │ ├── zh_Hans │ │ │ └── travelmate.po │ │ └── zh_Hant │ │ │ └── travelmate.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-travelmate.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-travelmate.json ├── luci-app-ttyd │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── ttyd │ │ │ ├── config.js │ │ │ └── term.js │ ├── po │ │ ├── ar │ │ │ └── ttyd.po │ │ ├── bg │ │ │ └── ttyd.po │ │ ├── bn_BD │ │ │ └── ttyd.po │ │ ├── ca │ │ │ └── ttyd.po │ │ ├── cs │ │ │ └── ttyd.po │ │ ├── da │ │ │ └── ttyd.po │ │ ├── de │ │ │ └── ttyd.po │ │ ├── el │ │ │ └── ttyd.po │ │ ├── es │ │ │ └── ttyd.po │ │ ├── fi │ │ │ └── ttyd.po │ │ ├── fr │ │ │ └── ttyd.po │ │ ├── ga │ │ │ └── ttyd.po │ │ ├── he │ │ │ └── ttyd.po │ │ ├── hi │ │ │ └── ttyd.po │ │ ├── hu │ │ │ └── ttyd.po │ │ ├── it │ │ │ └── ttyd.po │ │ ├── ja │ │ │ └── ttyd.po │ │ ├── ko │ │ │ └── ttyd.po │ │ ├── lt │ │ │ └── ttyd.po │ │ ├── mr │ │ │ └── ttyd.po │ │ ├── ms │ │ │ └── ttyd.po │ │ ├── nb_NO │ │ │ └── ttyd.po │ │ ├── nl │ │ │ └── ttyd.po │ │ ├── pl │ │ │ └── ttyd.po │ │ ├── pt │ │ │ └── ttyd.po │ │ ├── pt_BR │ │ │ └── ttyd.po │ │ ├── ro │ │ │ └── ttyd.po │ │ ├── ru │ │ │ └── ttyd.po │ │ ├── sk │ │ │ └── ttyd.po │ │ ├── sv │ │ │ └── ttyd.po │ │ ├── templates │ │ │ └── ttyd.pot │ │ ├── tr │ │ │ └── ttyd.po │ │ ├── uk │ │ │ └── ttyd.po │ │ ├── vi │ │ │ └── ttyd.po │ │ ├── zh_Hans │ │ │ └── ttyd.po │ │ └── zh_Hant │ │ │ └── ttyd.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-ttyd.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-ttyd.json ├── luci-app-udpxy │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── udpxy.js │ ├── po │ │ ├── ar │ │ │ └── udpxy.po │ │ ├── bg │ │ │ └── udpxy.po │ │ ├── bn_BD │ │ │ └── udpxy.po │ │ ├── ca │ │ │ └── udpxy.po │ │ ├── cs │ │ │ └── udpxy.po │ │ ├── da │ │ │ └── udpxy.po │ │ ├── de │ │ │ └── udpxy.po │ │ ├── el │ │ │ └── udpxy.po │ │ ├── es │ │ │ └── udpxy.po │ │ ├── fi │ │ │ └── udpxy.po │ │ ├── fr │ │ │ └── udpxy.po │ │ ├── ga │ │ │ └── udpxy.po │ │ ├── gl │ │ │ └── udpxy.po │ │ ├── he │ │ │ └── udpxy.po │ │ ├── hi │ │ │ └── udpxy.po │ │ ├── hu │ │ │ └── udpxy.po │ │ ├── it │ │ │ └── udpxy.po │ │ ├── ja │ │ │ └── udpxy.po │ │ ├── ko │ │ │ └── udpxy.po │ │ ├── lt │ │ │ └── udpxy.po │ │ ├── mr │ │ │ └── udpxy.po │ │ ├── ms │ │ │ └── udpxy.po │ │ ├── nb_NO │ │ │ └── udpxy.po │ │ ├── nl │ │ │ └── udpxy.po │ │ ├── pl │ │ │ └── udpxy.po │ │ ├── pt │ │ │ └── udpxy.po │ │ ├── pt_BR │ │ │ └── udpxy.po │ │ ├── ro │ │ │ └── udpxy.po │ │ ├── ru │ │ │ └── udpxy.po │ │ ├── sk │ │ │ └── udpxy.po │ │ ├── sv │ │ │ └── udpxy.po │ │ ├── templates │ │ │ └── udpxy.pot │ │ ├── tr │ │ │ └── udpxy.po │ │ ├── uk │ │ │ └── udpxy.po │ │ ├── vi │ │ │ └── udpxy.po │ │ ├── yua │ │ │ └── udpxy.po │ │ ├── zh_Hans │ │ │ └── udpxy.po │ │ └── zh_Hant │ │ │ └── udpxy.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-udpxy.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-udpxy.json ├── luci-app-uhttpd │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── uhttpd │ │ │ └── uhttpd.js │ ├── po │ │ ├── ar │ │ │ └── uhttpd.po │ │ ├── bg │ │ │ └── uhttpd.po │ │ ├── bn_BD │ │ │ └── uhttpd.po │ │ ├── ca │ │ │ └── uhttpd.po │ │ ├── cs │ │ │ └── uhttpd.po │ │ ├── da │ │ │ └── uhttpd.po │ │ ├── de │ │ │ └── uhttpd.po │ │ ├── el │ │ │ └── uhttpd.po │ │ ├── es │ │ │ └── uhttpd.po │ │ ├── fi │ │ │ └── uhttpd.po │ │ ├── fr │ │ │ └── uhttpd.po │ │ ├── ga │ │ │ └── uhttpd.po │ │ ├── he │ │ │ └── uhttpd.po │ │ ├── hi │ │ │ └── uhttpd.po │ │ ├── hu │ │ │ └── uhttpd.po │ │ ├── id │ │ │ └── uhttpd.po │ │ ├── it │ │ │ └── uhttpd.po │ │ ├── ja │ │ │ └── uhttpd.po │ │ ├── ko │ │ │ └── uhttpd.po │ │ ├── lt │ │ │ └── uhttpd.po │ │ ├── mr │ │ │ └── uhttpd.po │ │ ├── ms │ │ │ └── uhttpd.po │ │ ├── nb_NO │ │ │ └── uhttpd.po │ │ ├── nl │ │ │ └── uhttpd.po │ │ ├── pl │ │ │ └── uhttpd.po │ │ ├── pt │ │ │ └── uhttpd.po │ │ ├── pt_BR │ │ │ └── uhttpd.po │ │ ├── ro │ │ │ └── uhttpd.po │ │ ├── ru │ │ │ └── uhttpd.po │ │ ├── sk │ │ │ └── uhttpd.po │ │ ├── sv │ │ │ └── uhttpd.po │ │ ├── templates │ │ │ └── uhttpd.pot │ │ ├── tr │ │ │ └── uhttpd.po │ │ ├── uk │ │ │ └── uhttpd.po │ │ ├── vi │ │ │ └── uhttpd.po │ │ ├── yua │ │ │ └── uhttpd.po │ │ ├── zh_Hans │ │ │ └── uhttpd.po │ │ └── zh_Hant │ │ │ └── uhttpd.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-uhttpd.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-uhttpd.json ├── luci-app-unbound │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── unbound.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── unbound │ │ │ │ ├── configure.lua │ │ │ │ ├── extended.lua │ │ │ │ ├── manual.lua │ │ │ │ ├── server.lua │ │ │ │ ├── uciedit.lua │ │ │ │ ├── zone-details.lua │ │ │ │ └── zones.lua │ │ └── view │ │ │ └── unbound │ │ │ ├── css-editing.htm │ │ │ ├── show-empty.htm │ │ │ └── show-textbox.htm │ ├── po │ │ ├── ar │ │ │ └── unbound.po │ │ ├── bg │ │ │ └── unbound.po │ │ ├── bn_BD │ │ │ └── unbound.po │ │ ├── ca │ │ │ └── unbound.po │ │ ├── cs │ │ │ └── unbound.po │ │ ├── da │ │ │ └── unbound.po │ │ ├── de │ │ │ └── unbound.po │ │ ├── el │ │ │ └── unbound.po │ │ ├── es │ │ │ └── unbound.po │ │ ├── fi │ │ │ └── unbound.po │ │ ├── fr │ │ │ └── unbound.po │ │ ├── ga │ │ │ └── unbound.po │ │ ├── he │ │ │ └── unbound.po │ │ ├── hi │ │ │ └── unbound.po │ │ ├── hu │ │ │ └── unbound.po │ │ ├── it │ │ │ └── unbound.po │ │ ├── ja │ │ │ └── unbound.po │ │ ├── ko │ │ │ └── unbound.po │ │ ├── lt │ │ │ └── unbound.po │ │ ├── mr │ │ │ └── unbound.po │ │ ├── ms │ │ │ └── unbound.po │ │ ├── nb_NO │ │ │ └── unbound.po │ │ ├── nl │ │ │ └── unbound.po │ │ ├── pl │ │ │ └── unbound.po │ │ ├── pt │ │ │ └── unbound.po │ │ ├── pt_BR │ │ │ └── unbound.po │ │ ├── ro │ │ │ └── unbound.po │ │ ├── ru │ │ │ └── unbound.po │ │ ├── sk │ │ │ └── unbound.po │ │ ├── sv │ │ │ └── unbound.po │ │ ├── templates │ │ │ └── unbound.pot │ │ ├── tr │ │ │ └── unbound.po │ │ ├── uk │ │ │ └── unbound.po │ │ ├── vi │ │ │ └── unbound.po │ │ ├── zh_Hans │ │ │ └── unbound.po │ │ └── zh_Hant │ │ │ └── unbound.po │ └── root │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-unbound.json ├── luci-app-upnp │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ ├── status │ │ │ └── include │ │ │ │ └── 80_upnp.js │ │ │ └── upnp │ │ │ └── upnp.js │ ├── po │ │ ├── ar │ │ │ └── upnp.po │ │ ├── bg │ │ │ └── upnp.po │ │ ├── bn_BD │ │ │ └── upnp.po │ │ ├── ca │ │ │ └── upnp.po │ │ ├── cs │ │ │ └── upnp.po │ │ ├── da │ │ │ └── upnp.po │ │ ├── de │ │ │ └── upnp.po │ │ ├── el │ │ │ └── upnp.po │ │ ├── es │ │ │ └── upnp.po │ │ ├── fi │ │ │ └── upnp.po │ │ ├── fr │ │ │ └── upnp.po │ │ ├── ga │ │ │ └── upnp.po │ │ ├── he │ │ │ └── upnp.po │ │ ├── hi │ │ │ └── upnp.po │ │ ├── hu │ │ │ └── upnp.po │ │ ├── it │ │ │ └── upnp.po │ │ ├── ja │ │ │ └── upnp.po │ │ ├── ko │ │ │ └── upnp.po │ │ ├── lt │ │ │ └── upnp.po │ │ ├── mr │ │ │ └── upnp.po │ │ ├── ms │ │ │ └── upnp.po │ │ ├── nb_NO │ │ │ └── upnp.po │ │ ├── nl │ │ │ └── upnp.po │ │ ├── pl │ │ │ └── upnp.po │ │ ├── pt │ │ │ └── upnp.po │ │ ├── pt_BR │ │ │ └── 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 │ │ ├── yua │ │ │ └── upnp.po │ │ ├── zh_Hans │ │ │ └── upnp.po │ │ └── zh_Hant │ │ │ └── upnp.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-upnp.json │ │ ├── rpcd │ │ ├── acl.d │ │ │ └── luci-app-upnp.json │ │ └── ucode │ │ │ └── luci.upnp │ │ └── ucitrack │ │ └── luci-app-upnp.json ├── luci-app-usteer │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── usteer │ │ │ └── usteer.js │ ├── po │ │ ├── bn_BD │ │ │ └── usteer.po │ │ ├── cs │ │ │ └── usteer.po │ │ ├── da │ │ │ └── usteer.po │ │ ├── de │ │ │ └── usteer.po │ │ ├── es │ │ │ └── usteer.po │ │ ├── fi │ │ │ └── usteer.po │ │ ├── fr │ │ │ └── usteer.po │ │ ├── ga │ │ │ └── usteer.po │ │ ├── hu │ │ │ └── usteer.po │ │ ├── it │ │ │ └── usteer.po │ │ ├── ja │ │ │ └── usteer.po │ │ ├── lt │ │ │ └── usteer.po │ │ ├── nb_NO │ │ │ └── usteer.po │ │ ├── nl │ │ │ └── usteer.po │ │ ├── pl │ │ │ └── usteer.po │ │ ├── pt │ │ │ └── usteer.po │ │ ├── pt_BR │ │ │ └── usteer.po │ │ ├── ro │ │ │ └── usteer.po │ │ ├── ru │ │ │ └── usteer.po │ │ ├── sk │ │ │ └── usteer.po │ │ ├── sv │ │ │ └── usteer.po │ │ ├── templates │ │ │ └── usteer.pot │ │ ├── tr │ │ │ └── usteer.po │ │ ├── uk │ │ │ └── usteer.po │ │ ├── vi │ │ │ └── usteer.po │ │ ├── zh_Hans │ │ │ └── usteer.po │ │ └── zh_Hant │ │ │ └── usteer.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-usteer.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-usteer.json ├── luci-app-v2raya │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── v2raya │ │ │ ├── config.js │ │ │ └── log.js │ ├── po │ │ ├── ar │ │ │ └── v2raya.po │ │ ├── bg │ │ │ └── v2raya.po │ │ ├── bn_BD │ │ │ └── v2raya.po │ │ ├── ca │ │ │ └── v2raya.po │ │ ├── cs │ │ │ └── v2raya.po │ │ ├── da │ │ │ └── v2raya.po │ │ ├── de │ │ │ └── v2raya.po │ │ ├── el │ │ │ └── v2raya.po │ │ ├── es │ │ │ └── v2raya.po │ │ ├── fi │ │ │ └── v2raya.po │ │ ├── fr │ │ │ └── v2raya.po │ │ ├── ga │ │ │ └── v2raya.po │ │ ├── he │ │ │ └── v2raya.po │ │ ├── hi │ │ │ └── v2raya.po │ │ ├── hu │ │ │ └── v2raya.po │ │ ├── it │ │ │ └── v2raya.po │ │ ├── ja │ │ │ └── v2raya.po │ │ ├── ko │ │ │ └── v2raya.po │ │ ├── lt │ │ │ └── v2raya.po │ │ ├── mr │ │ │ └── v2raya.po │ │ ├── ms │ │ │ └── v2raya.po │ │ ├── nb_NO │ │ │ └── v2raya.po │ │ ├── nl │ │ │ └── v2raya.po │ │ ├── pl │ │ │ └── v2raya.po │ │ ├── pt │ │ │ └── v2raya.po │ │ ├── pt_BR │ │ │ └── v2raya.po │ │ ├── ro │ │ │ └── v2raya.po │ │ ├── ru │ │ │ └── v2raya.po │ │ ├── sk │ │ │ └── v2raya.po │ │ ├── sv │ │ │ └── v2raya.po │ │ ├── templates │ │ │ └── v2raya.pot │ │ ├── tr │ │ │ └── v2raya.po │ │ ├── uk │ │ │ └── v2raya.po │ │ ├── vi │ │ │ └── v2raya.po │ │ ├── yua │ │ │ └── v2raya.po │ │ ├── zh_Hans │ │ │ └── v2raya.po │ │ └── zh_Hant │ │ │ └── v2raya.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-v2raya.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-v2raya.json ├── luci-app-vnstat2 │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── vnstat2 │ │ │ ├── config.js │ │ │ └── graphs.js │ ├── po │ │ ├── ar │ │ │ └── vnstat2.po │ │ ├── bg │ │ │ └── vnstat2.po │ │ ├── bn_BD │ │ │ └── vnstat2.po │ │ ├── ca │ │ │ └── vnstat2.po │ │ ├── cs │ │ │ └── vnstat2.po │ │ ├── da │ │ │ └── vnstat2.po │ │ ├── de │ │ │ └── vnstat2.po │ │ ├── el │ │ │ └── vnstat2.po │ │ ├── es │ │ │ └── vnstat2.po │ │ ├── fi │ │ │ └── vnstat2.po │ │ ├── fil │ │ │ └── vnstat2.po │ │ ├── fr │ │ │ └── vnstat2.po │ │ ├── ga │ │ │ └── vnstat2.po │ │ ├── he │ │ │ └── vnstat2.po │ │ ├── hi │ │ │ └── vnstat2.po │ │ ├── hu │ │ │ └── vnstat2.po │ │ ├── it │ │ │ └── vnstat2.po │ │ ├── ja │ │ │ └── vnstat2.po │ │ ├── ko │ │ │ └── vnstat2.po │ │ ├── lt │ │ │ └── vnstat2.po │ │ ├── mr │ │ │ └── vnstat2.po │ │ ├── ms │ │ │ └── vnstat2.po │ │ ├── nb_NO │ │ │ └── vnstat2.po │ │ ├── nl │ │ │ └── vnstat2.po │ │ ├── pl │ │ │ └── vnstat2.po │ │ ├── pt │ │ │ └── vnstat2.po │ │ ├── pt_BR │ │ │ └── vnstat2.po │ │ ├── ro │ │ │ └── vnstat2.po │ │ ├── ru │ │ │ └── vnstat2.po │ │ ├── sk │ │ │ └── vnstat2.po │ │ ├── sv │ │ │ └── vnstat2.po │ │ ├── templates │ │ │ └── vnstat2.pot │ │ ├── tr │ │ │ └── vnstat2.po │ │ ├── uk │ │ │ └── vnstat2.po │ │ ├── vi │ │ │ └── vnstat2.po │ │ ├── yua │ │ │ └── vnstat2.po │ │ ├── zh_Hans │ │ │ └── vnstat2.po │ │ └── zh_Hant │ │ │ └── vnstat2.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-vnstat2.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-vnstat2.json ├── luci-app-watchcat │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── watchcat.js │ ├── po │ │ ├── ar │ │ │ └── watchcat.po │ │ ├── bg │ │ │ └── watchcat.po │ │ ├── bn_BD │ │ │ └── watchcat.po │ │ ├── ca │ │ │ └── watchcat.po │ │ ├── cs │ │ │ └── watchcat.po │ │ ├── da │ │ │ └── watchcat.po │ │ ├── de │ │ │ └── watchcat.po │ │ ├── el │ │ │ └── watchcat.po │ │ ├── es │ │ │ └── watchcat.po │ │ ├── fi │ │ │ └── watchcat.po │ │ ├── fr │ │ │ └── watchcat.po │ │ ├── ga │ │ │ └── watchcat.po │ │ ├── he │ │ │ └── watchcat.po │ │ ├── hi │ │ │ └── watchcat.po │ │ ├── hu │ │ │ └── watchcat.po │ │ ├── it │ │ │ └── watchcat.po │ │ ├── ja │ │ │ └── watchcat.po │ │ ├── ko │ │ │ └── watchcat.po │ │ ├── lt │ │ │ └── watchcat.po │ │ ├── mr │ │ │ └── watchcat.po │ │ ├── ms │ │ │ └── watchcat.po │ │ ├── nb_NO │ │ │ └── watchcat.po │ │ ├── nl │ │ │ └── watchcat.po │ │ ├── pl │ │ │ └── watchcat.po │ │ ├── pt │ │ │ └── watchcat.po │ │ ├── pt_BR │ │ │ └── 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_Hans │ │ │ └── watchcat.po │ │ └── zh_Hant │ │ │ └── watchcat.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-watchcat.json │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-app-watchcat.json │ │ └── ucitrack │ │ └── luci-app-watchcat.json ├── luci-app-wifischedule │ ├── Makefile │ ├── README.md │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── wifischedule │ │ │ └── wifischedule.js │ ├── po │ │ ├── ar │ │ │ └── wifischedule.po │ │ ├── bg │ │ │ └── wifischedule.po │ │ ├── bn_BD │ │ │ └── wifischedule.po │ │ ├── ca │ │ │ └── wifischedule.po │ │ ├── cs │ │ │ └── wifischedule.po │ │ ├── da │ │ │ └── wifischedule.po │ │ ├── de │ │ │ └── wifischedule.po │ │ ├── el │ │ │ └── wifischedule.po │ │ ├── es │ │ │ └── wifischedule.po │ │ ├── fa │ │ │ └── wifischedule.po │ │ ├── fi │ │ │ └── wifischedule.po │ │ ├── fr │ │ │ └── wifischedule.po │ │ ├── ga │ │ │ └── wifischedule.po │ │ ├── he │ │ │ └── wifischedule.po │ │ ├── hi │ │ │ └── wifischedule.po │ │ ├── hu │ │ │ └── wifischedule.po │ │ ├── it │ │ │ └── wifischedule.po │ │ ├── ja │ │ │ └── wifischedule.po │ │ ├── ko │ │ │ └── wifischedule.po │ │ ├── lt │ │ │ └── wifischedule.po │ │ ├── mr │ │ │ └── wifischedule.po │ │ ├── ms │ │ │ └── wifischedule.po │ │ ├── nb_NO │ │ │ └── wifischedule.po │ │ ├── nl │ │ │ └── wifischedule.po │ │ ├── pl │ │ │ └── wifischedule.po │ │ ├── pt │ │ │ └── wifischedule.po │ │ ├── pt_BR │ │ │ └── wifischedule.po │ │ ├── ro │ │ │ └── wifischedule.po │ │ ├── ru │ │ │ └── wifischedule.po │ │ ├── sk │ │ │ └── wifischedule.po │ │ ├── sv │ │ │ └── wifischedule.po │ │ ├── templates │ │ │ └── wifischedule.pot │ │ ├── tr │ │ │ └── wifischedule.po │ │ ├── uk │ │ │ └── wifischedule.po │ │ ├── vi │ │ │ └── wifischedule.po │ │ ├── yua │ │ │ └── wifischedule.po │ │ ├── yue │ │ │ └── wifischedule.po │ │ ├── zh_Hans │ │ │ └── wifischedule.po │ │ └── zh_Hant │ │ │ └── wifischedule.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-wifischedule.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-wifischedule.json ├── luci-app-wol │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── wol.js │ ├── po │ │ ├── ar │ │ │ └── wol.po │ │ ├── bg │ │ │ └── wol.po │ │ ├── bn_BD │ │ │ └── wol.po │ │ ├── ca │ │ │ └── wol.po │ │ ├── cs │ │ │ └── wol.po │ │ ├── da │ │ │ └── wol.po │ │ ├── de │ │ │ └── wol.po │ │ ├── el │ │ │ └── wol.po │ │ ├── es │ │ │ └── wol.po │ │ ├── fi │ │ │ └── wol.po │ │ ├── fr │ │ │ └── wol.po │ │ ├── ga │ │ │ └── wol.po │ │ ├── he │ │ │ └── wol.po │ │ ├── hi │ │ │ └── wol.po │ │ ├── hu │ │ │ └── wol.po │ │ ├── id │ │ │ └── wol.po │ │ ├── it │ │ │ └── wol.po │ │ ├── ja │ │ │ └── wol.po │ │ ├── ko │ │ │ └── wol.po │ │ ├── lt │ │ │ └── wol.po │ │ ├── mr │ │ │ └── wol.po │ │ ├── ms │ │ │ └── wol.po │ │ ├── nb_NO │ │ │ └── wol.po │ │ ├── nl │ │ │ └── wol.po │ │ ├── pl │ │ │ └── wol.po │ │ ├── pt │ │ │ └── wol.po │ │ ├── pt_BR │ │ │ └── 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 │ │ ├── yua │ │ │ └── wol.po │ │ ├── zh_Hans │ │ │ └── wol.po │ │ └── zh_Hant │ │ │ └── wol.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-wol.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-wol.json ├── luci-app-xfrpc │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── xfrpc.js │ ├── po │ │ ├── ar │ │ │ └── xfrpc.po │ │ ├── bg │ │ │ └── xfrpc.po │ │ ├── bn_BD │ │ │ └── xfrpc.po │ │ ├── ca │ │ │ └── xfrpc.po │ │ ├── cs │ │ │ └── xfrpc.po │ │ ├── da │ │ │ └── xfrpc.po │ │ ├── de │ │ │ └── xfrpc.po │ │ ├── el │ │ │ └── xfrpc.po │ │ ├── es │ │ │ └── xfrpc.po │ │ ├── fi │ │ │ └── xfrpc.po │ │ ├── fr │ │ │ └── xfrpc.po │ │ ├── ga │ │ │ └── xfrpc.po │ │ ├── he │ │ │ └── xfrpc.po │ │ ├── hi │ │ │ └── xfrpc.po │ │ ├── hu │ │ │ └── xfrpc.po │ │ ├── it │ │ │ └── xfrpc.po │ │ ├── ja │ │ │ └── xfrpc.po │ │ ├── ko │ │ │ └── xfrpc.po │ │ ├── lt │ │ │ └── xfrpc.po │ │ ├── mr │ │ │ └── xfrpc.po │ │ ├── ms │ │ │ └── xfrpc.po │ │ ├── nb_NO │ │ │ └── xfrpc.po │ │ ├── nl │ │ │ └── xfrpc.po │ │ ├── pl │ │ │ └── xfrpc.po │ │ ├── pt │ │ │ └── xfrpc.po │ │ ├── pt_BR │ │ │ └── xfrpc.po │ │ ├── ro │ │ │ └── xfrpc.po │ │ ├── ru │ │ │ └── xfrpc.po │ │ ├── sk │ │ │ └── xfrpc.po │ │ ├── sv │ │ │ └── xfrpc.po │ │ ├── templates │ │ │ └── xfrpc.pot │ │ ├── tr │ │ │ └── xfrpc.po │ │ ├── uk │ │ │ └── xfrpc.po │ │ ├── vi │ │ │ └── xfrpc.po │ │ ├── zh_Hans │ │ │ └── xfrpc.po │ │ └── zh_Hant │ │ │ └── xfrpc.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-xfrpc.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-xfrpc.json └── luci-app-xinetd │ ├── Makefile │ ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── xinetd │ │ └── xinetd.js │ ├── po │ ├── ar │ │ └── xinetd.po │ ├── bg │ │ └── xinetd.po │ ├── bn_BD │ │ └── xinetd.po │ ├── ca │ │ └── xinetd.po │ ├── cs │ │ └── xinetd.po │ ├── da │ │ └── xinetd.po │ ├── de │ │ └── xinetd.po │ ├── el │ │ └── xinetd.po │ ├── es │ │ └── xinetd.po │ ├── fi │ │ └── xinetd.po │ ├── fr │ │ └── xinetd.po │ ├── ga │ │ └── xinetd.po │ ├── he │ │ └── xinetd.po │ ├── hi │ │ └── xinetd.po │ ├── hu │ │ └── xinetd.po │ ├── it │ │ └── xinetd.po │ ├── ja │ │ └── xinetd.po │ ├── ko │ │ └── xinetd.po │ ├── lt │ │ └── xinetd.po │ ├── mr │ │ └── xinetd.po │ ├── ms │ │ └── xinetd.po │ ├── nb_NO │ │ └── xinetd.po │ ├── nl │ │ └── xinetd.po │ ├── pl │ │ └── xinetd.po │ ├── pt │ │ └── xinetd.po │ ├── pt_BR │ │ └── xinetd.po │ ├── ro │ │ └── xinetd.po │ ├── ru │ │ └── xinetd.po │ ├── sk │ │ └── xinetd.po │ ├── sv │ │ └── xinetd.po │ ├── templates │ │ └── xinetd.pot │ ├── tr │ │ └── xinetd.po │ ├── uk │ │ └── xinetd.po │ ├── vi │ │ └── xinetd.po │ ├── zh_Hans │ │ └── xinetd.po │ └── zh_Hant │ │ └── xinetd.po │ └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-xinetd.json │ └── rpcd │ └── acl.d │ └── luci-app-xinetd.json ├── collections ├── luci-lib-docker │ ├── Makefile │ └── luasrc │ │ └── docker.lua ├── luci-light │ └── Makefile ├── luci-nginx │ └── Makefile ├── luci-ssl-openssl │ └── Makefile ├── luci-ssl │ └── Makefile └── luci │ └── Makefile ├── contrib └── package │ ├── Makefile │ ├── csstidy │ └── Makefile │ ├── lucihttp │ └── Makefile │ ├── ucode-mod-html │ ├── Makefile │ └── src │ │ └── html.c │ └── ucode-mod-lua │ ├── Makefile │ └── src │ └── lua.c ├── docs ├── CBI.md ├── JsonRpcHowTo.md ├── LMO.md ├── LuCI-0.10.md ├── Modules.md ├── ModulesHowTo.md ├── README.md ├── Templates.md ├── ThemesHowTo.md ├── api │ ├── index.html │ ├── luadoc.css │ └── modules │ │ ├── luci.dispatcher.html │ │ ├── luci.http.conditionals.html │ │ ├── luci.http.date.html │ │ ├── luci.http.html │ │ ├── luci.http.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 │ │ ├── luci.xml.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 └── jsapi │ └── README.md ├── jsdoc.conf.json ├── libs ├── luci-lib-base │ ├── Makefile │ └── luasrc │ │ ├── debug.lua │ │ ├── http.lua │ │ ├── http.luadoc │ │ ├── ltn12.lua │ │ ├── util.lua │ │ └── util.luadoc ├── luci-lib-chartjs │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── nlbw.chart.min.js ├── 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-ipkg │ ├── Makefile │ └── luasrc │ │ └── model │ │ ├── ipkg.lua │ │ └── ipkg.luadoc ├── luci-lib-iptparser │ ├── Makefile │ └── luasrc │ │ └── sys │ │ ├── iptparser.lua │ │ └── iptparser.luadoc ├── luci-lib-json │ ├── Makefile │ └── luasrc │ │ ├── json.lua │ │ └── json.luadoc ├── luci-lib-jsonc │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── jsonc.c │ │ └── jsonc.luadoc ├── 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-uqr │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── uqr.js ├── rpcd-mod-luci │ ├── Makefile │ └── src │ │ ├── CMakeLists.txt │ │ └── luci.c ├── rpcd-mod-rad2-enc │ ├── Makefile │ └── files │ │ └── rad2-enc └── 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 │ │ │ ├── file.svg │ │ │ ├── folder.svg │ │ │ └── link.svg │ │ │ ├── firewall.js │ │ │ ├── form.js │ │ │ ├── fs.js │ │ │ ├── icons │ │ │ ├── alias.png │ │ │ ├── alias_disabled.png │ │ │ ├── bridge.png │ │ │ ├── bridge_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_disabled.png │ │ │ ├── luci.js │ │ │ ├── network.js │ │ │ ├── protocol │ │ │ ├── dhcp.js │ │ │ ├── none.js │ │ │ └── static.js │ │ │ ├── rpc.js │ │ │ ├── tools │ │ │ ├── prng.js │ │ │ ├── views.js │ │ │ └── widgets.js │ │ │ ├── uci.js │ │ │ ├── ui.js │ │ │ ├── validation.js │ │ │ └── xhr.js │ ├── po │ │ ├── ar │ │ │ └── base.po │ │ ├── ast │ │ │ └── base.po │ │ ├── bg │ │ │ └── base.po │ │ ├── bn_BD │ │ │ └── base.po │ │ ├── ca │ │ │ └── base.po │ │ ├── cs │ │ │ └── base.po │ │ ├── da │ │ │ └── base.po │ │ ├── de │ │ │ └── base.po │ │ ├── el │ │ │ └── base.po │ │ ├── es │ │ │ └── base.po │ │ ├── fa │ │ │ └── base.po │ │ ├── fi │ │ │ └── base.po │ │ ├── fil │ │ │ └── base.po │ │ ├── fr │ │ │ └── base.po │ │ ├── ga │ │ │ └── base.po │ │ ├── he │ │ │ └── base.po │ │ ├── hi │ │ │ └── base.po │ │ ├── hu │ │ │ └── base.po │ │ ├── id │ │ │ └── base.po │ │ ├── it │ │ │ └── base.po │ │ ├── ja │ │ │ └── base.po │ │ ├── ko │ │ │ └── base.po │ │ ├── lt │ │ │ └── base.po │ │ ├── ml │ │ │ └── base.po │ │ ├── mr │ │ │ └── base.po │ │ ├── ms │ │ │ └── base.po │ │ ├── nb_NO │ │ │ └── base.po │ │ ├── nl │ │ │ └── base.po │ │ ├── pl │ │ │ └── base.po │ │ ├── pt │ │ │ └── base.po │ │ ├── pt_BR │ │ │ └── base.po │ │ ├── ro │ │ │ └── base.po │ │ ├── ru │ │ │ └── base.po │ │ ├── sk │ │ │ └── base.po │ │ ├── sv │ │ │ └── base.po │ │ ├── templates │ │ │ └── base.pot │ │ ├── tr │ │ │ └── base.po │ │ ├── uk │ │ │ └── base.po │ │ ├── ur │ │ │ └── base.po │ │ ├── vi │ │ │ └── base.po │ │ ├── yua │ │ │ └── base.po │ │ ├── zh_Hans │ │ │ └── base.po │ │ └── zh_Hant │ │ │ └── base.po │ ├── root │ │ ├── etc │ │ │ ├── config │ │ │ │ └── luci │ │ │ ├── init.d │ │ │ │ └── ucitrack │ │ │ └── luci-uploads │ │ │ │ └── .placeholder │ │ ├── usr │ │ │ └── share │ │ │ │ ├── acl.d │ │ │ │ └── luci-base.json │ │ │ │ ├── luci │ │ │ │ └── menu.d │ │ │ │ │ └── luci-base.json │ │ │ │ └── rpcd │ │ │ │ ├── acl.d │ │ │ │ └── luci-base.json │ │ │ │ └── ucode │ │ │ │ └── luci │ │ └── www │ │ │ └── index.html │ ├── src │ │ ├── Makefile │ │ ├── contrib │ │ │ ├── lemon.c │ │ │ └── lempar.c │ │ ├── jsmin.c │ │ ├── lib │ │ │ ├── lmo.c │ │ │ ├── lmo.h │ │ │ ├── luci.c │ │ │ └── plural_formula.y │ │ └── po2lmo.c │ └── ucode │ │ ├── controller │ │ └── admin │ │ │ ├── index.uc │ │ │ └── uci.uc │ │ ├── dispatcher.uc │ │ ├── http.uc │ │ ├── runtime.uc │ │ ├── sys.uc │ │ ├── template │ │ ├── csrftoken.ut │ │ ├── error404.ut │ │ ├── error500.ut │ │ ├── footer.ut │ │ ├── header.ut │ │ ├── sysauth.ut │ │ └── view.ut │ │ ├── uhttpd.uc │ │ └── zoneinfo.uc ├── luci-compat │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── 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 │ ├── luasrc │ │ ├── cbi.lua │ │ ├── cbi │ │ │ └── datatypes.lua │ │ ├── model │ │ │ ├── firewall.lua │ │ │ ├── network.lua │ │ │ └── network │ │ │ │ ├── proto_3g.lua │ │ │ │ ├── proto_4x6.lua │ │ │ │ ├── proto_6x4.lua │ │ │ │ ├── proto_dhcpv6.lua │ │ │ │ ├── proto_hnet.lua │ │ │ │ ├── proto_ipip.lua │ │ │ │ ├── proto_modemmanager.lua │ │ │ │ ├── proto_ncm.lua │ │ │ │ ├── proto_openconnect.lua │ │ │ │ ├── proto_ppp.lua │ │ │ │ ├── proto_pppossh.lua │ │ │ │ ├── proto_qmi.lua │ │ │ │ ├── proto_relay.lua │ │ │ │ ├── proto_vpnc.lua │ │ │ │ └── proto_wireguard.lua │ │ ├── tools │ │ │ └── webadmin.lua │ │ └── view │ │ │ └── cbi │ │ │ ├── browser.htm │ │ │ ├── button.htm │ │ │ ├── cell_valuefooter.htm │ │ │ ├── cell_valueheader.htm │ │ │ ├── compound.htm │ │ │ ├── delegator.htm │ │ │ ├── dropdown.htm │ │ │ ├── dvalue.htm │ │ │ ├── dynlist.htm │ │ │ ├── error.htm │ │ │ ├── firewall_zonelist.htm │ │ │ ├── footer.htm │ │ │ ├── full_valuefooter.htm │ │ │ ├── full_valueheader.htm │ │ │ ├── fvalue.htm │ │ │ ├── header.htm │ │ │ ├── ipaddr.htm │ │ │ ├── lvalue.htm │ │ │ ├── map.htm │ │ │ ├── mvalue.htm │ │ │ ├── network_ifacelist.htm │ │ │ ├── network_netinfo.htm │ │ │ ├── network_netlist.htm │ │ │ ├── nsection.htm │ │ │ ├── nullsection.htm │ │ │ ├── simpleform.htm │ │ │ ├── tabcontainer.htm │ │ │ ├── tblsection.htm │ │ │ ├── tsection.htm │ │ │ ├── tvalue.htm │ │ │ ├── ucisection.htm │ │ │ ├── upload.htm │ │ │ ├── value.htm │ │ │ ├── valuefooter.htm │ │ │ ├── valueheader.htm │ │ │ └── wireless_modefreq.htm │ └── root │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-compat.json ├── luci-lua-runtime │ ├── Makefile │ ├── luasrc │ │ ├── cacheloader.lua │ │ ├── ccache.lua │ │ ├── config.lua │ │ ├── dispatcher.lua │ │ ├── i18n.lua │ │ ├── i18n.luadoc │ │ ├── model │ │ │ ├── uci.lua │ │ │ └── uci.luadoc │ │ ├── store.lua │ │ ├── sys.lua │ │ ├── sys.luadoc │ │ ├── sys │ │ │ ├── zoneinfo.lua │ │ │ └── zoneinfo │ │ │ │ ├── tzdata.lua │ │ │ │ └── tzoffset.lua │ │ ├── template.lua │ │ ├── ucodebridge.lua │ │ ├── version.lua │ │ ├── view │ │ │ ├── admin_status │ │ │ │ └── luaindex.htm │ │ │ ├── empty_node_placeholder.htm │ │ │ └── indexer.htm │ │ ├── xml.lua │ │ └── xml.luadoc │ └── src │ │ ├── Makefile │ │ ├── contrib │ │ ├── lemon.c │ │ └── lempar.c │ │ ├── mkversion.sh │ │ ├── plural_formula.y │ │ ├── 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 ├── luci-mod-battstatus │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── preload │ │ │ └── battstatus.js │ ├── po │ │ ├── ar │ │ │ └── battstatus.po │ │ ├── ast │ │ │ └── battstatus.po │ │ ├── bg │ │ │ └── battstatus.po │ │ ├── bn_BD │ │ │ └── battstatus.po │ │ ├── ca │ │ │ └── battstatus.po │ │ ├── cs │ │ │ └── battstatus.po │ │ ├── da │ │ │ └── battstatus.po │ │ ├── de │ │ │ └── battstatus.po │ │ ├── el │ │ │ └── battstatus.po │ │ ├── es │ │ │ └── battstatus.po │ │ ├── fa │ │ │ └── battstatus.po │ │ ├── fi │ │ │ └── battstatus.po │ │ ├── fr │ │ │ └── battstatus.po │ │ ├── ga │ │ │ └── battstatus.po │ │ ├── he │ │ │ └── battstatus.po │ │ ├── hi │ │ │ └── battstatus.po │ │ ├── hu │ │ │ └── battstatus.po │ │ ├── id │ │ │ └── battstatus.po │ │ ├── it │ │ │ └── battstatus.po │ │ ├── ja │ │ │ └── battstatus.po │ │ ├── ko │ │ │ └── battstatus.po │ │ ├── lt │ │ │ └── battstatus.po │ │ ├── mr │ │ │ └── battstatus.po │ │ ├── ms │ │ │ └── battstatus.po │ │ ├── nb_NO │ │ │ └── battstatus.po │ │ ├── nl │ │ │ └── battstatus.po │ │ ├── pl │ │ │ └── battstatus.po │ │ ├── pt │ │ │ └── battstatus.po │ │ ├── pt_BR │ │ │ └── battstatus.po │ │ ├── ro │ │ │ └── battstatus.po │ │ ├── ru │ │ │ └── battstatus.po │ │ ├── sgs │ │ │ └── battstatus.po │ │ ├── sk │ │ │ └── battstatus.po │ │ ├── sr │ │ │ └── battstatus.po │ │ ├── sv │ │ │ └── battstatus.po │ │ ├── templates │ │ │ └── battstatus.pot │ │ ├── tr │ │ │ └── battstatus.po │ │ ├── uk │ │ │ └── battstatus.po │ │ ├── vi │ │ │ └── battstatus.po │ │ ├── yua │ │ │ └── battstatus.po │ │ ├── zh_Hans │ │ │ └── battstatus.po │ │ └── zh_Hant │ │ │ └── battstatus.po │ └── root │ │ └── usr │ │ ├── libexec │ │ └── rpcd │ │ │ └── luci.battstatus │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-mod-battstatus.json ├── luci-mod-dashboard │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── dashboard │ │ │ ├── css │ │ │ └── custom.css │ │ │ ├── icons │ │ │ ├── devices.svg │ │ │ ├── internet.svg │ │ │ ├── not-internet.svg │ │ │ ├── router.svg │ │ │ └── wireless.svg │ │ │ ├── include │ │ │ ├── 10_router.js │ │ │ ├── 20_lan.js │ │ │ └── 30_wifi.js │ │ │ └── index.js │ ├── po │ │ ├── ar │ │ │ └── dashboard.po │ │ ├── ast │ │ │ └── dashboard.po │ │ ├── bg │ │ │ └── dashboard.po │ │ ├── bn_BD │ │ │ └── dashboard.po │ │ ├── ca │ │ │ └── dashboard.po │ │ ├── cs │ │ │ └── dashboard.po │ │ ├── da │ │ │ └── dashboard.po │ │ ├── de │ │ │ └── dashboard.po │ │ ├── el │ │ │ └── dashboard.po │ │ ├── es │ │ │ └── dashboard.po │ │ ├── fa │ │ │ └── dashboard.po │ │ ├── fi │ │ │ └── dashboard.po │ │ ├── fr │ │ │ └── dashboard.po │ │ ├── ga │ │ │ └── dashboard.po │ │ ├── he │ │ │ └── dashboard.po │ │ ├── hi │ │ │ └── dashboard.po │ │ ├── hu │ │ │ └── dashboard.po │ │ ├── id │ │ │ └── dashboard.po │ │ ├── it │ │ │ └── dashboard.po │ │ ├── ja │ │ │ └── dashboard.po │ │ ├── ko │ │ │ └── dashboard.po │ │ ├── lt │ │ │ └── dashboard.po │ │ ├── mr │ │ │ └── dashboard.po │ │ ├── ms │ │ │ └── dashboard.po │ │ ├── nb_NO │ │ │ └── dashboard.po │ │ ├── nl │ │ │ └── dashboard.po │ │ ├── pl │ │ │ └── dashboard.po │ │ ├── pt │ │ │ └── dashboard.po │ │ ├── pt_BR │ │ │ └── dashboard.po │ │ ├── ro │ │ │ └── dashboard.po │ │ ├── ru │ │ │ └── dashboard.po │ │ ├── sk │ │ │ └── dashboard.po │ │ ├── sv │ │ │ └── dashboard.po │ │ ├── templates │ │ │ └── dashboard.pot │ │ ├── tr │ │ │ └── dashboard.po │ │ ├── uk │ │ │ └── dashboard.po │ │ ├── vi │ │ │ └── dashboard.po │ │ ├── zh_Hans │ │ │ └── dashboard.po │ │ └── zh_Hant │ │ │ └── dashboard.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-mod-dashboard.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-mod-dashboard.json ├── luci-mod-dsl │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── view │ │ │ └── status │ │ │ └── dsl │ │ │ ├── graph.js │ │ │ ├── spectrum.js │ │ │ └── stats.js │ ├── po │ │ ├── ar │ │ │ └── dsl.po │ │ ├── bg │ │ │ └── dsl.po │ │ ├── bn_BD │ │ │ └── dsl.po │ │ ├── ca │ │ │ └── dsl.po │ │ ├── cs │ │ │ └── dsl.po │ │ ├── da │ │ │ └── dsl.po │ │ ├── de │ │ │ └── dsl.po │ │ ├── el │ │ │ └── dsl.po │ │ ├── es │ │ │ └── dsl.po │ │ ├── fi │ │ │ └── dsl.po │ │ ├── fr │ │ │ └── dsl.po │ │ ├── ga │ │ │ └── dsl.po │ │ ├── he │ │ │ └── dsl.po │ │ ├── hi │ │ │ └── dsl.po │ │ ├── hu │ │ │ └── dsl.po │ │ ├── it │ │ │ └── dsl.po │ │ ├── ja │ │ │ └── dsl.po │ │ ├── ko │ │ │ └── dsl.po │ │ ├── lt │ │ │ └── dsl.po │ │ ├── mr │ │ │ └── dsl.po │ │ ├── ms │ │ │ └── dsl.po │ │ ├── nb_NO │ │ │ └── dsl.po │ │ ├── nl │ │ │ └── dsl.po │ │ ├── pl │ │ │ └── dsl.po │ │ ├── pt │ │ │ └── dsl.po │ │ ├── pt_BR │ │ │ └── dsl.po │ │ ├── ro │ │ │ └── dsl.po │ │ ├── ru │ │ │ └── dsl.po │ │ ├── sk │ │ │ └── dsl.po │ │ ├── sv │ │ │ └── dsl.po │ │ ├── templates │ │ │ └── dsl.pot │ │ ├── tr │ │ │ └── dsl.po │ │ ├── uk │ │ │ └── dsl.po │ │ ├── vi │ │ │ └── dsl.po │ │ ├── zh_Hans │ │ │ └── dsl.po │ │ └── zh_Hant │ │ │ └── dsl.po │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-mod-dsl.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-mod-dsl.json ├── luci-mod-network │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── tools │ │ │ └── network.js │ │ │ └── view │ │ │ └── network │ │ │ ├── dhcp.js │ │ │ ├── diagnostics.js │ │ │ ├── interfaces.js │ │ │ ├── routes.js │ │ │ ├── switch.js │ │ │ └── wireless.js │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── 50_luci-mod-admin-full │ │ └── usr │ │ ├── libexec │ │ └── luci-peeraddr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-mod-network.json │ │ ├── rpcd │ │ └── acl.d │ │ │ └── luci-mod-network.json │ │ └── ucitrack │ │ ├── luci-mod-network-dnsmasq.json │ │ ├── luci-mod-network-interfaces.json │ │ ├── luci-mod-network-odhcpd.json │ │ └── luci-mod-network-wireless.json ├── luci-mod-rpc │ ├── Makefile │ └── luasrc │ │ ├── controller │ │ └── rpc.lua │ │ ├── jsonrpc.lua │ │ └── jsonrpcbind │ │ └── uci.lua ├── luci-mod-status │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── svg │ │ │ ├── bandwidth.svg │ │ │ ├── channel_analysis.svg │ │ │ ├── connections.svg │ │ │ ├── load.svg │ │ │ ├── wifirate.svg │ │ │ └── wireless.svg │ │ │ └── view │ │ │ └── status │ │ │ ├── bandwidth.js │ │ │ ├── channel_analysis.js │ │ │ ├── connections.js │ │ │ ├── dmesg.js │ │ │ ├── include │ │ │ ├── 10_system.js │ │ │ ├── 20_memory.js │ │ │ ├── 25_storage.js │ │ │ ├── 29_ports.js │ │ │ ├── 30_network.js │ │ │ ├── 40_dhcp.js │ │ │ ├── 50_dsl.js │ │ │ └── 60_wifi.js │ │ │ ├── index.js │ │ │ ├── iptables.js │ │ │ ├── load.js │ │ │ ├── nftables.js │ │ │ ├── processes.js │ │ │ ├── routes.js │ │ │ ├── syslog.js │ │ │ └── wireless.js │ ├── root │ │ └── usr │ │ │ ├── libexec │ │ │ └── syslog-wrapper │ │ │ └── share │ │ │ ├── luci │ │ │ └── menu.d │ │ │ │ └── luci-mod-status.json │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ ├── luci-mod-status-index.json │ │ │ └── luci-mod-status.json │ ├── src │ │ ├── Makefile │ │ └── luci-bwc.c │ └── ucode │ │ └── template │ │ └── admin_status │ │ └── index.ut └── luci-mod-system │ ├── Makefile │ ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── system │ │ ├── crontab.js │ │ ├── dropbear.js │ │ ├── flash.js │ │ ├── led-trigger │ │ ├── default-on.js │ │ ├── heartbeat.js │ │ ├── netdev.js │ │ ├── none.js │ │ └── timer.js │ │ ├── leds.js │ │ ├── mounts.js │ │ ├── password.js │ │ ├── reboot.js │ │ ├── sshkeys.js │ │ ├── startup.js │ │ ├── system.js │ │ └── uhttpd.js │ └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-mod-system.json │ ├── rpcd │ └── acl.d │ │ └── luci-mod-system.json │ └── ucitrack │ ├── luci-mod-system-dropbear.json │ ├── luci-mod-system-mounts.json │ └── luci-mod-system-system.json ├── package.json ├── protocols ├── luci-proto-3g │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── 3g.js ├── luci-proto-autoip │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── autoip.js ├── luci-proto-batman-adv │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ ├── batadv.js │ │ └── batadv_hardif.js ├── luci-proto-external │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── external.js ├── luci-proto-gre │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ ├── gre.js │ │ ├── gretap.js │ │ ├── grev6.js │ │ └── grev6tap.js ├── luci-proto-hnet │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── hnet.js ├── luci-proto-ipip │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── ipip.js ├── luci-proto-ipv6 │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ ├── 464xlat.js │ │ ├── 6in4.js │ │ ├── 6rd.js │ │ ├── 6to4.js │ │ ├── dhcpv6.js │ │ ├── dslite.js │ │ ├── ipip6.js │ │ └── map.js ├── luci-proto-mbim │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── mbim.js ├── luci-proto-modemmanager │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── modemmanager_helper.js │ │ │ ├── protocol │ │ │ └── modemmanager.js │ │ │ └── view │ │ │ └── modemmanager │ │ │ └── status.js │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-proto-modemmanager.json │ │ └── rpcd │ │ └── acl.d │ │ └── luci-proto-modemmanager.json ├── luci-proto-ncm │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── ncm.js ├── luci-proto-nebula │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── nebula.js ├── luci-proto-openconnect │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── protocol │ │ │ └── openconnect.js │ └── root │ │ └── usr │ │ └── share │ │ └── rpcd │ │ ├── acl.d │ │ └── luci-openconnect.json │ │ └── ucode │ │ └── luci.openconnect ├── luci-proto-openfortivpn │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ └── protocol │ │ │ └── openfortivpn.js │ └── root │ │ └── usr │ │ └── share │ │ └── rpcd │ │ ├── acl.d │ │ └── luci-openfortivpn.json │ │ └── ucode │ │ └── luci.openfortivpn ├── luci-proto-ppp │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ ├── l2tp.js │ │ ├── ppp.js │ │ ├── pppoa.js │ │ ├── pppoe.js │ │ └── pptp.js ├── luci-proto-pppossh │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── pppossh.js ├── luci-proto-qmi │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── qmi.js ├── luci-proto-relay │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── relay.js ├── luci-proto-sstp │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── sstp.js ├── luci-proto-unet │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── unet.js ├── luci-proto-vpnc │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── vpnc.js ├── luci-proto-vti │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── vti.js ├── luci-proto-vxlan │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ ├── vxlan.js │ │ └── vxlan6.js ├── luci-proto-wireguard │ ├── Makefile │ ├── htdocs │ │ └── luci-static │ │ │ └── resources │ │ │ ├── protocol │ │ │ └── wireguard.js │ │ │ └── view │ │ │ └── wireguard │ │ │ └── status.js │ └── root │ │ └── usr │ │ └── share │ │ ├── luci │ │ └── menu.d │ │ │ └── luci-proto-wireguard.json │ │ └── rpcd │ │ ├── acl.d │ │ └── luci-wireguard.json │ │ └── ucode │ │ └── luci.wireguard ├── luci-proto-xfrm │ ├── Makefile │ └── htdocs │ │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── xfrm.js └── luci-proto-yggdrasil │ ├── Makefile │ ├── htdocs │ └── luci-static │ │ └── resources │ │ └── protocol │ │ └── yggdrasil.js │ └── root │ └── usr │ ├── libexec │ └── rpcd │ │ ├── luci.yggdrasil │ │ └── luci.yggdrasil-jumper │ └── share │ └── rpcd │ └── acl.d │ └── luci-proto-yggdrasil.json └── themes ├── luci-theme-bootstrap ├── Makefile ├── htdocs │ └── luci-static │ │ ├── bootstrap-dark │ │ ├── bootstrap-light │ │ ├── bootstrap │ │ ├── cascade.css │ │ ├── logo.svg │ │ ├── logo_48.png │ │ └── mobile.css │ │ └── resources │ │ ├── menu-bootstrap.js │ │ └── view │ │ └── bootstrap │ │ └── sysauth.js ├── root │ └── etc │ │ └── uci-defaults │ │ └── 30_luci-theme-bootstrap └── ucode │ └── template │ └── themes │ ├── bootstrap-dark │ ├── bootstrap-light │ └── bootstrap │ ├── footer.ut │ ├── header.ut │ └── sysauth.ut ├── luci-theme-material ├── Makefile ├── htdocs │ └── luci-static │ │ ├── material │ │ ├── brand.png │ │ ├── cascade.css │ │ ├── custom.css │ │ ├── icons │ │ │ ├── arrow.svg │ │ │ ├── logout.svg │ │ │ ├── menu.svg │ │ │ └── spinner.svg │ │ ├── logo.svg │ │ └── logo_48.png │ │ └── resources │ │ └── menu-material.js ├── root │ └── etc │ │ └── uci-defaults │ │ └── 30_luci-theme-material └── ucode │ └── template │ └── themes │ └── material │ ├── footer.ut │ └── header.ut ├── luci-theme-openwrt-2020 ├── Makefile ├── htdocs │ └── luci-static │ │ ├── openwrt2020 │ │ ├── GalanoGrotesqueW00-Regular.woff2 │ │ ├── cascade.css │ │ ├── logo.png │ │ ├── logo.svg │ │ └── spinner.svg │ │ └── resources │ │ └── menu-openwrt2020.js ├── root │ └── etc │ │ └── uci-defaults │ │ └── 30_luci-theme-openwrt-2020 └── ucode │ └── template │ └── themes │ └── openwrt2020 │ ├── footer.ut │ └── header.ut └── luci-theme-openwrt ├── Makefile ├── htdocs └── luci-static │ ├── openwrt.org │ ├── cascade.css │ └── tabbg.png │ └── resources │ └── menu-openwrt.js ├── root └── etc │ └── uci-defaults │ └── 30_luci-theme-openwrt └── ucode └── template └── themes └── openwrt.org ├── footer.ut └── header.ut /.github/ISSUE_TEMPLATE/01-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/.github/ISSUE_TEMPLATE/01-bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/.github/ISSUE_TEMPLATE/02-feature.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci_helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/.github/workflows/ci_helpers.sh -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/formal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/.github/workflows/formal.yml -------------------------------------------------------------------------------- /.github/workflows/jsdoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/.github/workflows/jsdoc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/README.md -------------------------------------------------------------------------------- /applications/luci-app-acl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/Makefile -------------------------------------------------------------------------------- /applications/luci-app-acl/po/ar/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/ar/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/bg/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/bg/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/bs/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/bs/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/ca/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/ca/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/cs/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/cs/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/cy/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/cy/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/da/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/da/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/de/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/de/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/el/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/el/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/es/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/es/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/fa/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/fa/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/fi/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/fi/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/fr/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/fr/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/ga/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/ga/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/he/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/he/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/hi/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/hi/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/hu/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/hu/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/id/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/id/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/it/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/it/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/ja/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/ja/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/ko/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/ko/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/lt/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/lt/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/mr/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/mr/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/ms/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/ms/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/nl/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/nl/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/pl/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/pl/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/pt/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/pt/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/ro/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/ro/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/ru/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/ru/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/si/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/si/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/sk/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/sk/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/sl/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/sl/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/sv/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/sv/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/tr/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/tr/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/uk/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/uk/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/vi/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/vi/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acl/po/yua/acl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acl/po/yua/acl.po -------------------------------------------------------------------------------- /applications/luci-app-acme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/Makefile -------------------------------------------------------------------------------- /applications/luci-app-acme/po/ar/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/ar/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/bg/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/bg/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/ca/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/ca/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/cs/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/cs/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/da/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/da/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/de/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/de/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/el/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/el/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/es/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/es/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/fa/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/fa/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/fi/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/fi/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/fr/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/fr/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/ga/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/ga/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/he/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/he/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/hi/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/hi/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/hu/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/hu/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/id/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/id/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/it/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/it/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/ja/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/ja/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/ko/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/ko/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/lt/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/lt/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/mr/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/mr/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/ms/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/ms/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/nl/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/nl/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/pl/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/pl/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/pt/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/pt/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/ro/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/ro/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/ru/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/ru/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/si/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/si/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/sk/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/sk/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/sv/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/sv/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/tr/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/tr/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/uk/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/uk/acme.po -------------------------------------------------------------------------------- /applications/luci-app-acme/po/vi/acme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-acme/po/vi/acme.po -------------------------------------------------------------------------------- /applications/luci-app-adblock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-adblock/Makefile -------------------------------------------------------------------------------- /applications/luci-app-alist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-alist/Makefile -------------------------------------------------------------------------------- /applications/luci-app-apinger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-apinger/Makefile -------------------------------------------------------------------------------- /applications/luci-app-aria2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-aria2/Makefile -------------------------------------------------------------------------------- /applications/luci-app-babeld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-babeld/Makefile -------------------------------------------------------------------------------- /applications/luci-app-banip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-banip/Makefile -------------------------------------------------------------------------------- /applications/luci-app-bcp38/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bcp38/Makefile -------------------------------------------------------------------------------- /applications/luci-app-bmx7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/Makefile -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/ar/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/ar/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/bg/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/bg/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/ca/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/ca/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/cs/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/cs/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/da/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/da/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/de/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/de/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/el/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/el/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/es/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/es/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/fa/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/fa/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/fi/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/fi/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/fr/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/fr/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/ga/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/ga/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/he/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/he/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/hi/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/hi/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/hu/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/hu/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/it/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/it/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/ja/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/ja/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/ko/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/ko/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/lt/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/lt/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/mr/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/mr/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/ms/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/ms/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/nl/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/nl/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/pl/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/pl/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/pt/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/pt/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/ro/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/ro/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/ru/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/ru/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/sk/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/sk/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/sv/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/sv/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/tr/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/tr/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/uk/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/uk/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-bmx7/po/vi/bmx7.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-bmx7/po/vi/bmx7.po -------------------------------------------------------------------------------- /applications/luci-app-clamav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-clamav/Makefile -------------------------------------------------------------------------------- /applications/luci-app-commands/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-commands/Makefile -------------------------------------------------------------------------------- /applications/luci-app-cshark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-cshark/Makefile -------------------------------------------------------------------------------- /applications/luci-app-dawn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-dawn/Makefile -------------------------------------------------------------------------------- /applications/luci-app-dcwapd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-dcwapd/Makefile -------------------------------------------------------------------------------- /applications/luci-app-ddns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/Makefile -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/ar/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/ar/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/bg/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/bg/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/ca/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/ca/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/cs/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/cs/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/da/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/da/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/de/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/de/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/el/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/el/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/es/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/es/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/fa/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/fa/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/fi/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/fi/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/fr/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/fr/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/ga/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/ga/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/he/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/he/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/hi/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/hi/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/hu/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/hu/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/it/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/it/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/ja/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/ja/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/ko/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/ko/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/lt/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/lt/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/mr/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/mr/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/ms/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/ms/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/nl/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/nl/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/pl/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/pl/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/pt/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/pt/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/ro/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/ro/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/ru/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/ru/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/sk/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/sk/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/sv/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/sv/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/tr/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/tr/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/uk/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/uk/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-ddns/po/vi/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ddns/po/vi/ddns.po -------------------------------------------------------------------------------- /applications/luci-app-dockerman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-dockerman/Makefile -------------------------------------------------------------------------------- /applications/luci-app-dump1090/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-dump1090/Makefile -------------------------------------------------------------------------------- /applications/luci-app-dynapoint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-dynapoint/Makefile -------------------------------------------------------------------------------- /applications/luci-app-email/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-email/Makefile -------------------------------------------------------------------------------- /applications/luci-app-eoip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/Makefile -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/ar/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/ar/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/bg/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/bg/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/ca/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/ca/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/cs/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/cs/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/da/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/da/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/de/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/de/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/el/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/el/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/es/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/es/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/fi/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/fi/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/fr/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/fr/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/ga/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/ga/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/he/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/he/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/hi/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/hi/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/hu/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/hu/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/it/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/it/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/ja/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/ja/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/ko/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/ko/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/lt/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/lt/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/mr/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/mr/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/ms/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/ms/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/nl/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/nl/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/pl/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/pl/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/pt/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/pt/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/ro/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/ro/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/ru/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/ru/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/sk/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/sk/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/sv/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/sv/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/tr/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/tr/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/uk/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/uk/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-eoip/po/vi/eoip.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-eoip/po/vi/eoip.po -------------------------------------------------------------------------------- /applications/luci-app-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-example/Makefile -------------------------------------------------------------------------------- /applications/luci-app-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-example/README.md -------------------------------------------------------------------------------- /applications/luci-app-example/YAML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-example/YAML.md -------------------------------------------------------------------------------- /applications/luci-app-firewall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-firewall/Makefile -------------------------------------------------------------------------------- /applications/luci-app-frpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/Makefile -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/ar/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/ar/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/bg/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/bg/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/ca/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/ca/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/cs/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/cs/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/da/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/da/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/de/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/de/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/el/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/el/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/es/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/es/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/fi/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/fi/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/fr/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/fr/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/ga/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/ga/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/he/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/he/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/hi/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/hi/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/hu/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/hu/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/it/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/it/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/ja/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/ja/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/ko/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/ko/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/lt/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/lt/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/mr/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/mr/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/ms/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/ms/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/nl/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/nl/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/pl/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/pl/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/pt/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/pt/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/ro/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/ro/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/ru/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/ru/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/sk/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/sk/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/sv/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/sv/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/tr/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/tr/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/uk/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/uk/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frpc/po/vi/frpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frpc/po/vi/frpc.po -------------------------------------------------------------------------------- /applications/luci-app-frps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/Makefile -------------------------------------------------------------------------------- /applications/luci-app-frps/po/ar/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/ar/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/bg/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/bg/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/ca/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/ca/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/cs/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/cs/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/da/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/da/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/de/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/de/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/el/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/el/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/es/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/es/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/fi/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/fi/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/fr/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/fr/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/ga/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/ga/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/he/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/he/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/hi/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/hi/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/hu/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/hu/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/it/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/it/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/ja/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/ja/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/ko/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/ko/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/lt/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/lt/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/mr/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/mr/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/ms/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/ms/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/nl/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/nl/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/pl/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/pl/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/pt/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/pt/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/ro/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/ro/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/ru/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/ru/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/sk/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/sk/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/sv/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/sv/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/tr/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/tr/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/uk/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/uk/frps.po -------------------------------------------------------------------------------- /applications/luci-app-frps/po/vi/frps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-frps/po/vi/frps.po -------------------------------------------------------------------------------- /applications/luci-app-fwknopd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-fwknopd/Makefile -------------------------------------------------------------------------------- /applications/luci-app-hd-idle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-hd-idle/Makefile -------------------------------------------------------------------------------- /applications/luci-app-ksmbd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ksmbd/Makefile -------------------------------------------------------------------------------- /applications/luci-app-libreswan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-libreswan/Makefile -------------------------------------------------------------------------------- /applications/luci-app-lldpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lldpd/Makefile -------------------------------------------------------------------------------- /applications/luci-app-ltqtapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/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/rdmitry0911/luci/HEAD/applications/luci-app-lxc/Makefile -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/ar/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/ar/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/bg/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/bg/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/ca/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/ca/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/cs/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/cs/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/da/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/da/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/de/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/de/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/el/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/el/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/es/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/es/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/fi/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/fi/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/fr/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/fr/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/ga/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/ga/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/he/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/he/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/hi/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/hi/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/hu/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/hu/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/it/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/it/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/ja/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/ja/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/ko/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/ko/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/lt/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/lt/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/mr/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/mr/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/ms/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/ms/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/nl/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/nl/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/pl/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/pl/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/pt/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/pt/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/ro/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/ro/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/ru/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/ru/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/sk/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/sk/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/sv/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/sv/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/tr/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/tr/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/uk/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/uk/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/vi/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/vi/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-lxc/po/yua/lxc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-lxc/po/yua/lxc.po -------------------------------------------------------------------------------- /applications/luci-app-minidlna/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-minidlna/Makefile -------------------------------------------------------------------------------- /applications/luci-app-mosquitto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-mosquitto/Makefile -------------------------------------------------------------------------------- /applications/luci-app-mwan3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-mwan3/Makefile -------------------------------------------------------------------------------- /applications/luci-app-natmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-natmap/Makefile -------------------------------------------------------------------------------- /applications/luci-app-nextdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nextdns/Makefile -------------------------------------------------------------------------------- /applications/luci-app-nft-qos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nft-qos/Makefile -------------------------------------------------------------------------------- /applications/luci-app-nlbwmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nlbwmon/Makefile -------------------------------------------------------------------------------- /applications/luci-app-nut/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/Makefile -------------------------------------------------------------------------------- /applications/luci-app-nut/po/ar/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/ar/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/bg/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/bg/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/ca/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/ca/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/cs/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/cs/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/da/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/da/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/de/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/de/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/el/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/el/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/es/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/es/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/fi/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/fi/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/fr/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/fr/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/ga/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/ga/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/he/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/he/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/hi/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/hi/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/hu/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/hu/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/it/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/it/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/ja/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/ja/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/ko/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/ko/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/lt/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/lt/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/mr/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/mr/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/ms/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/ms/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/nl/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/nl/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/pl/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/pl/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/pt/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/pt/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/ro/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/ro/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/ru/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/ru/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/sgs/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/sgs/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/sk/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/sk/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/sr/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/sr/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/sv/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/sv/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/tr/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/tr/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/uk/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/uk/nut.po -------------------------------------------------------------------------------- /applications/luci-app-nut/po/vi/nut.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-nut/po/vi/nut.po -------------------------------------------------------------------------------- /applications/luci-app-ocserv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/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-viz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr-viz/Makefile -------------------------------------------------------------------------------- /applications/luci-app-olsr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/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/ar/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/ar/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/bg/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/bg/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/ca/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/ca/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/cs/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/cs/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/da/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/da/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/de/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/de/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/el/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/el/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/es/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/es/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/fi/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/fi/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/fr/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/fr/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/ga/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/ga/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/he/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/he/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/hi/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/hi/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/hu/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/hu/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/it/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/it/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/ja/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/ja/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/ko/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/ko/olsr.po -------------------------------------------------------------------------------- /applications/luci-app-olsr/po/lt/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-olsr/po/lt/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/rdmitry0911/luci/HEAD/applications/luci-app-openvpn/Makefile -------------------------------------------------------------------------------- /applications/luci-app-p910nd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-p910nd/Makefile -------------------------------------------------------------------------------- /applications/luci-app-pbr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/Makefile -------------------------------------------------------------------------------- /applications/luci-app-pbr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/README.md -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/ar/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/ar/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/bg/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/bg/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/ca/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/ca/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/cs/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/cs/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/da/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/da/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/de/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/de/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/el/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/el/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/es/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/es/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/fi/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/fi/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/fr/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/fr/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/ga/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/ga/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/he/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/he/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/hi/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/hi/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/hu/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/hu/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/it/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/it/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/ja/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/ja/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/ko/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/ko/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/lt/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/lt/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/mr/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/mr/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/ms/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/ms/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/nl/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/nl/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/pl/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/pl/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/pt/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/pt/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/ro/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/ro/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/ru/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/ru/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/sk/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/sk/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/sv/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/sv/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/tr/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/tr/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/uk/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/uk/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-pbr/po/vi/pbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-pbr/po/vi/pbr.po -------------------------------------------------------------------------------- /applications/luci-app-privoxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-privoxy/Makefile -------------------------------------------------------------------------------- /applications/luci-app-qos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/Makefile -------------------------------------------------------------------------------- /applications/luci-app-qos/po/ar/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/ar/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/bg/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/bg/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/ca/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/ca/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/cs/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/cs/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/da/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/da/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/de/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/de/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/el/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/el/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/es/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/es/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/fi/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/fi/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/fr/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/fr/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/ga/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/ga/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/he/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/he/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/hi/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/hi/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/hu/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/hu/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/it/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/it/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/ja/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/ja/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/ko/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/ko/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/lt/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/lt/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/mr/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/mr/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/ms/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/ms/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/nl/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/nl/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/pl/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/pl/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/pt/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/pt/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/ro/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/ro/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/ru/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/ru/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/sk/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/sk/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/sv/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/sv/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/tr/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/tr/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/uk/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/uk/qos.po -------------------------------------------------------------------------------- /applications/luci-app-qos/po/vi/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-qos/po/vi/qos.po -------------------------------------------------------------------------------- /applications/luci-app-samba4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-samba4/Makefile -------------------------------------------------------------------------------- /applications/luci-app-ser2net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ser2net/Makefile -------------------------------------------------------------------------------- /applications/luci-app-shadowsocks-libev/po/lt/shadowsocks-libev.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/luci-app-snmpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-snmpd/Makefile -------------------------------------------------------------------------------- /applications/luci-app-splash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-splash/Makefile -------------------------------------------------------------------------------- /applications/luci-app-splash/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-splash/README -------------------------------------------------------------------------------- /applications/luci-app-splash/root/etc/config/luci_splash: -------------------------------------------------------------------------------- 1 | config core general 2 | option leasetime 1 -------------------------------------------------------------------------------- /applications/luci-app-sqm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/Makefile -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/ar/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/ar/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/bg/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/bg/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/ca/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/ca/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/cs/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/cs/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/da/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/da/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/de/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/de/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/el/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/el/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/es/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/es/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/fi/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/fi/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/fr/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/fr/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/ga/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/ga/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/he/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/he/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/hi/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/hi/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/hu/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/hu/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/it/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/it/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/ja/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/ja/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/ko/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/ko/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/lt/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/lt/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/mr/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/mr/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/ms/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/ms/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/nl/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/nl/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/pl/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/pl/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/pt/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/pt/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/ro/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/ro/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/ru/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/ru/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/sk/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/sk/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/sv/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/sv/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/tr/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/tr/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/uk/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/uk/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-sqm/po/vi/sqm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-sqm/po/vi/sqm.po -------------------------------------------------------------------------------- /applications/luci-app-squid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-squid/Makefile -------------------------------------------------------------------------------- /applications/luci-app-tor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/Makefile -------------------------------------------------------------------------------- /applications/luci-app-tor/po/ar/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/ar/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/bg/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/bg/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/ca/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/ca/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/cs/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/cs/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/da/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/da/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/de/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/de/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/el/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/el/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/es/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/es/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/fi/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/fi/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/fr/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/fr/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/ga/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/ga/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/he/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/he/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/hi/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/hi/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/hu/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/hu/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/it/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/it/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/ja/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/ja/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/ko/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/ko/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/lt/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/lt/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/mr/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/mr/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/ms/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/ms/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/nl/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/nl/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/pl/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/pl/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/pt/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/pt/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/ro/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/ro/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/ru/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/ru/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/sk/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/sk/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/sv/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/sv/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/tr/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/tr/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/uk/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/uk/tor.po -------------------------------------------------------------------------------- /applications/luci-app-tor/po/vi/tor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-tor/po/vi/tor.po -------------------------------------------------------------------------------- /applications/luci-app-ttyd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-ttyd/Makefile -------------------------------------------------------------------------------- /applications/luci-app-udpxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-udpxy/Makefile -------------------------------------------------------------------------------- /applications/luci-app-uhttpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-uhttpd/Makefile -------------------------------------------------------------------------------- /applications/luci-app-unbound/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-unbound/Makefile -------------------------------------------------------------------------------- /applications/luci-app-upnp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-upnp/Makefile -------------------------------------------------------------------------------- /applications/luci-app-usteer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-usteer/Makefile -------------------------------------------------------------------------------- /applications/luci-app-v2raya/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-v2raya/Makefile -------------------------------------------------------------------------------- /applications/luci-app-vnstat2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-vnstat2/Makefile -------------------------------------------------------------------------------- /applications/luci-app-wol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/Makefile -------------------------------------------------------------------------------- /applications/luci-app-wol/po/ar/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/ar/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/bg/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/bg/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/ca/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/ca/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/cs/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/cs/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/da/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/da/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/de/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/de/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/el/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/el/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/es/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/es/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/fi/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/fi/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/fr/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/fr/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/ga/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/ga/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/he/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/he/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/hi/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/hi/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/hu/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/hu/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/id/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/id/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/it/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/it/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/ja/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/ja/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/ko/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/ko/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/lt/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/lt/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/mr/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/mr/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/ms/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/ms/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/nl/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/nl/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/pl/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/pl/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/pt/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/pt/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/ro/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/ro/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/ru/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/ru/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/sk/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/sk/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/sv/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/sv/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/tr/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/tr/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/uk/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/uk/wol.po -------------------------------------------------------------------------------- /applications/luci-app-wol/po/vi/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-wol/po/vi/wol.po -------------------------------------------------------------------------------- /applications/luci-app-xfrpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-xfrpc/Makefile -------------------------------------------------------------------------------- /applications/luci-app-xinetd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/applications/luci-app-xinetd/Makefile -------------------------------------------------------------------------------- /collections/luci-lib-docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/collections/luci-lib-docker/Makefile -------------------------------------------------------------------------------- /collections/luci-light/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/collections/luci-light/Makefile -------------------------------------------------------------------------------- /collections/luci-nginx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/collections/luci-nginx/Makefile -------------------------------------------------------------------------------- /collections/luci-ssl-openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/collections/luci-ssl-openssl/Makefile -------------------------------------------------------------------------------- /collections/luci-ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/collections/luci-ssl/Makefile -------------------------------------------------------------------------------- /collections/luci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/collections/luci/Makefile -------------------------------------------------------------------------------- /contrib/package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/contrib/package/Makefile -------------------------------------------------------------------------------- /contrib/package/csstidy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/contrib/package/csstidy/Makefile -------------------------------------------------------------------------------- /contrib/package/lucihttp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/contrib/package/lucihttp/Makefile -------------------------------------------------------------------------------- /contrib/package/ucode-mod-lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/contrib/package/ucode-mod-lua/Makefile -------------------------------------------------------------------------------- /docs/CBI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/CBI.md -------------------------------------------------------------------------------- /docs/JsonRpcHowTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/JsonRpcHowTo.md -------------------------------------------------------------------------------- /docs/LMO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/LMO.md -------------------------------------------------------------------------------- /docs/LuCI-0.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/LuCI-0.10.md -------------------------------------------------------------------------------- /docs/Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/Modules.md -------------------------------------------------------------------------------- /docs/ModulesHowTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/ModulesHowTo.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/Templates.md -------------------------------------------------------------------------------- /docs/ThemesHowTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/ThemesHowTo.md -------------------------------------------------------------------------------- /docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/index.html -------------------------------------------------------------------------------- /docs/api/luadoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/luadoc.css -------------------------------------------------------------------------------- /docs/api/modules/luci.dispatcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.dispatcher.html -------------------------------------------------------------------------------- /docs/api/modules/luci.http.date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.http.date.html -------------------------------------------------------------------------------- /docs/api/modules/luci.http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.http.html -------------------------------------------------------------------------------- /docs/api/modules/luci.http.mime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.http.mime.html -------------------------------------------------------------------------------- /docs/api/modules/luci.i18n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.i18n.html -------------------------------------------------------------------------------- /docs/api/modules/luci.ip.cidr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.ip.cidr.html -------------------------------------------------------------------------------- /docs/api/modules/luci.ip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.ip.html -------------------------------------------------------------------------------- /docs/api/modules/luci.json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.json.html -------------------------------------------------------------------------------- /docs/api/modules/luci.jsonc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.jsonc.html -------------------------------------------------------------------------------- /docs/api/modules/luci.model.ipkg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.model.ipkg.html -------------------------------------------------------------------------------- /docs/api/modules/luci.model.uci.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.model.uci.html -------------------------------------------------------------------------------- /docs/api/modules/luci.rpcc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.rpcc.html -------------------------------------------------------------------------------- /docs/api/modules/luci.rpcc.ruci.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.rpcc.ruci.html -------------------------------------------------------------------------------- /docs/api/modules/luci.sys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.sys.html -------------------------------------------------------------------------------- /docs/api/modules/luci.sys.init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.sys.init.html -------------------------------------------------------------------------------- /docs/api/modules/luci.sys.net.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.sys.net.html -------------------------------------------------------------------------------- /docs/api/modules/luci.sys.process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.sys.process.html -------------------------------------------------------------------------------- /docs/api/modules/luci.sys.user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.sys.user.html -------------------------------------------------------------------------------- /docs/api/modules/luci.sys.wifi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.sys.wifi.html -------------------------------------------------------------------------------- /docs/api/modules/luci.util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.util.html -------------------------------------------------------------------------------- /docs/api/modules/luci.xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/luci.xml.html -------------------------------------------------------------------------------- /docs/api/modules/nixio.CHANGELOG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/nixio.CHANGELOG.html -------------------------------------------------------------------------------- /docs/api/modules/nixio.CryptoHash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/nixio.CryptoHash.html -------------------------------------------------------------------------------- /docs/api/modules/nixio.File.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/nixio.File.html -------------------------------------------------------------------------------- /docs/api/modules/nixio.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/nixio.README.html -------------------------------------------------------------------------------- /docs/api/modules/nixio.Socket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/nixio.Socket.html -------------------------------------------------------------------------------- /docs/api/modules/nixio.TLSContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/nixio.TLSContext.html -------------------------------------------------------------------------------- /docs/api/modules/nixio.TLSSocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/nixio.TLSSocket.html -------------------------------------------------------------------------------- /docs/api/modules/nixio.UnifiedIO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/nixio.UnifiedIO.html -------------------------------------------------------------------------------- /docs/api/modules/nixio.bin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/nixio.bin.html -------------------------------------------------------------------------------- /docs/api/modules/nixio.bit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/nixio.bit.html -------------------------------------------------------------------------------- /docs/api/modules/nixio.crypto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/nixio.crypto.html -------------------------------------------------------------------------------- /docs/api/modules/nixio.fs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/nixio.fs.html -------------------------------------------------------------------------------- /docs/api/modules/nixio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/api/modules/nixio.html -------------------------------------------------------------------------------- /docs/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/i18n.md -------------------------------------------------------------------------------- /docs/jsapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/docs/jsapi/README.md -------------------------------------------------------------------------------- /jsdoc.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/jsdoc.conf.json -------------------------------------------------------------------------------- /libs/luci-lib-base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-base/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-base/luasrc/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-base/luasrc/debug.lua -------------------------------------------------------------------------------- /libs/luci-lib-base/luasrc/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-base/luasrc/http.lua -------------------------------------------------------------------------------- /libs/luci-lib-base/luasrc/http.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-base/luasrc/http.luadoc -------------------------------------------------------------------------------- /libs/luci-lib-base/luasrc/ltn12.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-base/luasrc/ltn12.lua -------------------------------------------------------------------------------- /libs/luci-lib-base/luasrc/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-base/luasrc/util.lua -------------------------------------------------------------------------------- /libs/luci-lib-base/luasrc/util.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-base/luasrc/util.luadoc -------------------------------------------------------------------------------- /libs/luci-lib-chartjs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-chartjs/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-httpclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-httpclient/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-httpprotoutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-httpprotoutils/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-ip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-ip/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-ip/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-ip/src/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-ip/src/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-ip/src/ip.c -------------------------------------------------------------------------------- /libs/luci-lib-ip/src/ip.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-ip/src/ip.luadoc -------------------------------------------------------------------------------- /libs/luci-lib-ipkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-ipkg/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-iptparser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-iptparser/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-json/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-json/luasrc/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-json/luasrc/json.lua -------------------------------------------------------------------------------- /libs/luci-lib-json/luasrc/json.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-json/luasrc/json.luadoc -------------------------------------------------------------------------------- /libs/luci-lib-jsonc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-jsonc/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-jsonc/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-jsonc/src/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-jsonc/src/jsonc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-jsonc/src/jsonc.c -------------------------------------------------------------------------------- /libs/luci-lib-jsonc/src/jsonc.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-jsonc/src/jsonc.luadoc -------------------------------------------------------------------------------- /libs/luci-lib-nixio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/.gitignore -------------------------------------------------------------------------------- /libs/luci-lib-nixio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/LICENSE -------------------------------------------------------------------------------- /libs/luci-lib-nixio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/NOTICE -------------------------------------------------------------------------------- /libs/luci-lib-nixio/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/README -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/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/crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/aes.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/md2.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/md5.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/rc4.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/crypto/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/crypto/rsa.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/httpd/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/httpd/proc.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/samples/java/manifest.mf: -------------------------------------------------------------------------------- 1 | Main-Class: axssl 2 | -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/asn1.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/cert.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/loader.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/p12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/p12.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/ssl.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/tls1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/tls1.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/axTLS/ssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/axTLS/ssl/tls1.h -------------------------------------------------------------------------------- /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/rdmitry0911/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/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/docsrc/README.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/docsrc/README.lua -------------------------------------------------------------------------------- /libs/luci-lib-nixio/docsrc/nixio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/docsrc/nixio.lua -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/address.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/address.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/axtls-compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/axtls-compat.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/axtls-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/axtls-compat.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/binary.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/bind.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/bit.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/file.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/fs.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/io.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/mingw-compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/mingw-compat.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/mingw-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/mingw-compat.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/nixio-tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/nixio-tls.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/nixio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/nixio.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/nixio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/nixio.h -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/poll.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/process.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/protoent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/protoent.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/socket.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/sockopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/sockopt.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/splice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/splice.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/syslog.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/tls-context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/tls-context.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/tls-crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/tls-crypto.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/tls-socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/tls-socket.c -------------------------------------------------------------------------------- /libs/luci-lib-nixio/src/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-nixio/src/user.c -------------------------------------------------------------------------------- /libs/luci-lib-px5g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-px5g/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-px5g/lua/px5g/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-px5g/lua/px5g/util.lua -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-px5g/src/Makefile -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/library/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-px5g/src/library/rsa.c -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/library/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-px5g/src/library/sha1.c -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/polarssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-px5g/src/polarssl/rsa.h -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/polarssl/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-px5g/src/polarssl/sha1.h -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/polarssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-px5g/src/polarssl/x509.h -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/px5g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-px5g/src/px5g.c -------------------------------------------------------------------------------- /libs/luci-lib-px5g/src/px5g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-px5g/src/px5g.h -------------------------------------------------------------------------------- /libs/luci-lib-uqr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/luci-lib-uqr/Makefile -------------------------------------------------------------------------------- /libs/rpcd-mod-luci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/rpcd-mod-luci/Makefile -------------------------------------------------------------------------------- /libs/rpcd-mod-luci/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/rpcd-mod-luci/src/CMakeLists.txt -------------------------------------------------------------------------------- /libs/rpcd-mod-luci/src/luci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/rpcd-mod-luci/src/luci.c -------------------------------------------------------------------------------- /libs/rpcd-mod-rad2-enc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/rpcd-mod-rad2-enc/Makefile -------------------------------------------------------------------------------- /libs/rpcd-mod-rad2-enc/files/rad2-enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/rpcd-mod-rad2-enc/files/rad2-enc -------------------------------------------------------------------------------- /libs/rpcd-mod-rrdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/rpcd-mod-rrdns/Makefile -------------------------------------------------------------------------------- /libs/rpcd-mod-rrdns/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/rpcd-mod-rrdns/src/CMakeLists.txt -------------------------------------------------------------------------------- /libs/rpcd-mod-rrdns/src/rrdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/rpcd-mod-rrdns/src/rrdns.c -------------------------------------------------------------------------------- /libs/rpcd-mod-rrdns/src/rrdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/libs/rpcd-mod-rrdns/src/rrdns.h -------------------------------------------------------------------------------- /luci.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/luci.mk -------------------------------------------------------------------------------- /modules/luci-base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/Makefile -------------------------------------------------------------------------------- /modules/luci-base/htdocs/cgi-bin/luci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/htdocs/cgi-bin/luci -------------------------------------------------------------------------------- /modules/luci-base/htdocs/luci-static/resources/xhr.js: -------------------------------------------------------------------------------- 1 | /* replaced by luci.js */ 2 | -------------------------------------------------------------------------------- /modules/luci-base/po/ar/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/ar/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ast/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/ast/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/bg/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/bg/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/bn_BD/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/bn_BD/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ca/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/ca/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/cs/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/cs/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/da/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/da/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/de/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/de/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/el/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/el/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/es/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/es/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/fa/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/fa/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/fi/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/fi/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/fil/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/fil/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/fr/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/fr/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ga/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/ga/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/he/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/he/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/hi/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/hi/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/hu/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/hu/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/id/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/id/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/it/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/it/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ja/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/ja/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ko/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/ko/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/lt/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/lt/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ml/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/ml/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/mr/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/mr/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ms/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/ms/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/nb_NO/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/nb_NO/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/nl/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/nl/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/pl/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/pl/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/pt/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/pt/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/pt_BR/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/pt_BR/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ro/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/ro/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ru/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/ru/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/sk/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/sk/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/sv/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/sv/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/tr/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/tr/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/uk/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/uk/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/ur/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/ur/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/vi/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/vi/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/yua/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/yua/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/zh_Hans/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/zh_Hans/base.po -------------------------------------------------------------------------------- /modules/luci-base/po/zh_Hant/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/po/zh_Hant/base.po -------------------------------------------------------------------------------- /modules/luci-base/root/etc/config/luci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/root/etc/config/luci -------------------------------------------------------------------------------- /modules/luci-base/root/etc/luci-uploads/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/luci-base/root/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/root/www/index.html -------------------------------------------------------------------------------- /modules/luci-base/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/src/Makefile -------------------------------------------------------------------------------- /modules/luci-base/src/contrib/lemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/src/contrib/lemon.c -------------------------------------------------------------------------------- /modules/luci-base/src/contrib/lempar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/src/contrib/lempar.c -------------------------------------------------------------------------------- /modules/luci-base/src/jsmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/src/jsmin.c -------------------------------------------------------------------------------- /modules/luci-base/src/lib/lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/src/lib/lmo.c -------------------------------------------------------------------------------- /modules/luci-base/src/lib/lmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/src/lib/lmo.h -------------------------------------------------------------------------------- /modules/luci-base/src/lib/luci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/src/lib/luci.c -------------------------------------------------------------------------------- /modules/luci-base/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/src/po2lmo.c -------------------------------------------------------------------------------- /modules/luci-base/ucode/dispatcher.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/ucode/dispatcher.uc -------------------------------------------------------------------------------- /modules/luci-base/ucode/http.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/ucode/http.uc -------------------------------------------------------------------------------- /modules/luci-base/ucode/runtime.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/ucode/runtime.uc -------------------------------------------------------------------------------- /modules/luci-base/ucode/sys.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/ucode/sys.uc -------------------------------------------------------------------------------- /modules/luci-base/ucode/uhttpd.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/ucode/uhttpd.uc -------------------------------------------------------------------------------- /modules/luci-base/ucode/zoneinfo.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-base/ucode/zoneinfo.uc -------------------------------------------------------------------------------- /modules/luci-compat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-compat/Makefile -------------------------------------------------------------------------------- /modules/luci-compat/luasrc/cbi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-compat/luasrc/cbi.lua -------------------------------------------------------------------------------- /modules/luci-compat/luasrc/view/cbi/cell_valuefooter.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/luci-compat/luasrc/view/cbi/compound.htm: -------------------------------------------------------------------------------- 1 | <%- self:render_children() %> 2 | -------------------------------------------------------------------------------- /modules/luci-lua-runtime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-lua-runtime/Makefile -------------------------------------------------------------------------------- /modules/luci-lua-runtime/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-lua-runtime/src/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-admin-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-admin-full/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-battstatus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-battstatus/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-dashboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dashboard/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-dsl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/ar/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/ar/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/bg/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/bg/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/bn_BD/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/bn_BD/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/ca/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/ca/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/cs/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/cs/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/da/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/da/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/de/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/de/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/el/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/el/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/es/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/es/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/fi/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/fi/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/fr/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/fr/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/ga/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/ga/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/he/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/he/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/hi/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/hi/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/hu/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/hu/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/it/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/it/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/ja/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/ja/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/ko/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/ko/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/lt/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/lt/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/mr/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/mr/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/ms/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/ms/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/nb_NO/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/nb_NO/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/nl/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/nl/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/pl/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/pl/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/pt/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/pt/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/pt_BR/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/pt_BR/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/ro/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/ro/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/ru/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/ru/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/sk/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/sk/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/sv/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/sv/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/tr/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/tr/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/uk/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/uk/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/vi/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/vi/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/zh_Hans/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/zh_Hans/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-dsl/po/zh_Hant/dsl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-dsl/po/zh_Hant/dsl.po -------------------------------------------------------------------------------- /modules/luci-mod-network/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-network/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-rpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-rpc/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-status/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-status/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-status/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-status/src/Makefile -------------------------------------------------------------------------------- /modules/luci-mod-status/src/luci-bwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-status/src/luci-bwc.c -------------------------------------------------------------------------------- /modules/luci-mod-system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/modules/luci-mod-system/Makefile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/package.json -------------------------------------------------------------------------------- /protocols/luci-proto-3g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-3g/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-autoip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-autoip/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-external/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-external/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-gre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-gre/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-hnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-hnet/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-ipip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-ipip/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-ipv6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-ipv6/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-mbim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-mbim/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-ncm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-ncm/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-nebula/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-nebula/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-ppp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-ppp/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-pppossh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-pppossh/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-qmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-qmi/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-relay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-relay/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-sstp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-sstp/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-unet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-unet/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-vpnc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-vpnc/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-vti/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-vti/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-vxlan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-vxlan/Makefile -------------------------------------------------------------------------------- /protocols/luci-proto-xfrm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/protocols/luci-proto-xfrm/Makefile -------------------------------------------------------------------------------- /themes/luci-theme-bootstrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/themes/luci-theme-bootstrap/Makefile -------------------------------------------------------------------------------- /themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap-dark: -------------------------------------------------------------------------------- 1 | bootstrap -------------------------------------------------------------------------------- /themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap-light: -------------------------------------------------------------------------------- 1 | bootstrap -------------------------------------------------------------------------------- /themes/luci-theme-bootstrap/ucode/template/themes/bootstrap-dark: -------------------------------------------------------------------------------- 1 | bootstrap -------------------------------------------------------------------------------- /themes/luci-theme-bootstrap/ucode/template/themes/bootstrap-light: -------------------------------------------------------------------------------- 1 | bootstrap -------------------------------------------------------------------------------- /themes/luci-theme-material/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/themes/luci-theme-material/Makefile -------------------------------------------------------------------------------- /themes/luci-theme-openwrt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmitry0911/luci/HEAD/themes/luci-theme-openwrt/Makefile --------------------------------------------------------------------------------