├── README.md ├── luci-app-nettask ├── Makefile ├── controller │ └── NetTask.lua ├── etc │ ├── config │ │ └── nettask │ ├── init.d │ │ └── nettask │ └── nettask │ │ ├── bucc │ │ ├── button.sh │ │ ├── cron.sh │ │ ├── duan.sh │ │ ├── network.sh │ │ ├── ping.sh │ │ ├── timing.sh │ │ └── word.sh ├── model │ ├── nettask.lua │ └── trontabs.lua └── view │ ├── other_buttons.htm │ ├── other_dvalues.htm │ └── other_uploads.htm ├── luci-app-nettask_1.5.2-1_all.ipk ├── luci-app-nettask_2.0.0-1_all.ipk └── png ├── Overview.png ├── eeda353f2bd3110abbe23dd362bc839.jpg └── qrcode_1708176698643.jpg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/README.md -------------------------------------------------------------------------------- /luci-app-nettask/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask/Makefile -------------------------------------------------------------------------------- /luci-app-nettask/controller/NetTask.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask/controller/NetTask.lua -------------------------------------------------------------------------------- /luci-app-nettask/etc/config/nettask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask/etc/config/nettask -------------------------------------------------------------------------------- /luci-app-nettask/etc/init.d/nettask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask/etc/init.d/nettask -------------------------------------------------------------------------------- /luci-app-nettask/etc/nettask/bucc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask/etc/nettask/bucc -------------------------------------------------------------------------------- /luci-app-nettask/etc/nettask/button.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | return 0 5 | -------------------------------------------------------------------------------- /luci-app-nettask/etc/nettask/cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask/etc/nettask/cron.sh -------------------------------------------------------------------------------- /luci-app-nettask/etc/nettask/duan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask/etc/nettask/duan.sh -------------------------------------------------------------------------------- /luci-app-nettask/etc/nettask/network.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | return 0 5 | -------------------------------------------------------------------------------- /luci-app-nettask/etc/nettask/ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask/etc/nettask/ping.sh -------------------------------------------------------------------------------- /luci-app-nettask/etc/nettask/timing.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | return 0 5 | -------------------------------------------------------------------------------- /luci-app-nettask/etc/nettask/word.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | return 0 5 | -------------------------------------------------------------------------------- /luci-app-nettask/model/nettask.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask/model/nettask.lua -------------------------------------------------------------------------------- /luci-app-nettask/model/trontabs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask/model/trontabs.lua -------------------------------------------------------------------------------- /luci-app-nettask/view/other_buttons.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask/view/other_buttons.htm -------------------------------------------------------------------------------- /luci-app-nettask/view/other_dvalues.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask/view/other_dvalues.htm -------------------------------------------------------------------------------- /luci-app-nettask/view/other_uploads.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask/view/other_uploads.htm -------------------------------------------------------------------------------- /luci-app-nettask_1.5.2-1_all.ipk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask_1.5.2-1_all.ipk -------------------------------------------------------------------------------- /luci-app-nettask_2.0.0-1_all.ipk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/luci-app-nettask_2.0.0-1_all.ipk -------------------------------------------------------------------------------- /png/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/png/Overview.png -------------------------------------------------------------------------------- /png/eeda353f2bd3110abbe23dd362bc839.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/png/eeda353f2bd3110abbe23dd362bc839.jpg -------------------------------------------------------------------------------- /png/qrcode_1708176698643.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-nettask/HEAD/png/qrcode_1708176698643.jpg --------------------------------------------------------------------------------