├── .backup └── .gitkeep ├── .gitignore ├── .mailmap ├── .travis.yml ├── CHANGELOG.md ├── INSTALL.md ├── LICENSE ├── README.md ├── Vagrantfile ├── WIKI ├── App │ ├── Ghost.md │ ├── Typecho.md │ └── WordPress.md ├── FAQ │ ├── Billing.md │ ├── Domain.md │ └── Support.md ├── Linux │ ├── Filesystem.md │ └── SSH.md ├── Nginx │ └── JSON-Configure.md └── Runtime │ └── PHP.md ├── app.coffee ├── bin ├── fix-permissions.coffee ├── migrate.coffee └── reconfigure.coffee ├── core ├── billing.coffee ├── cache.coffee ├── db.coffee ├── i18n.coffee ├── locale │ ├── en.json │ └── zh_CN.json ├── middleware.coffee ├── model │ ├── Account.coffee │ ├── CouponCode.coffee │ ├── Financials.coffee │ ├── Notification.coffee │ ├── SecurityLog.coffee │ └── Ticket.coffee ├── notification.coffee ├── pluggable.coffee ├── router │ ├── account.coffee │ ├── admin.coffee │ ├── billing.coffee │ ├── coupon.coffee │ ├── panel.coffee │ └── ticket.coffee ├── static │ ├── script │ │ ├── account │ │ │ ├── login.coffee │ │ │ ├── preferences.coffee │ │ │ └── register.coffee │ │ ├── admin.coffee │ │ ├── layout.coffee │ │ ├── panel.coffee │ │ └── ticket │ │ │ ├── create.coffee │ │ │ └── view.coffee │ └── style │ │ ├── admin.less │ │ ├── layout.less │ │ ├── panel.less │ │ └── ticket.less ├── template │ ├── ticket_create_email.html │ └── ticket_reply_email.html ├── templates.coffee ├── test │ ├── app.test.coffee │ ├── billing.test.coffee │ ├── cache.test.coffee │ ├── i18n.test.coffee │ ├── middleware.test.coffee │ ├── model │ │ ├── Account.test.coffee │ │ ├── CouponCode.test.coffee │ │ ├── Financials.test.coffee │ │ ├── Notification.test.coffee │ │ ├── SecurityLog.test.coffee │ │ └── Ticket.test.coffee │ ├── pluggable.test.coffee │ ├── router │ │ ├── account.test.coffee │ │ ├── admin.test.coffee │ │ ├── billing.test.coffee │ │ ├── coupon.test.coffee │ │ ├── panel.test.coffee │ │ └── ticket.test.coffee │ └── utils.test.coffee ├── utils.coffee └── view │ ├── account │ ├── login.jade │ ├── preferences.jade │ └── register.jade │ ├── admin.jade │ ├── layout.jade │ ├── panel.jade │ ├── panel │ └── financials.jade │ └── ticket │ ├── create.jade │ ├── list.jade │ └── view.jade ├── migration ├── database │ ├── v0.6.0.coffee │ ├── v0.7.1.coffee │ └── v0.8.0.coffee └── system │ ├── v0.7.1.md │ └── v0.8.0.md ├── package.json ├── plugin ├── bitcoin │ ├── bitcoin.coffee │ ├── index.coffee │ ├── locale │ │ ├── en.json │ │ └── zh_CN.json │ ├── reconfigure.coffee │ └── view │ │ └── payment_method.jade ├── linux │ ├── index.coffee │ ├── linux.coffee │ ├── locale │ │ ├── en.json │ │ └── zh_CN.json │ ├── monitor.coffee │ ├── reconfigure.coffee │ ├── static │ │ └── style │ │ │ ├── monitor.less │ │ │ └── panel.less │ ├── test │ │ └── linux.test.coffee │ └── view │ │ ├── monitor.jade │ │ └── widget.jade ├── rpvhost │ ├── index.coffee │ ├── locale │ │ ├── en.json │ │ └── zh_CN.json │ ├── static │ │ └── style │ │ │ ├── green.less │ │ │ └── index.less │ ├── test │ │ └── rpvhost.test.coffee │ ├── view │ │ ├── index.jade │ │ └── payment_method.jade │ └── wiki │ │ └── Terms.md ├── shadowsocks │ ├── index.coffee │ ├── locale │ │ ├── en.json │ │ └── zh_CN.json │ ├── reconfigure.coffee │ ├── router.coffee │ ├── shadowsocks.coffee │ ├── static │ │ ├── script │ │ │ └── panel.coffee │ │ └── style │ │ │ └── panel.less │ ├── test │ │ └── shadowsocks.test.coffee │ ├── view │ │ ├── admin │ │ │ └── sidebar.jade │ │ └── widget.jade │ └── wiki │ │ └── README.md ├── ssh │ ├── index.coffee │ ├── locale │ │ ├── en.json │ │ └── zh_CN.json │ ├── router.coffee │ ├── ssh.coffee │ ├── static │ │ └── script │ │ │ └── panel.coffee │ └── view │ │ └── widget.jade ├── supervisor │ ├── index.coffee │ ├── locale │ │ ├── en.json │ │ └── zh_CN.json │ ├── reconfigure.coffee │ ├── router.coffee │ ├── static │ │ ├── script │ │ │ └── panel.coffee │ │ └── style │ │ │ └── panel.less │ ├── supervisor.coffee │ ├── template │ │ └── program.conf │ ├── test │ │ └── supervisor.test.coffee │ └── view │ │ └── widget.jade └── wiki │ ├── index.coffee │ ├── locale │ ├── en.json │ └── zh_CN.json │ ├── test │ └── wiki.test.coffee │ ├── view │ ├── index.jade │ └── page.jade │ └── wiki.coffee ├── sample ├── core.config.coffee ├── rpvhost.config.coffee └── shadowsocks.config.coffee └── test ├── env.coffee └── full-test.coffee /.backup/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/.mailmap -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/Vagrantfile -------------------------------------------------------------------------------- /WIKI/App/Ghost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/WIKI/App/Ghost.md -------------------------------------------------------------------------------- /WIKI/App/Typecho.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/WIKI/App/Typecho.md -------------------------------------------------------------------------------- /WIKI/App/WordPress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/WIKI/App/WordPress.md -------------------------------------------------------------------------------- /WIKI/FAQ/Billing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/WIKI/FAQ/Billing.md -------------------------------------------------------------------------------- /WIKI/FAQ/Domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/WIKI/FAQ/Domain.md -------------------------------------------------------------------------------- /WIKI/FAQ/Support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/WIKI/FAQ/Support.md -------------------------------------------------------------------------------- /WIKI/Linux/Filesystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/WIKI/Linux/Filesystem.md -------------------------------------------------------------------------------- /WIKI/Linux/SSH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/WIKI/Linux/SSH.md -------------------------------------------------------------------------------- /WIKI/Nginx/JSON-Configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/WIKI/Nginx/JSON-Configure.md -------------------------------------------------------------------------------- /WIKI/Runtime/PHP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/WIKI/Runtime/PHP.md -------------------------------------------------------------------------------- /app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/app.coffee -------------------------------------------------------------------------------- /bin/fix-permissions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/bin/fix-permissions.coffee -------------------------------------------------------------------------------- /bin/migrate.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/bin/migrate.coffee -------------------------------------------------------------------------------- /bin/reconfigure.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/bin/reconfigure.coffee -------------------------------------------------------------------------------- /core/billing.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/billing.coffee -------------------------------------------------------------------------------- /core/cache.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/cache.coffee -------------------------------------------------------------------------------- /core/db.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/db.coffee -------------------------------------------------------------------------------- /core/i18n.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/i18n.coffee -------------------------------------------------------------------------------- /core/locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/locale/en.json -------------------------------------------------------------------------------- /core/locale/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/locale/zh_CN.json -------------------------------------------------------------------------------- /core/middleware.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/middleware.coffee -------------------------------------------------------------------------------- /core/model/Account.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/model/Account.coffee -------------------------------------------------------------------------------- /core/model/CouponCode.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/model/CouponCode.coffee -------------------------------------------------------------------------------- /core/model/Financials.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/model/Financials.coffee -------------------------------------------------------------------------------- /core/model/Notification.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/model/Notification.coffee -------------------------------------------------------------------------------- /core/model/SecurityLog.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/model/SecurityLog.coffee -------------------------------------------------------------------------------- /core/model/Ticket.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/model/Ticket.coffee -------------------------------------------------------------------------------- /core/notification.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/notification.coffee -------------------------------------------------------------------------------- /core/pluggable.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/pluggable.coffee -------------------------------------------------------------------------------- /core/router/account.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/router/account.coffee -------------------------------------------------------------------------------- /core/router/admin.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/router/admin.coffee -------------------------------------------------------------------------------- /core/router/billing.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/router/billing.coffee -------------------------------------------------------------------------------- /core/router/coupon.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/router/coupon.coffee -------------------------------------------------------------------------------- /core/router/panel.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/router/panel.coffee -------------------------------------------------------------------------------- /core/router/ticket.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/router/ticket.coffee -------------------------------------------------------------------------------- /core/static/script/account/login.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/static/script/account/login.coffee -------------------------------------------------------------------------------- /core/static/script/account/preferences.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/static/script/account/preferences.coffee -------------------------------------------------------------------------------- /core/static/script/account/register.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/static/script/account/register.coffee -------------------------------------------------------------------------------- /core/static/script/admin.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/static/script/admin.coffee -------------------------------------------------------------------------------- /core/static/script/layout.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/static/script/layout.coffee -------------------------------------------------------------------------------- /core/static/script/panel.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/static/script/panel.coffee -------------------------------------------------------------------------------- /core/static/script/ticket/create.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/static/script/ticket/create.coffee -------------------------------------------------------------------------------- /core/static/script/ticket/view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/static/script/ticket/view.coffee -------------------------------------------------------------------------------- /core/static/style/admin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/static/style/admin.less -------------------------------------------------------------------------------- /core/static/style/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/static/style/layout.less -------------------------------------------------------------------------------- /core/static/style/panel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/static/style/panel.less -------------------------------------------------------------------------------- /core/static/style/ticket.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/static/style/ticket.less -------------------------------------------------------------------------------- /core/template/ticket_create_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/template/ticket_create_email.html -------------------------------------------------------------------------------- /core/template/ticket_reply_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/template/ticket_reply_email.html -------------------------------------------------------------------------------- /core/templates.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/templates.coffee -------------------------------------------------------------------------------- /core/test/app.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/app.test.coffee -------------------------------------------------------------------------------- /core/test/billing.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/billing.test.coffee -------------------------------------------------------------------------------- /core/test/cache.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/cache.test.coffee -------------------------------------------------------------------------------- /core/test/i18n.test.coffee: -------------------------------------------------------------------------------- 1 | describe 'i18n', -> 2 | it 'pending' 3 | -------------------------------------------------------------------------------- /core/test/middleware.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/middleware.test.coffee -------------------------------------------------------------------------------- /core/test/model/Account.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/model/Account.test.coffee -------------------------------------------------------------------------------- /core/test/model/CouponCode.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/model/CouponCode.test.coffee -------------------------------------------------------------------------------- /core/test/model/Financials.test.coffee: -------------------------------------------------------------------------------- 1 | describe 'model/Financials', -> 2 | it 'pending' 3 | -------------------------------------------------------------------------------- /core/test/model/Notification.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/model/Notification.test.coffee -------------------------------------------------------------------------------- /core/test/model/SecurityLog.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/model/SecurityLog.test.coffee -------------------------------------------------------------------------------- /core/test/model/Ticket.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/model/Ticket.test.coffee -------------------------------------------------------------------------------- /core/test/pluggable.test.coffee: -------------------------------------------------------------------------------- 1 | describe 'pluggable', -> 2 | it 'pending' 3 | -------------------------------------------------------------------------------- /core/test/router/account.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/router/account.test.coffee -------------------------------------------------------------------------------- /core/test/router/admin.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/router/admin.test.coffee -------------------------------------------------------------------------------- /core/test/router/billing.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/router/billing.test.coffee -------------------------------------------------------------------------------- /core/test/router/coupon.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/router/coupon.test.coffee -------------------------------------------------------------------------------- /core/test/router/panel.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/router/panel.test.coffee -------------------------------------------------------------------------------- /core/test/router/ticket.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/router/ticket.test.coffee -------------------------------------------------------------------------------- /core/test/utils.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/test/utils.test.coffee -------------------------------------------------------------------------------- /core/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/utils.coffee -------------------------------------------------------------------------------- /core/view/account/login.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/view/account/login.jade -------------------------------------------------------------------------------- /core/view/account/preferences.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/view/account/preferences.jade -------------------------------------------------------------------------------- /core/view/account/register.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/view/account/register.jade -------------------------------------------------------------------------------- /core/view/admin.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/view/admin.jade -------------------------------------------------------------------------------- /core/view/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/view/layout.jade -------------------------------------------------------------------------------- /core/view/panel.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/view/panel.jade -------------------------------------------------------------------------------- /core/view/panel/financials.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/view/panel/financials.jade -------------------------------------------------------------------------------- /core/view/ticket/create.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/view/ticket/create.jade -------------------------------------------------------------------------------- /core/view/ticket/list.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/view/ticket/list.jade -------------------------------------------------------------------------------- /core/view/ticket/view.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/core/view/ticket/view.jade -------------------------------------------------------------------------------- /migration/database/v0.6.0.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/migration/database/v0.6.0.coffee -------------------------------------------------------------------------------- /migration/database/v0.7.1.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/migration/database/v0.7.1.coffee -------------------------------------------------------------------------------- /migration/database/v0.8.0.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/migration/database/v0.8.0.coffee -------------------------------------------------------------------------------- /migration/system/v0.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/migration/system/v0.7.1.md -------------------------------------------------------------------------------- /migration/system/v0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/migration/system/v0.8.0.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/package.json -------------------------------------------------------------------------------- /plugin/bitcoin/bitcoin.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/bitcoin/bitcoin.coffee -------------------------------------------------------------------------------- /plugin/bitcoin/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/bitcoin/index.coffee -------------------------------------------------------------------------------- /plugin/bitcoin/locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/bitcoin/locale/en.json -------------------------------------------------------------------------------- /plugin/bitcoin/locale/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/bitcoin/locale/zh_CN.json -------------------------------------------------------------------------------- /plugin/bitcoin/reconfigure.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/bitcoin/reconfigure.coffee -------------------------------------------------------------------------------- /plugin/bitcoin/view/payment_method.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/bitcoin/view/payment_method.jade -------------------------------------------------------------------------------- /plugin/linux/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/linux/index.coffee -------------------------------------------------------------------------------- /plugin/linux/linux.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/linux/linux.coffee -------------------------------------------------------------------------------- /plugin/linux/locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/linux/locale/en.json -------------------------------------------------------------------------------- /plugin/linux/locale/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/linux/locale/zh_CN.json -------------------------------------------------------------------------------- /plugin/linux/monitor.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/linux/monitor.coffee -------------------------------------------------------------------------------- /plugin/linux/reconfigure.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/linux/reconfigure.coffee -------------------------------------------------------------------------------- /plugin/linux/static/style/monitor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/linux/static/style/monitor.less -------------------------------------------------------------------------------- /plugin/linux/static/style/panel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/linux/static/style/panel.less -------------------------------------------------------------------------------- /plugin/linux/test/linux.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/linux/test/linux.test.coffee -------------------------------------------------------------------------------- /plugin/linux/view/monitor.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/linux/view/monitor.jade -------------------------------------------------------------------------------- /plugin/linux/view/widget.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/linux/view/widget.jade -------------------------------------------------------------------------------- /plugin/rpvhost/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/rpvhost/index.coffee -------------------------------------------------------------------------------- /plugin/rpvhost/locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/rpvhost/locale/en.json -------------------------------------------------------------------------------- /plugin/rpvhost/locale/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/rpvhost/locale/zh_CN.json -------------------------------------------------------------------------------- /plugin/rpvhost/static/style/green.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/rpvhost/static/style/green.less -------------------------------------------------------------------------------- /plugin/rpvhost/static/style/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/rpvhost/static/style/index.less -------------------------------------------------------------------------------- /plugin/rpvhost/test/rpvhost.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/rpvhost/test/rpvhost.test.coffee -------------------------------------------------------------------------------- /plugin/rpvhost/view/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/rpvhost/view/index.jade -------------------------------------------------------------------------------- /plugin/rpvhost/view/payment_method.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/rpvhost/view/payment_method.jade -------------------------------------------------------------------------------- /plugin/rpvhost/wiki/Terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/rpvhost/wiki/Terms.md -------------------------------------------------------------------------------- /plugin/shadowsocks/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/shadowsocks/index.coffee -------------------------------------------------------------------------------- /plugin/shadowsocks/locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/shadowsocks/locale/en.json -------------------------------------------------------------------------------- /plugin/shadowsocks/locale/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/shadowsocks/locale/zh_CN.json -------------------------------------------------------------------------------- /plugin/shadowsocks/reconfigure.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/shadowsocks/reconfigure.coffee -------------------------------------------------------------------------------- /plugin/shadowsocks/router.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/shadowsocks/router.coffee -------------------------------------------------------------------------------- /plugin/shadowsocks/shadowsocks.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/shadowsocks/shadowsocks.coffee -------------------------------------------------------------------------------- /plugin/shadowsocks/static/script/panel.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/shadowsocks/static/script/panel.coffee -------------------------------------------------------------------------------- /plugin/shadowsocks/static/style/panel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/shadowsocks/static/style/panel.less -------------------------------------------------------------------------------- /plugin/shadowsocks/test/shadowsocks.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/shadowsocks/test/shadowsocks.test.coffee -------------------------------------------------------------------------------- /plugin/shadowsocks/view/admin/sidebar.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/shadowsocks/view/admin/sidebar.jade -------------------------------------------------------------------------------- /plugin/shadowsocks/view/widget.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/shadowsocks/view/widget.jade -------------------------------------------------------------------------------- /plugin/shadowsocks/wiki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/shadowsocks/wiki/README.md -------------------------------------------------------------------------------- /plugin/ssh/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/ssh/index.coffee -------------------------------------------------------------------------------- /plugin/ssh/locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/ssh/locale/en.json -------------------------------------------------------------------------------- /plugin/ssh/locale/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/ssh/locale/zh_CN.json -------------------------------------------------------------------------------- /plugin/ssh/router.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/ssh/router.coffee -------------------------------------------------------------------------------- /plugin/ssh/ssh.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/ssh/ssh.coffee -------------------------------------------------------------------------------- /plugin/ssh/static/script/panel.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/ssh/static/script/panel.coffee -------------------------------------------------------------------------------- /plugin/ssh/view/widget.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/ssh/view/widget.jade -------------------------------------------------------------------------------- /plugin/supervisor/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/supervisor/index.coffee -------------------------------------------------------------------------------- /plugin/supervisor/locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/supervisor/locale/en.json -------------------------------------------------------------------------------- /plugin/supervisor/locale/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/supervisor/locale/zh_CN.json -------------------------------------------------------------------------------- /plugin/supervisor/reconfigure.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/supervisor/reconfigure.coffee -------------------------------------------------------------------------------- /plugin/supervisor/router.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/supervisor/router.coffee -------------------------------------------------------------------------------- /plugin/supervisor/static/script/panel.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/supervisor/static/script/panel.coffee -------------------------------------------------------------------------------- /plugin/supervisor/static/style/panel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/supervisor/static/style/panel.less -------------------------------------------------------------------------------- /plugin/supervisor/supervisor.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/supervisor/supervisor.coffee -------------------------------------------------------------------------------- /plugin/supervisor/template/program.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/supervisor/template/program.conf -------------------------------------------------------------------------------- /plugin/supervisor/test/supervisor.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/supervisor/test/supervisor.test.coffee -------------------------------------------------------------------------------- /plugin/supervisor/view/widget.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/supervisor/view/widget.jade -------------------------------------------------------------------------------- /plugin/wiki/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/wiki/index.coffee -------------------------------------------------------------------------------- /plugin/wiki/locale/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "": "User Manual" 3 | } 4 | -------------------------------------------------------------------------------- /plugin/wiki/locale/zh_CN.json: -------------------------------------------------------------------------------- 1 | { 2 | "": "用户手册" 3 | } 4 | -------------------------------------------------------------------------------- /plugin/wiki/test/wiki.test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/wiki/test/wiki.test.coffee -------------------------------------------------------------------------------- /plugin/wiki/view/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/wiki/view/index.jade -------------------------------------------------------------------------------- /plugin/wiki/view/page.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/wiki/view/page.jade -------------------------------------------------------------------------------- /plugin/wiki/wiki.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/plugin/wiki/wiki.coffee -------------------------------------------------------------------------------- /sample/core.config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/sample/core.config.coffee -------------------------------------------------------------------------------- /sample/rpvhost.config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/sample/rpvhost.config.coffee -------------------------------------------------------------------------------- /sample/shadowsocks.config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/sample/shadowsocks.config.coffee -------------------------------------------------------------------------------- /test/env.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/test/env.coffee -------------------------------------------------------------------------------- /test/full-test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jysperm/RootPanel/HEAD/test/full-test.coffee --------------------------------------------------------------------------------