├── .gitignore ├── README.md ├── api.py ├── dbsqlite.py ├── index.py ├── play.py ├── static ├── 123.jpg ├── app.js ├── images │ └── ajax-loader.gif ├── jquery.min.js ├── jquery.mobile-1.4.5.min.css ├── jquery.mobile-1.4.5.min.js └── jquery.mobile.theme-1.4.5.min.css └── templates ├── index.html ├── login.html └── shutdown.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/api.py -------------------------------------------------------------------------------- /dbsqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/dbsqlite.py -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/index.py -------------------------------------------------------------------------------- /play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/play.py -------------------------------------------------------------------------------- /static/123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/static/123.jpg -------------------------------------------------------------------------------- /static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/static/app.js -------------------------------------------------------------------------------- /static/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/static/images/ajax-loader.gif -------------------------------------------------------------------------------- /static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/static/jquery.min.js -------------------------------------------------------------------------------- /static/jquery.mobile-1.4.5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/static/jquery.mobile-1.4.5.min.css -------------------------------------------------------------------------------- /static/jquery.mobile-1.4.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/static/jquery.mobile-1.4.5.min.js -------------------------------------------------------------------------------- /static/jquery.mobile.theme-1.4.5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/static/jquery.mobile.theme-1.4.5.min.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/shutdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Louie-v/MyMusicBox/HEAD/templates/shutdown.html --------------------------------------------------------------------------------