├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── cordova-plugins ├── packages ├── platforms ├── release └── versions ├── LICENSE ├── README.md ├── both ├── collections.js └── router.js ├── client ├── components │ ├── contributionchart │ │ ├── chart.html │ │ └── chart.js │ ├── footer │ │ ├── footer.html │ │ ├── footer.js │ │ └── footer.less │ ├── header │ │ ├── addplaylist.html │ │ ├── addplaylist.js │ │ ├── header.html │ │ └── header.js │ ├── searchbar │ │ ├── searchbar.html │ │ └── searchbar.js │ └── suggestions │ │ ├── suggestions.html │ │ └── suggestions.js ├── helpers │ ├── accounts.js │ ├── globalhelpers.html │ ├── globalhelpers.js │ └── iron-router-progress.js ├── stylesheets │ ├── .gitignore │ ├── custom.bootstrap.import.less │ ├── custom.bootstrap.json │ ├── fusic.import.less │ ├── helpers │ │ └── spinning.less │ └── style.less └── views │ ├── friends │ └── friends.html │ ├── home │ ├── home.html │ └── home.js │ ├── layouts │ ├── master.html │ ├── master.js │ └── master.less │ ├── loved │ ├── loved.html │ └── loved.js │ ├── playlists │ ├── playlist.css │ ├── playlist.html │ ├── playlist.js │ ├── playlistOverview.html │ └── playlistOverview.js │ ├── profile │ ├── userProfile.html │ └── userProfile.js │ ├── shared │ ├── loading │ │ ├── loading.html │ │ ├── loading.js │ │ └── loading.less │ └── not_found │ │ ├── not_found.html │ │ ├── not_found.js │ │ └── not_found.less │ └── top │ ├── top.html │ └── top.js ├── public ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── img │ ├── audio_loader.svg │ ├── avatar.jpg │ ├── black-disk-icon.svg │ ├── seaguls.jpg │ └── sheep_cropped.jpg ├── server ├── apis.js ├── lib │ ├── accounts.js │ └── publish.js ├── observe.js ├── permissions.js ├── statsapi.js └── youtube.js └── smart.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/cordova-plugins: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.2.1 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/.meteor/versions -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/README.md -------------------------------------------------------------------------------- /both/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/both/collections.js -------------------------------------------------------------------------------- /both/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/both/router.js -------------------------------------------------------------------------------- /client/components/contributionchart/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/components/contributionchart/chart.html -------------------------------------------------------------------------------- /client/components/contributionchart/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/components/contributionchart/chart.js -------------------------------------------------------------------------------- /client/components/footer/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/components/footer/footer.html -------------------------------------------------------------------------------- /client/components/footer/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/components/footer/footer.js -------------------------------------------------------------------------------- /client/components/footer/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/components/footer/footer.less -------------------------------------------------------------------------------- /client/components/header/addplaylist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/components/header/addplaylist.html -------------------------------------------------------------------------------- /client/components/header/addplaylist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/components/header/addplaylist.js -------------------------------------------------------------------------------- /client/components/header/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/components/header/header.html -------------------------------------------------------------------------------- /client/components/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/components/header/header.js -------------------------------------------------------------------------------- /client/components/searchbar/searchbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/components/searchbar/searchbar.html -------------------------------------------------------------------------------- /client/components/searchbar/searchbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/components/searchbar/searchbar.js -------------------------------------------------------------------------------- /client/components/suggestions/suggestions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/components/suggestions/suggestions.html -------------------------------------------------------------------------------- /client/components/suggestions/suggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/components/suggestions/suggestions.js -------------------------------------------------------------------------------- /client/helpers/accounts.js: -------------------------------------------------------------------------------- 1 | Accounts.ui.config({ 2 | passwordSignupFields: 'USERNAME_AND_EMAIL' 3 | }); -------------------------------------------------------------------------------- /client/helpers/globalhelpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/helpers/globalhelpers.html -------------------------------------------------------------------------------- /client/helpers/globalhelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/helpers/globalhelpers.js -------------------------------------------------------------------------------- /client/helpers/iron-router-progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/helpers/iron-router-progress.js -------------------------------------------------------------------------------- /client/stylesheets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/stylesheets/.gitignore -------------------------------------------------------------------------------- /client/stylesheets/custom.bootstrap.import.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/stylesheets/custom.bootstrap.import.less -------------------------------------------------------------------------------- /client/stylesheets/custom.bootstrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/stylesheets/custom.bootstrap.json -------------------------------------------------------------------------------- /client/stylesheets/fusic.import.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/stylesheets/fusic.import.less -------------------------------------------------------------------------------- /client/stylesheets/helpers/spinning.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/stylesheets/helpers/spinning.less -------------------------------------------------------------------------------- /client/stylesheets/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/stylesheets/style.less -------------------------------------------------------------------------------- /client/views/friends/friends.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/friends/friends.html -------------------------------------------------------------------------------- /client/views/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/home/home.html -------------------------------------------------------------------------------- /client/views/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/home/home.js -------------------------------------------------------------------------------- /client/views/layouts/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/layouts/master.html -------------------------------------------------------------------------------- /client/views/layouts/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/layouts/master.js -------------------------------------------------------------------------------- /client/views/layouts/master.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/layouts/master.less -------------------------------------------------------------------------------- /client/views/loved/loved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/loved/loved.html -------------------------------------------------------------------------------- /client/views/loved/loved.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/loved/loved.js -------------------------------------------------------------------------------- /client/views/playlists/playlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/playlists/playlist.css -------------------------------------------------------------------------------- /client/views/playlists/playlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/playlists/playlist.html -------------------------------------------------------------------------------- /client/views/playlists/playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/playlists/playlist.js -------------------------------------------------------------------------------- /client/views/playlists/playlistOverview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/playlists/playlistOverview.html -------------------------------------------------------------------------------- /client/views/playlists/playlistOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/playlists/playlistOverview.js -------------------------------------------------------------------------------- /client/views/profile/userProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/profile/userProfile.html -------------------------------------------------------------------------------- /client/views/profile/userProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/profile/userProfile.js -------------------------------------------------------------------------------- /client/views/shared/loading/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/shared/loading/loading.html -------------------------------------------------------------------------------- /client/views/shared/loading/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/shared/loading/loading.js -------------------------------------------------------------------------------- /client/views/shared/loading/loading.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/shared/loading/loading.less -------------------------------------------------------------------------------- /client/views/shared/not_found/not_found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/shared/not_found/not_found.html -------------------------------------------------------------------------------- /client/views/shared/not_found/not_found.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/shared/not_found/not_found.js -------------------------------------------------------------------------------- /client/views/shared/not_found/not_found.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/shared/not_found/not_found.less -------------------------------------------------------------------------------- /client/views/top/top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/top/top.html -------------------------------------------------------------------------------- /client/views/top/top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/client/views/top/top.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/img/audio_loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/public/img/audio_loader.svg -------------------------------------------------------------------------------- /public/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/public/img/avatar.jpg -------------------------------------------------------------------------------- /public/img/black-disk-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/public/img/black-disk-icon.svg -------------------------------------------------------------------------------- /public/img/seaguls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/public/img/seaguls.jpg -------------------------------------------------------------------------------- /public/img/sheep_cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/public/img/sheep_cropped.jpg -------------------------------------------------------------------------------- /server/apis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/server/apis.js -------------------------------------------------------------------------------- /server/lib/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/server/lib/accounts.js -------------------------------------------------------------------------------- /server/lib/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/server/lib/publish.js -------------------------------------------------------------------------------- /server/observe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/server/observe.js -------------------------------------------------------------------------------- /server/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/server/permissions.js -------------------------------------------------------------------------------- /server/statsapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/server/statsapi.js -------------------------------------------------------------------------------- /server/youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/server/youtube.js -------------------------------------------------------------------------------- /smart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rayman/fusic-meteor/HEAD/smart.json --------------------------------------------------------------------------------