├── .gitignore ├── AUTHORS.md ├── COPYING ├── Makefile ├── README.md ├── TODO.md ├── __init__.py ├── api ├── README.md ├── __init__.py ├── handlers.py └── urls.py ├── app ├── __init__.py ├── backends.py ├── cover.py ├── forms.py ├── lastfm.py ├── models.py ├── musicbrainz.py ├── tools.py └── views.py ├── daemon ├── __init__.py ├── daemon ├── jobs.py ├── notifications.py ├── releases.py └── tools.py ├── db ├── 20111025.sql ├── 20111121.sql └── muspy.sql ├── manage.py ├── nginx-dev.conf ├── nginx.conf ├── requirements.txt ├── run-daemon ├── run-uwsgi ├── settings.py ├── static ├── add.gif ├── apple-touch-icon.png ├── cover.jpg ├── favicon.ico ├── feed.png ├── ical.gif ├── jquery-1.6.4.min.js ├── logo-bg.gif ├── logo.gif ├── remove.gif ├── robots.txt ├── starred0.gif ├── starred1.gif └── style.css ├── templates ├── 404.html ├── 500.html ├── _release.html ├── about.html ├── activate.html ├── artist.html ├── artists.html ├── base.html ├── base_releases.html ├── contact.html ├── delete.html ├── email │ ├── activate.txt │ ├── release.html │ ├── release.txt │ └── reset.txt ├── faq.html ├── feed.xml ├── ical.ical ├── import.html ├── index.html ├── releases.html ├── reset.html ├── settings.html ├── signin.html ├── signup.html └── sitemap.xml └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/TODO.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/api/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/api/handlers.py -------------------------------------------------------------------------------- /api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/api/urls.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/app/backends.py -------------------------------------------------------------------------------- /app/cover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/app/cover.py -------------------------------------------------------------------------------- /app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/app/forms.py -------------------------------------------------------------------------------- /app/lastfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/app/lastfm.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/app/models.py -------------------------------------------------------------------------------- /app/musicbrainz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/app/musicbrainz.py -------------------------------------------------------------------------------- /app/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/app/tools.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/app/views.py -------------------------------------------------------------------------------- /daemon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daemon/daemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/daemon/daemon -------------------------------------------------------------------------------- /daemon/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/daemon/jobs.py -------------------------------------------------------------------------------- /daemon/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/daemon/notifications.py -------------------------------------------------------------------------------- /daemon/releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/daemon/releases.py -------------------------------------------------------------------------------- /daemon/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/daemon/tools.py -------------------------------------------------------------------------------- /db/20111025.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/db/20111025.sql -------------------------------------------------------------------------------- /db/20111121.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/db/20111121.sql -------------------------------------------------------------------------------- /db/muspy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/db/muspy.sql -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/manage.py -------------------------------------------------------------------------------- /nginx-dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/nginx-dev.conf -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/nginx.conf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/requirements.txt -------------------------------------------------------------------------------- /run-daemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/run-daemon -------------------------------------------------------------------------------- /run-uwsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/run-uwsgi -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/settings.py -------------------------------------------------------------------------------- /static/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/add.gif -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/cover.jpg -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/feed.png -------------------------------------------------------------------------------- /static/ical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/ical.gif -------------------------------------------------------------------------------- /static/jquery-1.6.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/jquery-1.6.4.min.js -------------------------------------------------------------------------------- /static/logo-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/logo-bg.gif -------------------------------------------------------------------------------- /static/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/logo.gif -------------------------------------------------------------------------------- /static/remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/remove.gif -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/robots.txt -------------------------------------------------------------------------------- /static/starred0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/starred0.gif -------------------------------------------------------------------------------- /static/starred1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/starred1.gif -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/500.html -------------------------------------------------------------------------------- /templates/_release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/_release.html -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/activate.html -------------------------------------------------------------------------------- /templates/artist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/artist.html -------------------------------------------------------------------------------- /templates/artists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/artists.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/base_releases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/base_releases.html -------------------------------------------------------------------------------- /templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/contact.html -------------------------------------------------------------------------------- /templates/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/delete.html -------------------------------------------------------------------------------- /templates/email/activate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/email/activate.txt -------------------------------------------------------------------------------- /templates/email/release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/email/release.html -------------------------------------------------------------------------------- /templates/email/release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/email/release.txt -------------------------------------------------------------------------------- /templates/email/reset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/email/reset.txt -------------------------------------------------------------------------------- /templates/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/faq.html -------------------------------------------------------------------------------- /templates/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/feed.xml -------------------------------------------------------------------------------- /templates/ical.ical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/ical.ical -------------------------------------------------------------------------------- /templates/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/import.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/releases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/releases.html -------------------------------------------------------------------------------- /templates/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/reset.html -------------------------------------------------------------------------------- /templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/settings.html -------------------------------------------------------------------------------- /templates/signin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/signin.html -------------------------------------------------------------------------------- /templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/signup.html -------------------------------------------------------------------------------- /templates/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/templates/sitemap.xml -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexkay/muspy/HEAD/urls.py --------------------------------------------------------------------------------